[Solved] Named links in menu
Posted: Wed Sep 05, 2007 6:11 pm
I am in the process of importing a template and am having some difficulty with a menu. I am including a link to the site. On the left hand menu the top menu is the one I am working on in the Menu Manager the bottom one is hard coded in. What I am trying to do is get the top to look like the bottom.
http://bogeybluesgolf.com/cms/index.php?page=basic-options-content
I have gotten the first level of the menu to work. Underneath the first level are named links in the document. The named link is working correctly, but it does not display as desired. I created the second level links under Content > Pages as links. I am including the source for the bad menu and the good menu.
Bad Menu Code:
Good Menu Code:
What I am guessing that is messing this up is the extra tags but I am not sure how remove them and the [class='group'] should not be there either.
Thanks!
Kenny
http://bogeybluesgolf.com/cms/index.php?page=basic-options-content
I have gotten the first level of the menu to work. Underneath the first level are named links in the document. The named link is working correctly, but it does not display as desired. I created the second level links under Content > Pages as links. I am including the source for the bad menu and the good menu.
Bad Menu Code:
Code: Select all
<ul>
<li class="title">Basic Options</li>
<li class="selected"><dfn>Current page is 8.2: </dfn>Content Area
<ul>
<li class='group'><a href="http://bogeybluesgolf.com/cms/index.php?page=basic-options-content#textboxstyle"><dfn>8.2.1: </dfn>Textbox Style</a></li>
</ul>
</li>
<li class='group'><a href="http://bogeybluesgolf.com/cms/index.php?page=sidebar-area"><dfn>8.3: </dfn>Sidebar Area</a></li>
<li class='group'><a href="http://bogeybluesgolf.com/cms/index.php?page=printer-stylesheet"><dfn>8.4: </dfn>Printer Stylesheet</a></li>
</ul>
Code: Select all
<ul>
<li class="title">Basic Options</li>
<li class="group"><a href="options_basic_content.html" class="selected">Content Area</a></li>
<li><a href="#columnlayout">Column Layout</a></li>
<li><a href="#titleplacement">Title Placement</a></li>
<li><a href="#titlestyle">Title Style</a></li>
<li><a href="#titlesize">Title Size</a></li>
<li><a href="#titlestyle">Subtitle Style</a></li>
<li><a href="#titlesize">Subtitle Size</a></li>
<li><a href="#textboxstyle">Textbox Style</a></li>
<li><a href="#pictures">Pictures</a></li>
<li><a href="#tables">Tables</a></li><li><a href="#text">Text</a></li>
<li class="group"><a href="options_basic_sidebar.html">Sidebar Area</a></li>
<li class="group"><a href="options_basic_print.html">Printer Stylesheet</a></li>
</ul>
Thanks!
Kenny