Can someone help me debug why I can no longer see widgets or submenus on my site? This is the first website I have ever endeavored to create so it is quite a steep learning process... Any help is greatly appreciated!
http://www.mrwindupbird.com/diary
And here is the contents of my "navigation2.ss" file in the "Includes" folder... (it's worth noting that the submenus for both the gallery and the music section work perfectly!)
-----------------------------------------------------------
<% control Level(1) %>
<% if Title = Gallery %>
<% if Children %>
<div class="widgetBox">
<h2>Gallery</h2>
<ul>
<% control Children %>
<li><a href="$Link" <% if LinkingMode %>class="$LinkingMode"<% end_if %>>$MenuTitle</a></li>
<% end_control %>
</ul>
</div>
<% end_if %>
<% else %>
<% if Title = Music %>
<% if Children %>
<div class="widgetBox">
<h2>Music</h2>
<ul>
<% control Children %>
<li><a href="$Link" <% if LinkingMode %>class="$LinkingMode"<% end_if %>>$MenuTitle</a></li>
<% end_control %>
</ul>
</div>
<% end_if %>
<% else %>
<% if Title = Blog %>
<% else %>
<% if Title = Forums %>
<% else %>
<% if Children %>
<div class="widgetBox">
<h2>Sub Menu</h2>
<ul>
<% control Children %>
<li><a href="$Link" <% if LinkingMode %>class="$LinkingMode"<% end_if %>>$MenuTitle</a></li>
<% end_control %>
</ul>
</div>
<% end_if %>
<% end_if %>
<% end_if %>
<% end_if %>
<% end_if %>
<% end_control %>
$SideBar
<% include Cart %>
--------------------------------------------------------