Re: How do you change the background color of the content table?
As I can see in your skin1.css there is the style for body and HTML
HTML,BODY {
HEIGHT: 100%;
MARGIN: 0px;
PADDING: 0px;
BACKGROUND-COLOR: #25395A;
}
This style defines color #25395A for background.
Try to add style for Table.Container and TD.Container
background-color: #FFFFFF;
i.e.
TABLE.Container {
HEIGHT: 100%;
background-color: #FFFFFF;
}
TD.Container {
VERTICAL-ALIGN: top;
HEIGHT: 90%;
background-color: #FFFFFF;
}
If there will be any probles please inform me.
|