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