Ok that worked except it made it aligh to the left...???
Ok that worked except it made it aligh to the left...???
I have
#mainWrapper {
background-color: #ffffff;
text-align: left;
width: 790px;
vertical-align: top;
border: 2px solid #000000;
}
When I add
width: 790px;
to the outherborder, it makes the page align to the left
change the declaration in your stylesheet as follows
#outerBorder {
margin: 20px auto; /*gives spacing at top and bottom*/
padding: 15px; /*spacing between this and the mainWrapper*/
background-color: #ffffff; /*white background*/
border: 1px solid #000000; /*1px black edge*/
width: 790px;
}