Oh, you said Content area: #ContentPane .Head { color:black; } If your content pane has an Id on a runat=server tag that won't work though since the server builds the id into something else, so you may need to do something like this: < td id="ContentPane" >< div id="ContentPane" runat="server" />< /td> |