Centering webpage regardless resolution

using layers with absolute positioning leaves the website all the way to the left when viewed in higher resolution. How do I center the webpage regardless the clients resolution?

You need to make sure the containing division has a width and then you add margin: 0 auto; to it. :slight_smile:

#container{
  width:760px; /* --- change this to meet your needs --- */
  margin:0 auto;
}

Welcome to SitePoint BTW. :smiley: