• Resolved CP

    (@chantillypatino)


    I’ve added this plugin to my website and the checklist appears on the wrong side of each bullet item and is misaligned. How can I fix this?

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

Viewing 1 replies (of 1 total)
  • Plugin Author checklist.com

    (@checklistcom)

    Hi Chantilly,

    Thanks for your feedback. I have looked at the page and it seems that you have a css directive which is causing your checkboxes to be very wide. The fault is here:
    input, select, textarea {
    border: 1px solid #ddd;
    color: #888;
    padding: 9px 10px;
    width: 100%; <—— You should remove this
    box-sizing: border-box;
    }

    What you can also do, is add to your theme css the following:
    .checklist-box input[type=”checkbox”]{
    width: initial;
    }

    I hope this helps,

    The Checklisters

Viewing 1 replies (of 1 total)
  • The topic ‘Checkbox on the wrong side’ is closed to new replies.