Forum Moderators: open
<body>
<div id="container">
...
</div>
</body>
In this example, the div with the id of "container" is what we want to make centered and fixed width. Now for the CSS:
body {
text-align: center; /* Fix for IE */
}
#container {
margin: 0 auto; /* Center the page */
width: 770px;
/* The border is only to show that it is centered */
border: 1px solid red;
}