Hi
I am pretty new user in dotnetnuke and I want create my new different skin. For this purpose I have created two files.
1-Skin.htm (Code is given below)
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="skin.css" />
</head>
<body>
<table class="PageContainer">
<tr>
<td>
<div>
<table class="ContentContainer">
<tr>
<td id="ControlPanel" runat="server" style="width: 100%"></td>
</tr>
<tr>
<td>
<table style="width: 100%">
<tr>
<td>
[LOGO]</td>
<td>
[BANNER]</td>
</tr>
</table>
<table class="MenuContainer">
<tr>
<td>
[NAV]</td>
<td align="right">
[SEARCH][LANGUAGE]</td>
</tr>
</table>
<table style="width: 100%">
<tr>
<td>
[CURRENTDATE]</td>
<td align="center">
[BREADCRUMB]</td>
<td align="right">
[USER] [LOGIN]</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table style="width: 100%; height: 100%">
<tr>
<td align="center" valign="top" id="TopPane" runat="server" colspan="3"></td>
</tr>
<tr>
<td align="center" valign="top" id="LeftPane" runat="server"></td>
<td align="center" valign="top" id="ContentPane" runat="server"></td>
<td align="center" valign="top" id="RightPane" runat="server"></td>
</tr>
<tr>
<td align="center" valign="top" id="BottomPane" runat="server" colspan="3"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table class="FooterContainer">
<tr>
<td align="center">
[COPYRIGHT] [TERMS] [PRIVACY]</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
[DOTNETNUKE]</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</body>
</html>
2-skin.css (Code is given below)
@import url("css/menu.css");
.PageContainer {
width: 100%;
height: 100%;
background-color: #888888;
}
.ContentContainer
{
width: 800px;
height: 100%;
background-color: #ffffff;
}
.MenuContainer
{
background-color: #dddddd;
width: 100%;
}
.FooterContainer
{
background-color: #dddddd;
width: 100%;
}
I save these two files in one folder Skin (Name of the folder) after that I zip this folder skin.zip then I go to admin user and upload this skin and I got the message skin uploaded successfully but when I select this skin it show this file without skin.
Please guide me rightly where I making a mistake. It will be appreciated.
Regards,
Fatima