Strange Alignment of website traffic text

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jeddiki
    Contributor
    • Jan 2009
    • 290

    Strange Alignment of website traffic text

    Hi,

    I have made a little web page that contains an article
    about getting website traffic. For some reason the text is getting
    pushed over to the right hand side.

    This is my css for that text

    Code:
    .text {
    	width: 900px;
    	margin: 20px auto;
    	text-align: left;
    	font-size: 16px;
    	color : blue;
    }
    And this is what the page looks like:
    website traffic

    I don't see why the text is going out of alignment by so much.
    It should be a only 20px shift.

    Hopefully someone can see what I have done wrong.
  • drhowarddrfine
    Recognized Expert Expert
    • Sep 2006
    • 7434

    #2
    Your wrapper div has a left margin of 150px.

    Comment

    • jeddiki
      Contributor
      • Jan 2009
      • 290

      #3
      Thanks,

      I have also realized that I left an extra
      set of ".text {" lower down in the css that was messing it up !

      Fixing it now

      Comment

      Working...