View Single Post
  #2 (permalink)  
Old 09-01-2008, 09:08 AM
MuNKyonline's Avatar
MuNKyonline MuNKyonline is offline
WebProWorld Veteran
 
Join Date: Jun 2004
Location: Suffolk, England
Posts: 777
MuNKyonline RepRank 2
Default Re: Need help - MSIE alignment issue

For a start you dont need to wrap lists with paragraphs, the list is fine on its own:
<p><ul>
<li>custom website design </li>
<li>domain registration</li>
<li>email & contact forms</li>
<li>e-commerce solutions</li>

<li>updates and maintenance</li>
</ul> </p>

I think your problem is because you have no container div to wrap all the page contents.

Add a div with id="wrapper" around the other divs, give it a set width of 955px (which is 1024x768 with the browser maximised) in the css:

#wrapper { text-align:left; margin: 0 auto; width: 955px; }

I think that should stop the content going off to the right.
Reply With Quote