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

Reply To: How to change font size and font family in suggested search keyword field

#8815
Ernest MarcinkoErnest Marcinko
Keymaster

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.