#respond label {
width: 500px;
}
#respond input {
width: 5px;
margin-bottom: 0px;
}
Can you please post a link to one of your pages showing the problem? It might be possible to tweak the rule to make the selector more specific.
Add these rules to your custom CSS:
#respond .mc4wp-checkbox {
margin-top: 10px;
margin-left: 65px
}
#respond .mc4wp-checkbox input {
width: 10px;
}
#respond .mc4wp-checkbox label {
width: 100%;
}
You can see that the mc4wp-checkbox class is used to target the CSS to just the checkbox element. You can adjust how far to move the checkbox left or right by adjusting the value of margin-left in the first rule.
(@ciarasebecke)
9 years, 8 months ago
Hello. I have a checkbox under my comment section and it is taking up three lines because the width is so tiny, but when I make the width larger it also changes the width of the boxes where commenters enter their name and email. I tried
and fixed it but this also affected the email and name boxers for users who are not logged into WordPress. Maybe I could make it two separate CSS classes? Not sure if that’s possible. The checkbox was created with a plugin. #respond label is the text and #respond input is the checkbox. The plugin is Mailchimp for WordPress