• Resolved creminski

    (@creminski)


    Hi, I need to change the background color of the Event Date and Time checkboxes.
    I tried to change the css:
    #mec_bfixed_form_fields input [type = “checkbox”], #mec_reg_form_fields input [type = “checkbox”], .mec-form-row input [type = “checkbox”]
    but it does not work.
    Can you help me? Thank you

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

Viewing 1 replies (of 1 total)
  • Plugin Contributor webnus

    (@webnus)

    Hello @creminski,

    You can use something like this:

    #mec_bfixed_form_fields input[type=checkbox]:checked, #mec_bfixed_form_fields input[type=radio]:checked, #mec_reg_form_fields input[type=checkbox]:checked, #mec_reg_form_fields input[type=radio]:checked, .mec-fes-form .mec-form-row input[type=checkbox]:checked, .mec-fes-form .mec-form-row input[type=radio]:checked {
        box-shadow: 0 1px 6px -2px #000;
        border-color: #000;
        background: #000 !important;
        border-radius: 2px;
        position: relative;
    }
    
    #mec_bfixed_form_fields input[type=checkbox]:hover, #mec_bfixed_form_fields input[type=radio]:hover, #mec_reg_form_fields input[type=checkbox]:hover, #mec_reg_form_fields input[type=radio]:hover, .mec-form-row input[type=checkbox]:hover, .mec-form-row input[type=radio]:hover {
        border-color: #000;
    }

    Also, please follow the steps explained in this article:
    https://webnus.net/dox/modern-events-calendar/inspect-element/

    Best Regards

Viewing 1 replies (of 1 total)
  • The topic ‘Checkbox color’ is closed to new replies.