Forums › Forums › Search & Filter Pro › Customize Search Layout
- This topic has 6 replies, 2 voices, and was last updated 5 years, 2 months ago by Trevor.
Viewing 7 posts - 1 through 7 (of 7 total)
-
Anonymous(Private) September 16, 2019 at 6:38 pm #221130
How can I best customize the search layout to be horizontal like whats on this page? http://scottent.com/projects
I need it to look exactly like that
Trevor(Private) September 18, 2019 at 4:22 pm #221256I believe that you added some custom css already, so remove this:
.searchandfilter > ul > li { display: inline-block !important; vertical-align: top !important; padding: 0 20px; }
and add this, I think:
.searchandfilter > ul { padding-left: 0; } @media only screen and (min-width: 801px) { li.sf-field-taxonomy-industry { float: left; margin-right: 20px; } li.sf-field-taxonomy-budget { float: left; margin-right: 20px; clear: left; } } @media only screen and (max-width: 800px) { li.sf-field-taxonomy-industry { display: inline-block !important; vertical-align: top !important; margin-right: 20px !important; } li.sf-field-taxonomy-budget { display: inline-block !important; vertical-align: top !important; } } li.sf-field-taxonomy-project_type > ul { padding-left: 0; columns: 3; } @media only screen and (max-width: 600px) { li.sf-field-taxonomy-project_type > ul { columns: 2; } } @media only screen and (max-width: 410px) { li.sf-field-taxonomy-project_type > ul { columns: 1; } }
See how that works for you?
Anonymous(Private) September 18, 2019 at 4:40 pm #221262Lastly, what if we wanted the results to display to columns, side by side, instead of 1 just like this http://scottent.com/projects
Trevor(Private) September 18, 2019 at 4:43 pm #221264Do you have any page builder plugins already installed? If not, follow these instructions:
https://searchandfilter.com/documentation/3rd-party/post-grid/
-
AuthorPosts
Viewing 7 posts - 1 through 7 (of 7 total)