1

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.

1 Answers1

1

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.

joe
  • 53
  • 6