Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with navigational menu in Firefox

Status
Not open for further replies.

dthomas31uk

Technical User
Oct 19, 2003
107
GB
Hi, Guys

Having problems with my menu link when viewed in Firefox.


If you rollover the staff leasing link all the sub menus are displayed in ie, but for some strange reason they do not all appear in firefox.

Any ideas guys????

I know when I validate the code I get 3 warnings stating missing <li> tag, but dont know how to fix it to achieve what I want it to do when viewed in IE

Cheers
 
Your best best is to fix the markup validation and then get it working in both browsers.

The markup you have at the moment is very invalid, so don't expect it to work in any broswer.

Dan



Coedit Limited - Delivering standards compliant, accessible web solutions

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
What I see is this:
Code:
<li><a href="#">Plant Operators</a></li>
  <ul>
    <li><a href="#" class="subSub" title="Styling forms">Log Your Details</a></li>
  </ul>
This way, your subSub is not part of the Plant operators li, it is just hovering in some mid-air there. First try changing it to this:
Code:
<li><a href="#">Plant Operators</a>
  <ul>
    <li><a href="#" class="subSub" title="Styling forms">Log Your Details</a></li>
  </ul>
</li>
And listen to Dan.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top