- This topic has 3 replies, 2 voices, and was last updated 5 years, 10 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › Search dropdown disabled
I can see the issue. Your theme is applying some form of JavaScript-based customization to all select dropdown boxes on the site. It would be better to find a way to disable that, however, this custom CSS will fix it (you can place this in the Appearance -> Customize section):
.searchandfilter .sod_select .sod_list_wrapper,
.searchandfilter .sod_select .sod_label,
.searchandfilter .sod_select:before,
.searchandfilter .sod_select:after {
display: none;
}
.searchandfilter .sod_select select {
display: block !important;
}
.searchandfilter .sod_select {
line-height: inherit;
width: auto;
padding: 0;
border: 0;
background: none;
color: inherit;
font-size: inherit;
outline-offset: inherit;
margin-bottom: 0;
border-radius: 0;
height: auto;
}