My navigation menu is functioning well and has an appealing design.
The HTML structure for the menu is as follows:
<div id="menubar">
<div id="welcome">
<h1><a href="#">Cedars Hair <span>Academy</span></a></h1>
</div><!--close welcome-->
<div id="menu_items">
<ul id="menu">
<li class="current"><a href="index.html">Home</a></li>
<li><a href="index.html">The Salon</a></li>
<li><a href="index.html">Testimonials</a></li>
<li><a href="index.html">Courses</a></li>
<li><a href="index.html">The Staff</a></li>
<li><a href="index.html">Contact Us</a></li>
</ul>
</div><!--close menu-->
</div><!--close menubar-->
I am now looking to modify it to include a dropdown under 'The Salon' with an option for 'Hair Cut':
<li><a href="#">The Salon</a>
<ul>
<li><a href="#">Hair Cut</a></li>
</ul>
</li>
While I know this can be achieved using CSS, my concern lies in the complexity due to existing CSS styles associated with the aforementioned divs (menubar, welcome, menu_items etc.). Could you suggest the simplest method to implement a dropdown menu?