Connecting Tech Pros Worldwide Forums | Help | Site Map

Strange Alignment of website traffic text

Familiar Sight
 
Join Date: Jan 2009
Posts: 165
#1: Oct 14 '09
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

Expand|Select|Wrap|Line Numbers
  1. .text {
  2.     width: 900px;
  3.     margin: 20px auto;
  4.     text-align: left;
  5.     font-size: 16px;
  6.     color : blue;
  7. }
  8.  
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's Avatar
Expert
 
Join Date: Sep 2006
Posts: 5,568
#2: Oct 14 '09

re: Strange Alignment of website traffic text


Your wrapper div has a left margin of 150px.
Familiar Sight
 
Join Date: Jan 2009
Posts: 165
#3: Oct 14 '09

re: Strange Alignment of website traffic text


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
Reply