I have 4.5.3 in a development environment and on a live server...both are showing the same behaviour.
Excerpts from the skin and the style sheet:
SKIN:
<td class="contentbackground">
<TABLE cellspacing="0" cellpadding="0" width="100%" border="0">
<TR>
<TD class="toppane" colspan="3" id="TopPane" runat="server" valign="top" align="center"></TD>
</TR>
<TR valign="top">
<TD class="leftpane" id="LeftPane" runat="server" valign="top" align="center"></TD>
<TD class="contentpane" id="ContentPane" runat="server" valign="top" align="center"></TD>
<TD class="rightpane" id="RightPane" runat="server" valign="top" align="center"></TD>
</TR>
<TR>
<TD class="bottompane" colspan="3" id="BottomPane" runat="server" valign="top" align="center"></TD>
</TR>
</TABLE>
</td> STYLE SHEET: (skin.css)
.contentbackground {
background-image: url(images/cp_12.jpg);
background-repeat: no-repeat;
width: 873px;
}
.contentpane {
width: 100%;
background-color: transparent;
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
}
In the html where I laid the design out first before creating the skin which also referenced the same skin.css everything look correctly and the background image for the "content area" was showing correctly.
I am going to say that I do not think this is an issue with just the background image not working because it appears that none of the skin.css is being utilized.
In IE, it appears that none of the skin.css is being used and in Firefox it is being selective (meaning that most all I can tell is working except the background image for the content area.
Has anybody else had issues with 4.5.3 not using the skin.css correctly?
The skin and css files are located in /_default/Skins/Kids/content.ascx
/_default/Skins/Kids/skin.css
and the images /_default/Skins/Kids/images/
Thanks for any help or advice.
Chas