- This topic has 1 reply, 2 voices, and was last updated 8 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 › Target ID number with CSS
Every form (the data entry part), will be a HTML form element, with an ID like:
search-filter-form-2726
Where the number at the end is the ID number of the form and shortcode.
so, you MIGHT do CSS like this:
#search-filter-form-2726 select {
min-width: 300px;
}
to set all the HTML select elements to at least 300px wide.