Forum Moderators: not2easy

Message Too Old, No Replies

Center page

CSS centering

         

bigx01

4:11 am on Jul 4, 2010 (gmt 0)

10+ Year Member



I have an issue with centering a web page. I used a template from Metamorphosis Design but it is always on the right side. I would like to get it to center in the web page. Any help would be appreciated.

here is the web page. [greenvillagelighting.com ]

birdbrain

9:18 am on Jul 4, 2010 (gmt 0)



Hi there ,

and a warm welcome to these forums. ;)

In your styles.css file, change this...


#main {
float: right;
width: 730px;
margin-top: 20px;
margin-bottom: 20px;
}


...to this...


#main {
width: 730px;
margin: 20px auto;
}


birdbrain