admin(Mark) wrote: For most css layout you can use a wrapper and align it to center by placing the margin to auto <div id="main"> <div id="head"> banner here </div> </div> style would be: #main{ margin: 0px auto; text-align:left; width:800px; } That would work perfectly in most newer browser but will break in browsers like IE6. There is a very easy way to fix this. You basically just need to add text-align:center; to your body tag body{ text-align:center; } Simple as that and you are done! Posted: Wed Dec 20, 2006 9:49 pm
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||