I want to learn how to do a drop down menu, and have found the following basic outline in a book. I have tried inserting my html pages in the “x” areas, but only get an ul list, not a drop down.
html>
<head>
<title>Drop2</title>
</head>
<body>
<div id=“listcontainer” class=“clearfix”>
<ul>
<li><a href="#">Customers</a>
<ul><!-- drop down menu items -->
<li><a href="#">Our Services</a></li>
<li><a href="#">FAQ</a></li>
<li><a href="#">Sign Up</a></li>
<li><a href="#">Support</a></li>
</ul>
</li>
</div>
</body>
</html>
The example in the book of course repeats the above with multiple categories, but I cannot seem to get the single one shown above correct.
I basically want the category to be articles, and the drop downs the names of the articles. Hope I am stating my problem correctly.