Can you style checkbox sets? Please Help!!
-
I have been spinning my wheels trying to get the checkbox sets in Contact Form 7 to accept a CSS class on my site. (https://www.royalpoolsandspas.com)
I have tried multiple different methods with no success.The CSS style I’ve made is:
input[type=checkbox].check { display: block; opacity: 0; } input[type=checkbox].check+label { width: 30px; height: 15px; cursor: pointer; display: inline-block; position: relative; background: rgb(189, 189, 189); border-radius: 30px; transition: background-color 0.4s; -moz-transition: background-color 0.4s; -webkit-transition: background-color 0.4s; } input[type=checkbox].check+label:after { left: 0; width: 11px; height: 11px; margin: 2px; content: ''; position: absolute; background: #FFF; border-radius: 10px; } input[type=checkbox].check:checked + label { background: rgb(39, 173, 189); } input[type=checkbox].check:checked + label:after { left: auto; right: 0; }
The form shortcode I’m using is:
[checkbox* your-recipient class:check label_first "Pools|xxx@***.com" "Saunas|xxx@***.com" "Spas|xxx@***.com" "Retail/Parts|[email protected]" "Water Lab|xxx@***.com" "Service|xxx@***.com"]
I have tried wrapping the shortcode in a label tag as well to no avail. Please Help!!! Is this possible at all?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Can you style checkbox sets? Please Help!!’ is closed to new replies.