I'm so sorry, what I mean was "skin" package files. For example, DNN-BLUE skin package, there are four files: "Horizontal(Vertical) Menu - Fixed(Full) Width.ascx". Depend on which style you choose.
You need to forget the DNN site setting to put the logo in. If you want to do your way, then completely your way.
For the .ascx files, you need to know yourself which part of the page you want the logo go in. So if you don't know the .ascx files, you can just put the pic link in a few place and see if it's at the right place, if it's not change it.
If you want the logo in the same place with the page setting put. In any or all .ascx files:
None
0 Points
13 Posts
Re: logo's...(multiple)
Oct 13, 2005 10:59 AM|Yui|LINK
I'm so sorry, what I mean was "skin" package files. For example, DNN-BLUE skin package, there are four files: "Horizontal(Vertical) Menu - Fixed(Full) Width.ascx". Depend on which style you choose.
You need to forget the DNN site setting to put the logo in. If you want to do your way, then completely your way.
For the .ascx files, you need to know yourself which part of the page you want the logo go in. So if you don't know the .ascx files, you can just put the pic link in a few place and see if it's at the right place, if it's not change it.
If you want the logo in the same place with the page setting put. In any or all .ascx files:
blah...
<%@ Register TagPrefix="dnn" TagName="DOTNETNUKE" Src="~/Admin/Skins/DotNetNuke.ascx" %>
<TABLE class="pagemaster" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top">
<TABLE class="skinmaster" width="100%" border="0" align="center" cellspacing="0" cellpadding="0">
<TR>
<TD id="ControlPanel" runat="server" class="contentpane" valign="top" align="center"></TD>
</TR>
<TR>
<TD valign="top">
<TABLE class="skinheader" cellSpacing="0" cellPadding="3" width="100%" border="0">
<TR>
<TD vAlign="middle" align="left"><dnn:LOGO runat="server" id="dnnLOGO" />
RIGHT HERE!!
</TD>
<TD vAlign="middle" align="right"><dnn:BANNER runat="server" id="dnnBANNER" /></TD>
</TR>
</TABLE>
<HR>
<TABLE class="skingradient" cellSpacing="0" cellPadding="3" width="100%" border="0">
blah...