Forums › Forums › Search & Filter Pro › Search & Filter background container
Tagged: form background
- This topic has 16 replies, 2 voices, and was last updated 7 years, 9 months ago by Anonymous.
-
Trevor(Private) February 3, 2017 at 4:29 pm #87933
You need to add some custom css to your theme. To fix that Crew being in the wrong place, this:
.searchandfilter > ul > li {float: left;} .searchandfilter > ul > li.sf-field-taxonomy-yacht-feature {margin-top: 35px;} .searchandfilter > ul > li.sf-field-sort_order {margin-top: 33px;}
To add a border around plus background for the form, this is a bit more difficult. So, I think that, in your page in WordPress, it looks like this:
<div class="search-filter-form-container">[form shortcode]</div>
But it needs to look like this:
<div class="search-filter-form-container">[form shortcode]<div class="clearfix"></div></div>
Then, I can see in the custom css you already have this:
#top form { margin-bottom: 20px; }
But this needs to be:
.search-filter-form-container { margin-bottom: 20px; /* add your css for the border, drop shadow, background color here */ }
Anonymous(Private) February 8, 2017 at 10:54 am #88768Thank you very much. But,css snippet
.searchandfilter > ul > li {float: left;} .searchandfilter > ul > li.sf-field-taxonomy-yacht-feature {margin-top: 35px;} .searchandfilter > ul > li.sf-field-sort_order {margin-top: 33px;}
not working. Form looks good but doesnt work
-
AuthorPosts