- This topic has 5 replies, 2 voices, and was last updated 5 years, 8 months ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 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 box width
Tagged: css styling, search box
Let me know if you have issues accessing it. The page content is normally hidden with a content restrict that I temporarily moved. https://theplatopack.com/search/
Thanks!
This custom CSS should do it:
.searchandfilter[data-sf-form-id="8213"] .sf-field-search label {
width: 100%;
padding-right: 5px;
}
I had to add 5px right padding because you had added this CSS already:
.searchandfilter ul li {
background-color: #efefef;
padding: 20px 15px 20px 20px;
}
Where the right padding was only 15px, whereas the left padding is 20px, so it looked odd otherwise.