Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Archive /

Our old forums are still available as a read-only archive.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo

problem: third level menu don't work


Go to End


1081 Views

Avatar
bebabeba

Community Member, 193 Posts

19 November 2008 at 5:16am

Hi!
I have a problem to add aothe level menu in this example:
If I have menu I want see menu2 (if there is), menu3 and menu4. My doubt is where to add code . I try different solution but nothig is correct. Can you help me? I post code for second leve menu

<div id="Sidebar" class="typography">
<div class="dbx-group" style="position: relative; display: block;">
<div class="sidebarBox dbx-box">
<h3 class="dbx-handle">
<% control Level(1) %>
$Title
<% end_control %>
</h3>
<div class="dbx-content">
<ul id="Menu2">
<% control Menu(2) %>
<% if Children %>
<li class="$LinkingMode"><a href="$Link" title="Go to the $Title.XML page" class="$LinkingMode levela"><span><em>$MenuTitle</em></span></a>
<% else %>
<li><a href="$Link" title="Go to the $Title.XML page" class="$LinkingMode levela"><span><em>$MenuTitle</em></span></a>
<% end_if %>

<% if LinkOrSection = section %>
<% if Children %>
<ul class="sub">
<li>
<ul>
<span class="roundWhite">
<% control Children %>
<li><a href="$Link" title="Go to the $Title.XML page" class="$LinkingMode levelb"><span><em>$MenuTitle</em></span></a></li>
<% end_control %>
</span>
</ul>
</li>
</ul>
<% end_if %>
<% end_if %>
</li>
<% end_control %>
</ul>
</div>
</div>
<!-- <div class="clear"></div> -->
</div>
</div>