Hi,
I've uploaded my skin package that includes the following (partial) skin.css file:
#nav{
width: 960px;
hieght: 110px;
}
#RotatorPane{
width: 960px;
height:400px;
}
#ContentPane{
width: 960px;
height: 200px;
}
#footer{
width: 960px;
height: 110px;
border: 1px;
}
#lowerleftandmiddle{
width: 635px;
float: left;
}
#footerleftpane{
width: 310px;
float: left;
}
#footerMidPane{
width: 310px;
float: right;
}
#footerRightPane{
width: 310px;
float: right;
}
When I view a page on my site in layout mode, there are a few issues that are appraent.
First, the RotatorPane is stuck immediately to the right of the DNN Logout link in the Nav div.Second, DIV footermidpane is not positioned between footerleftpane and footerrightpane as intended. I created a container DIV for the footer as follows:
<div id="footer">
<div id="lowerleftandmiddle">
<div id="footerleftpane" runat="server">
<dnn:LOGO id="dnnLogo" runat="server" />
<h3>Driving business performance.</h3>
<h3>Practical Sales and Operations Planning</h3>
<h3>for medium sized businesses.</h3>
</div>
<div id="footerMidPane" runat="server">
</div>
</div>
<div id="footerRightPane" runat="server">
<dnn:COPYRIGHT id="dnnCopyright" runat="server" /><br />
<dnn:PRIVACY id="dnnPrivacy" runat="server" />
<dnn:TERMS id="dnnTerms" runat="server" />
<br class="clear" />
</div>
</div>
Finally, is it advisable to have a separate Pane that will hold my Aggregator and a second ContentPane for a Text/HTML module? Or should I just stick with one ContentPane with the understanding that the Aggregator module will go in first followed by the Text/HTML module?
Thanks
Sid