|
Well,If you want for all content to be centered in your page, you're going to have to add an id it to your .css.
The thing to do is to create a div, and set it to an id such as "content." Then in your .css, create it so that the id is as something as follows:
#content {
height: 600px;
width: 813px;
margin-right: auto;
margin-left: auto;
padding: 0px;
}
From there, put all other divs within "content" so that it's all centered. The important thing to realize on how to center content is to have the margin-right and margin-left set to "auto."
Make sense?
|