This content has been marked as final.
Show 2 replies
-
1. Re: Help adding background color to div
osgood_ Apr 24, 2013 12:41 AM (in response to onefiftymph)Set the background color of the #container to white as shown below (I've commented out /* */ the existing background color and insert the new css rule after that.
.twoColFixLtHdr #container {
width: 800px;
border: 1px solid #CAACF2;
margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
border: 1px solid #CAACF2;
text-align: left; /* this overrides the text-align: center on the body element. */
/*background-color: #FAF1C6;*/
background-color: #fff;
background-repeat: repeat;
}
Is that what you want?
-
2. Re: Help adding background color to div
onefiftymph Apr 24, 2013 11:47 PM (in response to osgood_)Perfect thanks Osgood! Sorry for the delay.


