Last active
March 2, 2024 17:53
-
-
Save djrmom/43b88feca4698f0550529dc1b45847a9 to your computer and use it in GitHub Desktop.
facetwp radio button style as rectangular color button
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Radio button facets are actual divs rather than radio input type html. | |
Radio facet as rectangular buttons - https://d.pr/i/cnyjEg | |
Facet settings for demo - https://d.pr/i/C5lAsc | |
If you want to add an "All" button - https://gist.github.com/djrmom/5870f7baf38fd5df40ee861bb95a01d5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.facetwp-radio { | |
background-image: none; | |
background-color: gray; | |
padding: 5px; | |
display: inline-block; | |
margin: 5px; | |
} | |
.facetwp-radio.checked { | |
background-image: none; | |
background-color: lightgray; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment