I want to add images instead of checkbox but the functionality would be the same as the checkbox.
I have tried many options but not found any of the solutions.
I want to add images instead of checkbox but the functionality would be the same as the checkbox.
I have tried many options but not found any of the solutions.
You'll need to hide your input
checkbox element and style custom pseudo-elements.
This is probably the best StackOverflow answer: How to style a checkbox using CSS?
It all starts with:
input[type=checkbox] { appearance: none; }
And you can style from there. Another StackOverflow answer: Pure CSS Checkbox Image replacement
Make sure you use the CF7 classes.