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

Reply To: Dropdown settings styles not working

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Dropdown settings styles not working Reply To: Dropdown settings styles not working

#11016
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

In case you have the options drop down in “block” display mode, then some of the styles (like background, font color etc..) will not apply, as it’s better inherited from the theme – and users usually prefer changing that via custom CSS with the theme styles.

You can try the following CSS if you want to add border to the whole area:

[html].searchsettings {
border: 1px solid #e6e6e6 !important;
}[/html]

or for individual fieldsets:

[html].searchsettings fieldset {
border: 1px solid #e6e6e6 !important;
}[/html]