Need some help with CSS and positioning

If you create a 'container' div around your other divs and set margin: auto in CSS, that should fix your centering problems.
If you add #menu dl { display: block } to the CSS then that should fix the navbar issues.

HTH
 
Thanks for the tips but they didnt fix the problem :(

Adding the block did nothing and the container div does appear in the center of the page when looking at the site in dreamweaver but all my content still stays left aligned. Would this have anything to do with the elements being positioned absolutely ?

Any other ideas ?
 
Try adding position: relative; to #container (or whatever you called the div)
Try also adding #menu dt { display: block } to the CSS. Failing that try #menu dd { display: block }
 
Back
Top Bottom