Forums › Forums › Search & Filter Pro › CSS filters
- This topic has 6 replies, 2 voices, and was last updated 4 years, 2 months ago by Trevor.
Viewing 7 posts - 1 through 7 (of 7 total)
-
Trevor(Private) August 24, 2020 at 5:19 pm #257159
In the mobile version, the filters will need to be vertically arranged, not horizontal.
I can see that your theme has a CSS rule that uses flexbox to make them horizontal. At some point you need to set the content into a column. Use this custom CSS maybe:
.fusion-content-widget-area .widget .searchandfilter select.sf-input-select, .fusion-content-widget-area .widget .searchandfilter label { width: inherit; } .fusion-content-widget-area .widget .searchandfilter > ul > li { min-width: 200px; margin-right: 20px; } @media only screen and (max-width: 991px) { .fusion-content-widget-area .widget .searchandfilter > ul { flex-direction: column; } .fusion-content-widget-area .widget .searchandfilter > ul > li { margin-right: 0; margin-bottom: 20px; } .fusion-content-widget-area .widget .searchandfilter .search-filter-reset { margin: 0; } }
-
AuthorPosts
Viewing 7 posts - 1 through 7 (of 7 total)