- This topic has 2 replies, 2 voices, and was last updated 5 years, 7 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 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 › Horizontal Layout of Radio buttons
Hello!
I’m using the radio buttons to filter post categories. You can see the live page here: https://forpurpose.com/purpose-in-action/
I’m using custom CSS to make the radio buttons look like buttons. I’m having a hard time making them have a horizontal layout. I’ve tried using FLEX on the .searchandfilter > ul but it doesn’t seem to help. Any help would be appreciated! Thanks!
Nevermind. I found what I needed at https://support.searchandfilter.com/forums/topic/how-to-make-checkbox-arranged-horizontally/
.searchandfilter ul {
padding-left: 0;
}
.searchandfilter > ul > li[data-sf-field-input-type="radio"] > ul > li {
display: inline-block;
margin-right: 20px;
}