HI,
I tried to use this CSS for changing color of the checkbox - It's blue right now & I need to be white.
.mktoForm input[type=checkbox] + label:before {
color: #FFFFFF !important;
}
But with this, it doesn't the color. Instead, it bring up this "1" in the checkbox. And if I remove the CSS to change the color, the checkboxes stay the default blue!!!
Any inputs will be appreciated!! Thank you!
Solved! Go to Solution.
Actually changed the CSS to -
.mktoForm .mktoCheckboxList .mktoField:checked+label:before {
background-color: transparent;
}
.mktoForm .mktoCheckboxList .mktoField+label:before {
border-color: #fff;
}
And it worked!
Thank you Grace Brebner & Sanford Whiteman for checking in anyway!
Best,
Sonali
Hey Sonali,
Community will be better able to help you with this if you can provide a live URL of the issue in action so we can inspect all of the CSS.
Can you also be clearer in the behaviour you want the page to display here - i.e....
And pls highlight all code using the Advanced Editor's syntax highlighter so it's readable.
Actually changed the CSS to -
.mktoForm .mktoCheckboxList .mktoField:checked+label:before {
background-color: transparent;
}
.mktoForm .mktoCheckboxList .mktoField+label:before {
border-color: #fff;
}
And it worked!
Thank you Grace Brebner & Sanford Whiteman for checking in anyway!
Best,
Sonali
Could you still highlight it though? So future people can read it more easily.
Done!