Hello!
For a form, I would like to change the hover and background color used on checkboxes. Where does one click in the Designer to do this? What’s the sequence of steps?
I do know how to do a custom checkbox. But I don’t want to have to set every checkbox to custom. (And it breaks my existing javascript by creating new class names).
I have tried adding custom code to project settings. While I can successfully add a border on checked, I haven’t figured out how to change the background color, even when adding !important.
input[type=“checkbox”]:checked {
box-shadow: 0 0 0 3px #e05f37;
}
Have tried
background-color: #ff0000 !important;
color: #ff0000 !important;
but neither seem to do anything.
Any suggestions on how to change the default color for checkboxes?
Thank you!
CB