Reply To: Can you help me fixing the checkboxes in Epik

Homepage Community Forums Epik Theme Support Can you help me fixing the checkboxes in Epik Reply To: Can you help me fixing the checkboxes in Epik

#8113
Wes
Moderator

    Yeah I just noticed this happens on all of the latest Genesis Themes….including the newer themes from SP. To fix it, take a look in your css for this – “<strong>input[type="checkbox"], input[type="radio"]</strong>” and add a width like this –

    input[type="checkbox"], input[type="radio"] {
        box-sizing: border-box;
        padding: 0;
        width: auto;
    }