New Zenner
- Join Date:
- Apr 2007
- Posts:
- 6
- Plugin Contributions:
- 0
How do I link up my navigation... This seems like it should be easy
I'm doing a navigation setup similar to the one used as the top nav at apple.com where it requires 1 background image for all the link states. I didn't really consider this until I went in to implement this structure... but how am I supposed to link it up? I need to link each list item to it's category(I will have a specific # of categories so it wont be dynamic), then once each category is hovered on I need the subcategories to display within their own list...which I'm assuming will have to be dynamic... It is easy for me to make look the way I want in html and css but I'm totally lost now on the php and linking this up. I've searched all over the forums and found nothing of use. I set up my top navigation in a list structure like so:
<div id="mainNav"> <ul> <li class="panel1"><a href="index.php"></a></li> <li class="panel2"><a href="#"></a></li> <li class="panel3"><a href="#"></a></li> <li class="panel4"><a href="#"></a></li> <li class="panel5"><a href="#"></a></li> <li class="panel6"><a href="#"></a></li> <li class="panel7"><a href="#"></a></li> <li class="panel8"><a href="#"></a></li> </ul> </div>