Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › How to change font size and font family in suggested search keyword field › Reply To: How to change font size and font family in suggested search keyword field
Hi!
Sorry for the late response.
To apply that font all over the search plugin, you can use this custom CSS:
[html].asp_main_container,
.asp-try,
.wpdreams_asp_sc,
.asp_main_container *,
.asp-try *,
.wpdreams_asp_sc * {
font-family: ‘Abel’, sans-serif !important;
}[/html]
This will basically force the Abel font on all the elements of the plugin.
For font sizes, there are options on the
– Theme Options -> Input field panel: http://i.imgur.com/orhQ04I.png
– For result sizes: Theme Options -> Typography: http://i.imgur.com/kojiSBb.png
– “Try this” text font with custom CSS:
[html].asp-try,
.asp-try * {
font-size: 12px !important;
}[/html]
I hope this helps! Let me know if you can’t find something.