- This topic has 1 reply, 2 voices, and was last updated 5 years, 1 month ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 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 › How to Format Size of Drop Down Menu Filters
You would need custom CSS, like this:
.searchandfilter[data-sf-form-id="218"] .sf-field-search input, .sf-field-search label {
display: block;
width: 100%;
}
.searchandfilter[data-sf-form-id="218"] > ul {
margin: 0 7px 0 10px;
}
.searchandfilter[data-sf-form-id="218"] li[data-sf-field-input-type="select"] select,
.searchandfilter[data-sf-form-id="218"] li[data-sf-field-input-type="select"] label {
width: 100%;
}