Hi.
If you want the labels to align with their respective check-boxes (in one line), you need to open your style.css file, locate the #respond label selector, and delete this property:
display: block
That change will affect all the labels in your comment form, not just the check-box ones. If you only wish to target those, you will need to create a new style rule for them:
.comment-subscription-form label {
display: inline!important;
}
That should do it.
Cheers!
Thank you! That does help. Now, how to I get the checkboxes and labels to align at the left instead of to the right of the comment box?
When I am logged out, the comment box is on the right and the checkboxes and labels line up correctly.
When I am logged in though, the comment box aligns to the left since the log in info is not needed. The checkboxes and labels stay to the right though.
Kristi
I understand.
Try:
.comment-subscription-form {
text-align: left;
}
If that doesn’t work, I would need to look at your source code (the signed in version). To do so, sign in, access the source code (Ctr+U or right click-> “view source”), Pastebin and share the link here.
That didn’t work! Here is the pastebin url: http://pastebin.com/RbDB8yU4
Thank you for your help!
Kristi
Hi Kristi,
I checked the code and the problem seems to come from conflicting float attributes applied to your Submit Comment button when logged in. To fix that, you need to:
1. Open your style.css file.
2. Look for the following selector:
#respond .button
and delete this line:
float: right;
3. Look for the following selector:
.userloggedbtn
and delete this line:
float: left!important;
That, along with the previous tweak, should fix the problem for good.
If it doesn’t for some reason, LMK and I’ll take another look.
Cheers!
Hello! It worked great! The section looks much better.
Thank you so much!
Kristi
Glad to hear!
If you have other questions or problems, post again here and I’ll give you a hand.
Also, please don’t forget to mark the thread as resolved whenever you can.
Thanks!
Kristi,
Could you please mark this thread as resolved?
Thanks.
Cheers!
Sure! Thank you for your help!
Kristi