|
Posted by kaibo on 01/12/06 19:27
i'm trying to create a horizontal tab navigation bar with a submenu below
it. i've finally got everything lined up in firefox, and even managed to get
the main menu to center in IE. the only problem i have is that i cannot
figure out why the submenu will not 'drop down' below the main menu in IE.
(it is working in firefox)
http://www.monkeymynd.com/testcr/index.php?location=products
any suggestions are greatly appreciated.
also, i originally had this set up another way where the sub menu was
actually contained (within) the main menu. in this case, the sub items were
left aligning to the selected main menu item. this looked nice, but i can't
seem to get this example working without moving the sub menu outside of the
main menu's <ul>. here is the original html code to compare against the link
above.
note: this was designed with another .css template, i just wanted to show
how the submenu is wrapped withing the main.
<div id="header">
<ul id="primary">
<li><a href="index.php?location=home">Home</a></li>
<li id="current"><a href="index.php?location=products">Products</a></li>
<li><a href="index.php?location=services">Services</a></li>
<li><a href="index.php?location=download">Download</a></li>
<li><a href="index.php?location=support">Support</a></li>
<li><a href="index.php?location=contact">Contact</a></li>
<li><a href="index.php?location=about">About</a></li>
<li></li>
<ul id="secondary">
<!--<li><a href="index.php?location=products">Overview</a></li>-->
<li><a
href="index.php?location=products&sublocation=modules&modid=members">Modules
</a></li>
<li><a
href="index.php?location=products&sublocation=billing">Billing/EFT</a></li>
<li><a
href="index.php?location=products&sublocation=pricing">Pricing</a></li>
<li><a
href="index.php?location=products&sublocation=keytags">Keytags</a></li>
</ul>
</ul>
</div>
Navigation:
[Reply to this message]
|