Thanks for getting back so quickly....here is what the body looks like:
<body>
<form id="form1" runat="server">
<asp:Table runat=server ID="Table1">
<asp:TableRow ID="TableRow1">
<asp:TableCell ID="TableCell1"></asp:TableCell>
<asp:TableCell ID="TableCell2"></asp:TableCell>
<asp:TableCell ID="TableCell3">
<asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
MasterPage.Master
</asp:contentplaceholder>
</asp:TableCell>
<asp:TableCell ID="TableCell4"></asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>
</body>
With a theme designated in the web.config file:
#Table1
{
background-color: Gray;
border-width: thick;
border-color: Lime;
width: 800px;
}
#TableCell1
{
width: 20%;
}
#TableCell2
{
width: 20%;
}
#TableCell3
{
background-color: Black;
width: 40%;
font-size: large;
font-weight: bold;
}
#TableCell4
{
width: 20%;
}
The backround color shows up, but none of the table does. Thanks again!