Changing margin for checkboxes

On my Donate page at the bottom of the form, I’m trying to move my checkboxes and checkbox labels over to the right. I was able to move the labels with the css below but that didn’t affect the checkboxes. Please point me in the right direction. Thanks.

.wpcf7 input[type=“checkbox”] {
margin-right:40px;
}

Hi there,

I tried checking your site and it seems that you were able to get it sorted?

What I did only affected the text. I want the little checkboxes to move right so they will be closer to the text.

Hi There,

Please add the following CSS to Theme Options CSS

.wpcf7 input[type="checkbox"] {
 
    margin-right: 5px;
}
.wpcf7 input[type="checkbox"] {

    margin-left: 28px;
}

Hope it helps

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.