I'm trying to center a container div at 80% page width. The problem is that it's displaying the container a little to the right, so it's not centered on the page.
I can fix it with padding-right but the problem is that some browsers push the divider more to the left when they read this padding.
My code:
#container {
width: 80%;
min-width:200px;
max-width: 1260px;
position: relative;
font-size: 1em;
text-align:center;
background: #ffffff url(../images/content-top.jpg) repeat-x;
}