The header and body have the correct background color but the fonts look gray. I am running on DOTNETNUKE version 4.9.0 and 4.9.1 and Windows 2003.
Thanks
test.htm
<body class="border">
<div class="PhilosophyHeader" runat="server">[ACTIONS][ICON] [TITLE]</div>
<div id="ContentPane" runat="server" class="PhilosophyBody"></div>
</body>
container.css
.PhilosophyHeader
{
color: #FF0000;
font: normal normal bold 100%/normal serif;
border: thin #CC9900;
background-color: #CC9900;
}
.PhilosophyBody
{
background-color: #800000;
color: #CC9900;
}
.border
{
border: thin #FFFF00 solid;
}
edit: Removed < header >, it did not effect problem.
Answer: The problem was a combination of tags not matched and use of the same name in two containters.