
Originally Posted by
kobra
In the stylesheet you might have to make the background the color you desire for #logoWrapper, or #headerWrapper versus making it transparent as it will still show through the background solor of #mainWrapper
Code:
.leftBoxContainer, .rightBoxContainer {
margin: 0em;
border: 1px solid #9a9a9a;
border-bottom: 5px solid #000000;
margin-top: 1.5em;
}
This is currently coded in your stylesheet with a margin-top you might make it margin-bottom
Thanks for your help.
Code:
For the background of the header, I added the following:
#headerWrapper{
background:url(../images/background.png);
}
For the sideboxes, I made it as follows:
Code:
.leftBoxContainer, .rightBoxContainer {
margin: 0em;
border: 1px solid #9a9a9a;
border-bottom: 5px solid #000000;
margin-top: 0em;
}
So that's a couple items down.