• Resolved agrmorogiannis

    (@agrmorogiannis)


    Hello all,

    I am trying to change the color and the background-color of the “Check” and “Checkbox” respectively, of an acceptance input of a CF7 form which I have included both in a Pop-Up (using Pop-up Maker) and in the page itself.

    I tried to find the source location of the files, using DevTools however I only found that the code for the color and background-color, is in the following file:
    (index):138 and (index):1068,

    which I cannot figure out what/where that is since it doesn’t give me a proper path like it does for the source file of other elements (for example style.css.2056).

    Does anyone know where could I possibly find that information in my site’s files?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • because it’s generated in php from your theme.

    essentially you can only override this:

    .wpcf7 input[type=checkbox]:checked {
        color: #00ffff;
        border: 1px solid #ff0000;
        background: #ff0000;
    }
    Thread Starter agrmorogiannis

    (@agrmorogiannis)

    Hello Erik,

    Thanks for your answer. I added it in my theme’s custom css and it overrode the previous settings.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Trying to change checkboxe’s color and background-color’ is closed to new replies.