Posts: 457
Name: Randy
Location: Northern Wisconsin
|
For table-free layout:
Wrap the content in a <div id="wrapper"> with css:
#wrapper {
margin: 0 auto; /* this centers your main area with no top or bottom margin*/
width: 960px /* or whatever width you want your main content area to be */
}
body {
background-color: #black; /* your choice of color, this fills the whole screen */
}
Further advice:
visit: http://www.w3schools.com/
Last edited by racer x; 04-19-2009 at 01:49 AM..
|