Link to home
Start Free TrialLog in
Avatar of rowfei
rowfei

asked on

CSS navigation menu with sub menu

Hi,
I am using the following codes for my nagivation menu. Now I would like to have sub menu under each nagivation menu. For example, if user click CSS Library then sub menu appears, such as CSS Library A, CSS LIbrary B.

http://www.dynamicdrive.com/style/csslibrary/item/image-marker-list-menu/

I would like to know what codes should I modified, just like attached scrrenshot of other website.

Thanks
Navigation.gif
Avatar of sajay_j
sajay_j
Flag of India image

If I got your problem clear;

You need to edit the <li> values;

<li><a href="http://www.dynamicdrive.com/" >Dynamic Drive</a></li>
<li><a href="http://www.dynamicdrive.com/style/" >CSS Library</a></li>
<li><a href="http://www.javascriptkit.com/jsref/">JavaScript Reference</a></li>
<li><a href="http://www.javascriptkit.com/domref/">DOM  Reference</a></li>
<li><a href="http://www.cssdrive.com">CSS Drive</a></li>
<li><a href="http://www.codingforums.com/" style="border-bottom-width: 0">Coding Forums</a></li>      

Hope it would crack... Regards
Sajay.
Avatar of rowfei
rowfei

ASKER

What should I edit the <li> values? Please help.
ASKER CERTIFIED SOLUTION
Avatar of sajay_j
sajay_j
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rowfei

ASKER

Thanks, but how can I hide all submenu under products? I would like those submenu appears until user click? For example, if user click "Product," then A-Z, Order Info, ... appears.

Thanks
SOLUTION
Avatar of brundo
brundo
Flag of Finland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rowfei

ASKER

Thanks, all