[WSG] Submenu bug in FireFox...

2004-07-29 Thread Mark Harwood
Right, im playing with an Elastic Menu system built apon Nested ulli's Now i know this would be frowned apon probelry! But im open to a better way in doing it? Anyway, back to my bug! On FireFox when you click on the Nav and it opens the SubNav it Throws the Parents li Items out to the side!

Re: [WSG] Submenu bug in FireFox...

2004-07-29 Thread Mordechai Peller
Mark Harwood WebMail wrote: Right, im playing with an Elastic Menu system built apon Nested ulli's Now i know this would be frowned apon probelry! But im open to a better way in doing it? Semantically, a nested ul is correct. Anyway, back to my bug! On FireFox when you click on the Nav and it

Re: [WSG] Submenu bug in FireFox...

2004-07-29 Thread Mark Harwood
On Thu, 29 Jul 2004 14:44 , Mordechai Peller [EMAIL PROTECTED] sent: ul {float : left;} means ALL UL's are floated left, including the nested ul. The nested ul is floated in it's parent li. The solution: ul ul {float : none;} Thank you thats the bit i missed!! Yeah i was thinking of doing it