Last active
May 18, 2019 09:21
-
-
Save wpmonks/1a7e65104d617a850b5bfbbce1520b3e to your computer and use it in GitHub Desktop.
WPForms Radio Inputs with CSS
This file contains 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
/* For labels */ | |
#wpforms-formID .wpforms-form .wpforms-field.wpforms-field-radio ul li label{ | |
font-size: 18px; | |
font-weight: 700; | |
line-height: 1.5; | |
} | |
/* For container */ | |
#wpforms-formID .wpforms-form .wpforms-field.wpforms-field-radio ul{ | |
background: #00ff00 !important; | |
border: 1px solid #bbefbb !important; | |
width: 80%; | |
} | |
/* replace "formID" at 2,8 line with your form's Id */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment