Results 1 to 2 of 2

Thread: Accordian tyoe UL Menu

  1. #1
    Join Date
    Oct 2006
    Posts
    92
    Thanks
    6
    Thanked 0 Times in 0 Posts

    Default Accordian tyoe UL Menu

    I have a menu on my page that is on the left had side and there is a parent and a child item

    menu is like so

    Home
    About
    Products
    -- Product Catagory One
    -- Product Catagory Two
    -- Product Catagory Three
    Services
    -- Service Catagory One
    -- Service Catagory Two
    -- Service Catagory Three
    Contact

    I would like to make the sub menu items to be invisable untill clicked
    and once clicked they would scroll into view not just appear

    One more thing if the user happens to click on products
    and then desides to click on services i would like to make the
    products sub menu to disappear

    the code for the menu is as follows

    Code:
    <div id="menu-cont">
    		<div class="navmenu">
    		<ul>
    		<li><a href="index.htm" class="current">Home</a></li>
    		<li><a href="about.htm">About</a></li>
    		<li><a href="products.htm">Products</a></li>
    		<ul>
    			<li><a href="#">Product Cat One</a></li>
    			<li><a href="#">Product Cat Two</a></li>
    			<li><a href="#">Product Cat Three</a></li>
    		</ul>
    		<li><a href="services.htm">Services</a></li>
    		<ul>
    			<li><a href="#">Service Cat One</a></li>
    			<li><a href="#">Service Cat Two</a></li>
    			<li><a href="#">Service Cat Three</a></li>
    		</ul>
    
    		<li><a href="contact.htm">Contact</a></li>
    			</ul>
    		</div>

    Please and Thank you

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    You may want to simply look at the following page, specifically, the nested menu option: http://www.dynamicdrive.com/dynamici...ordionmenu.htm

  3. The Following User Says Thank You to ddadmin For This Useful Post:

    Mehok (04-21-2008)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •