• Resolved fauxism

    (@fauxism)


    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!

    https://fauxism.org/i-can-has-cheezburger/#comments

Viewing 4 replies - 1 through 4 (of 4 total)
  • jrav001

    (@jrav001)

    The centering is in your style.css on line 439:

    #commentform p {
    margin:5px 0;
    text-align:center;
    }
    Thread Starter fauxism

    (@fauxism)

    #commentform p {
    	font-family: arial;
    	margin:5px 0;
    	text-align:left;
    	align:left;
    
    	}

    It still stays centered.

    jrav001

    (@jrav001)

    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;
    	}
    Thread Starter fauxism

    (@fauxism)

    Ahhh got it. Thanks so much =]

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Input fields won’t align left’ is closed to new replies.