DotNetNuke 6.0 & Mega Menus


Author Message
Tim

Posted: 5/26/2011
Quote message 

DNN 6 not released for at least another month. The quality of DNN releases in the last 6minths has been fantastic. The performance has increased and the quality is good. I am looking forward to DNN 6 but I always subsitute the Artisteer Menu with DNNGarden.
 
Clyde

Posted: 6/6/2011
Quote message 

Hi Barry, mine is set to low. How can I change that?
Quote BarryZ:

If your DNN site is running slow, open IIS Manager, right-click on the yellow Web Sites folder, click on Properties then ISAPI Filters... and make sure that your IIS is not set to low priority.
There are other speed enhancements available from various places.

BarryZ



 
Mark

Posted: 9/15/2011
Quote message 

I agree. Im also in need of the menu menus. My custs are asking for them due to so much info that can be shown in it.

I have an older version of Artisteer and need get the new one but im waiting on it to work with DNN 6.

so far i have to do some serous editing to get it to where i need it,
 
munnikman

Posted: 4/22/2012
Quote message 

Is there any new news on this topic.... I am stuck with the basic menu that just does not work for me and I want to use the DNN360 navpack solution. Will Artisteer be implementing something to make this possible or am I screwed?

 
Tim

Posted: 4/29/2012
Quote message 

here is a idea I emailed them and got this answer
"We're using DDRMenu for DNN 6 skins and we plan to use this menu in the future."

why dont u email and ask them about MegaMenues ?



 
Mark

Posted: 5/29/2012
Quote message 

Like everyone else here I use Artisteer to create DNN skins for my websites but the only way to get them just the way you want is to take the template created by Artisteer and modify it yourself.

I wouldn't hold my breath waiting for any DNN specific features as the developers are clearly focused on Wordpress and being able to use Artisteer to create templates for other CMS systems is just something they have added on to make a few extra bucks.
 
LuisVila

Posted: 10/30/2012
Quote message 

It's easy to create custom footers in any Artisteer skin (since version 3). Just go to the Footer section, press the Text... button. There you can place some divs and tables to layout your panes, providing you name them with unike ID's. Here is some code I use to place there to create 5 footer panes in my Dotnetnuke skins:

<table class="position" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top">
<td width="25%" id="Footer1" runat="server" class="Footer"></td>

<td width="25%" id="Footer2" runat="server" class="Footer"></td>

<td width="25%" id="Footer3" runat="server" class="Footer"></td>

<td id="Footer4" runat="server" class="Footer"></td>
</tr>

<tr valign="top">
<td colspan="4" width="100%" id="FooterBottom" runat="server" class="FooterBottom"></td>
</tr>
</table>

It works in version 4 too and you can place same kind of code in any block usig the HTML button in the Edit section.

Hope this helps!