There are many ways to get that centered look. One of the best is to use at least an HTML 4.01 transitional DOCTYPE with valid URL as the first thing on your page in its source code:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
Once you have that, you can use a container division of the desired width:
HTML Code:
<body>
<div id="container">
your content here
</div>
</body>
around your content and style it like so:
Code:
#container {
width:775px;
margin:0 auto;
}
Use whatever width you like.
Bookmarks