This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Center magnifier icon with pre-set text

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Center magnifier icon with pre-set text Reply To: Center magnifier icon with pre-set text

#27415
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

The container alignment is inherent, so this might require some custom CSS to resolve, but that depends on the exact implementation. The plugin follows the aligment as defined by the theme stylesheets.

If there is no URL I can check this, then I would suggest experimenting with the following custom CSS:

.asp_m {
    display: inline-block !important;
    vertical-align: middle;
}

..also, adjusting top margins is a nice trick to get it right:

.asp_m {
     margin-top: 12px !important;
}

You can also use negative values (ex. -10px) here, if you want to push it up.