fauxism
Member
Posted 2 weeks ago #
I don't know why by my input boxes won't align to the left. They stay centered. But I don't have CSS which is making them that way. It's just the default comment html.
How can I get them to align evenly underneath each other instead of being centered?
Thanks!
http://fauxism.org/i-can-has-cheezburger/#comments
jrav001
Member
Posted 2 weeks ago #
The centering is in your style.css on line 439:
#commentform p {
margin:5px 0;
text-align:center;
}
fauxism
Member
Posted 2 weeks ago #
#commentform p {
font-family: arial;
margin:5px 0;
text-align:left;
align:left;
}
It still stays centered.
jrav001
Member
Posted 2 weeks ago #
You've got lots of them in there, but you need to edit the one that's above .nocomments on line 443
#commentform p {
margin: 5px 0;
text-align:center;
}
.nocomments {
text-align: center;
margin: 0;
padding: 0;
}
fauxism
Member
Posted 2 weeks ago #
Ahhh got it. Thanks so much =]