Customized checkbox issue

Hi,

I’m trying to add custom checkboxes to Slide 3 of a form where users can select multiple options. The issue I’m facing is that I can’t remove the small “checked” circle and make the entire ‘checkbox field’ container function as a checkbox. Do you have any suggestions on how to fix this?

Example: https://multistep-component-01.webflow.io/


Here is my site Read-Only: Webflow - Vincent's Fresh Site

hi @Vincent_E1 you can hide checkbox with this simple “one-liner”. is is basic CSS very well described online.

 input[type=checkbox] {
    visibility: hidden;
}

or use appearance: none;

than do what ever you need