Quote:
.oneColFixCtrHdr #container {
color: #000;
width: 776px;
font-family: Verdana, Geneva, sans-serif;
text-align: center;
}
|
text-align: center; here will center the contents of the container.
If you want the container centered horizontally on the page then:
Code:
.oneColFixCtrHdr #container {
color: #000;
width: 776px;
font-family: Verdana, Geneva, sans-serif;
margin-left: auto;
margin-right: auto;
}