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
May 18, 2020 at 12:28 pm
#27415
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.