Small width layout Medium width layout Maximum width layout Small text Medium text Large text
     Search
Downloads Downloads Directory Directory Forums Forums Forge Forge Blogs Blogs        Marketplace Marketplace Careers Program Careers
Community › Forums Register  |  

telerik -- supercharge your DNN websites
  Ads  
 


  Sponsors  

Meet Our Sponsors

R2integrated - formerly bi4ce
Jango Studios - Skins, Modules and Hosting for DotNetNuke
eUKhost.com is commited to offer exceptional UK Windows Web Hosting solutions with quality 24x7 technical support.Our plans support ASP.Net, ASP, ASP.NET Ajax extensions, XML, MSSQL, MySQL, PHP,DNN, multiple domains and Shared SSL as standard.
SmarterTools
The Official Microsoft ASP.NET Website
Portal Webhosting - Hosting For Developers
 


DotNetNuke Forums
 
  Forum  General DotNetN...  Make it Hot! ( ...  How to do Menu like DNN Site?
Previous Previous
 
Next Next
New Post 3/11/2008 10:07 AM
User is offline oshoval
27 posts
10th Ranked


How to do Menu like DNN Site? 

Well I don't know where even to start...

I want my Menu will be by images like this site.

How do i chane the Default DNN Design?(Someone has a guide for such thing?)

 
New Post 3/11/2008 12:00 PM
User is offline Justin Ball
93 posts
www.justinball.net
10th Ranked


Re: How to do Menu like DNN Site? 

It can easily be accomplished by adding a HTML module to your skin and not show the skin container, and then adding code similar to below. (of course you need to change the images and links.

<!-- Begin Header Actions Table -->
              <table id="DNN_HeaderActions" cellpadding="2" cellspacing="0" border="0" height="100%">
                  <tr>
                       <td class="DNN_HeaderActionCell" align="center" valign="bottom" width="51"><a href="http://www.dotnetnuke.com/tabid/125/default.aspx"><img src="/Portals/_default/Skins/DNN-Minimal/images/icon_downloads.gif" onmouseover="this.src='/Portals/_default/Skins/DNN-Minimal//images/icon_downloads_over.gif'" onmouseout="this.src='/Portals/_default/Skins/DNN-Minimal//images/icon_downloads.gif'" width="46" height="44" alt="Downloads" border="0" vspace="3"></a>
             <a href="http://www.dotnetnuke.com/tabid/125/default.aspx" class="DNN_IconLink">Downloads</a>        
         </td>
                       <td class="DNN_HeaderActionCell" align="center" valign="bottom" width="51"><a href="http://www.dotnetnuke.com/tabid/702/Default.aspx"><img src="/Portals/_default/Skins/DNN-Minimal/images/icon_directory.gif" onmouseover="this.src='/Portals/_default/Skins/DNN-Minimal//images/icon_directory_over.gif'" onmouseout="this.src='/Portals/_default/Skins/DNN-Minimal//images/icon_directory.gif'" width="46" height="36" alt="Directory" border="0" vspace="3"></a>
             <a href="http://www.dotnetnuke.com/tabid/702/Default.aspx" class="DNN_IconLink">Directory</a>
         </td>
                       <td class="DNN_HeaderActionCell" align="center" valign="bottom" width="51"><a href="http://www.dotnetnuke.com/tabid/795/Default.aspx"><img src="/Portals/_default/Skins/DNN-Minimal/images/icon_forums.gif" onmouseover="this.src='/Portals/_default/Skins/DNN-Minimal//images/icon_forums_over.gif'" onmouseout="this.src='/Portals/_default/Skins/DNN-Minimal//images/icon_forums.gif'" width="51" height="39" alt="Forums" border="0" vspace="3"></a>
             <a href="http://www.dotnetnuke.com/tabid/795/Default.aspx" class="DNN_IconLink">Forums</a>        
         </td>
                       <td class="DNN_HeaderActionCell" align="center" valign="bottom" width="51"><a href="http://www.dotnetnuke.com/tabid/824/default.aspx"><img src="/Portals/_default/Skins/DNN-Minimal/images/icon_modules.gif" onmouseover="this.src='/Portals/_default/Skins/DNN-Minimal//images/icon_modules_over.gif'" onmouseout="this.src='/Portals/_default/Skins/DNN-Minimal//images/icon_modules.gif'" width="37" height="40" alt="Forge" border="0" vspace="3"></a>
             <a href="http://www.dotnetnuke.com/tabid/824/default.aspx" class="DNN_IconLink">Forge</a>
         </td>
                       <td class="DNN_HeaderActionCell" align="center" valign="bottom" width="51"><a href="http://www.dotnetnuke.com/tabid/825/default.aspx"><img src="/Portals/_default/Skins/DNN-Minimal/images/icon_blogs.gif" onmouseover="this.src='/Portals/_default/Skins/DNN-Minimal//images/icon_blogs_over.gif'" onmouseout="this.src='/Portals/_default/Skins/DNN-Minimal//images/icon_blogs.gif'" width="45" height="36" alt="Blogs" border="0" vspace="3"></a>
             <a href="http://www.dotnetnuke.com/tabid/825/default.aspx" class="DNN_IconLink">Blogs</a>
         </td>
   <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>

                       <td class="DNN_HeaderActionCell" align="center" valign="bottom" width="51"><a href="http://marketplace.dotnetnuke.com"><img src="/Portals/_default/Skins/DNN-Minimal/images/icon_mp.gif" onmouseover="this.src='/Portals/_default/Skins/DNN-Minimal//images/icon_mp_over.gif'" onmouseout="this.src='/Portals/_default/Skins/DNN-Minimal//images/icon_mp.gif'" width="48" height="43" alt="Marketplace" border="0" vspace="3"></a>
             <a href="http://marketplace.dotnetnuke.com" class="DNN_IconLink">Marketplace</a>
         </td>
        
                       <td class="DNN_HeaderActionCell" align="center" valign="bottom" width="47"><a href="http://www.dotnetnuke.com/tabid/1111/default.aspx"><img src="/Portals/_default/Skins/DNN-Minimal/images/icon_careers.gif" onmouseover="this.src='/Portals/_default/Skins/DNN-Minimal//images/icon_careers_over.gif'" onmouseout="this.src='/Portals/_default/Skins/DNN-Minimal//images/icon_careers.gif'" width="44" height="43" alt="Careers Program" border="0" vspace="3"></a>
             <a href="http://www.dotnetnuke.com/tabid/1111/default.aspx" class="DNN_IconLink">Careers</a>
         </td>
                  </tr>
              </table>
              <!-- End Header Actions Table -->
       </td>
          </tr>
      </table>
      <!-- End Header Table -->

 
Previous Previous
 
Next Next
  Forum  General DotNetN...  Make it Hot! ( ...  How to do Menu like DNN Site?
 


Forum Policy

These Discussion Forums are dedicated to the discussion of the DotNetNuke Web Application Framework.

For the benefit of the community and to protect the integrity of the project, please observe the following posting guidelines:

1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DotNetNuke.
2. Discussion or promotion of DotNetNuke product releases under a different brand name are strictly prohibited.
3. No Flaming or Trolling.
4. No Profanity, Racism, or Prejudice.
5. Site Moderators have the final word on approving/removing a thread or post or comment.
6. English language posting only, please.

 


Cygnusoft Custom Software
Cygnusoft has been providing cutting-edge custom software solutions for 20 years. Cygnusoft is also a leading start-up incubator, helping our partners build successful new businesses.
www.cygnusoft.com
Digicon: DotNetNuke design and development
Digicon is based in Brisbane, Queensland, Australia
digicon.com.au
Live Visitor Tracking & Live Chat For DotNetNuke
Track your visitors in real time and add live chat for sales & support. Free Trial.
www.whoson.com

DotNetNuke Corporation   Terms Of Use  Privacy Statement
DotNetNuke®, DNN®, and the DotNetNuke logo are trademarks of DotNetNuke Corporation
Hosted by MaximumASP