I've "almost" got my menu set-up, but I'm having a little problem on coding the nested UL's & LI's. Please see attached image of what I want. Also have a look at my code, am I forgetting to close or add a tag somewhere?
**I'm only concerned with the "Folder 2" menu option in the code below. It should appear as a "2 level fly-out menu when drilled down". Ex; Main menu name=Folder 2 - which opens up a drop down menu, and when you scroll over the items there, a fly out menu appears with menu options. That's all it needs to do.
url: www dot american webmakers dot com / eagle / practice dot html
Thanks in advance!
<div id="menu" class="ddsmoothmenu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Clinic Info</a>
<ul>
<li><a href="#">Location</a></li>
<li><a href="#">Hours</a></li>
<li><a href="#">Facility</a></li>
<li><a href="#">Appointments</a></li>
<li><a href="#">New Patients</a></li>
</ul>
</li>
<li><a href="#">Services</a>
<ul>
<li><a href="#">Vision Exams</a></li>
<li><a href="#">Contact Lenses</a></li>
<li><a href="#">Laser Surgery</a></li>
<li><a href="#">Vision Therapy</a></li>
</ul>
</li>
<li><a href="doctors.html">Doctors</a></li>
<li><a href="#">Folder 2</a>
<ul>
<li><a href="#">Sub Item 2.1</a></li>
<li><a href="#">Folder 2.1</a>
<ul>
<li><a href="#">Sub Item 2.1.1</a></li>
<li><a href="#">Sub Item 2.1.2</a></li>
<li><a href="#">Folder 3.1.1</a></li>
</ul>
</li>
</ul>
<li><a href="#">Info Center</a>
<ul>
<li><a href="#">Glaucoma</a></li>
<li><a href="#">Allergies</a></li>
<li><a href="#">Dry Eyes</a></li>
<li><a href="#">Macular Degeneration</a></li>
<li><a href="#">Cataracts</a></li>
<li><a href="#">Childrens Vision</a></li>
<li><a href="#">Lasik Info</a></li>
</ul>
</li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
Respectfully,
Len



Reply With Quote

Bookmarks