|
#1
|
|||
|
|||
|
drop down menu
Hello,
I use the simple template and I am trying to turn one of the links in the navigation bar into a drop down menu. Do I have to turn all the links in the nav bar into an unordered list or can I create an unordered list under the one link that I want to do that to. I have been having trouble with this. I cannot seem to make the second level choices dissappear. Any help would be great.Thanks, Jonathan |
|
#2
|
||||
|
||||
|
The best way is a nested unordered list:
Code:
<ul>
<li><a href="#">link</a>
<ul>
<li><a href="#">link</a></li>
</ul>
</li>
</ul>
|
| Post Reply |
| Thread Tools | |
|
|