Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Font styles not rendering correctly with multiple search boxes › Reply To: Font styles not rendering correctly with multiple search boxes
Hi!
Thank you very much for your kind words!
From what I can see it seems that this might be a yet unknown bug, perhaps related to importing the options, I’m not sure yet.
As a quick fix, I suggest using this custom CSS code:
[html].ajaxsearchpro, .ajaxsearchpro * {
font-family: "Open Sans" !important;
}
input.orig::-webkit-input-placeholder {
font-family: "Open Sans" !important;
}
input.orig:-moz-placeholder { /* Firefox 18- */
font-family: "Open Sans" !important;
}
input.orig::-moz-placeholder { /* Firefox 19+ */
font-family: "Open Sans" !important;
}
input.orig:-ms-input-placeholder {
font-family: "Open Sans" !important;
}[/html]
I will look more into this on my local environment, until then, this should hopefully do the trick for you.