Here is the sample site:
http://tronitech.brettatkin.com/solutions.asp
In IE 7, the drop-downs aren’t working correctly (really not at all). The do show on hover but that is about it.
This is my first attempt at working through creating CSS only drop-menus, so I’m welcome to all feedback and criticism about the code in general.
Thanks
Brett
A fix is very easy:
On line 266 of
styles.css:change:
#nav ul lito#nav > ul > li. Problem fixed.That is, replace the descendant combinators (a space:
) with direct child combinators (>). This prevents thelis inside the submenus from having the problematicfloat: left, while still allowing the startinglis to keepfloat: left.