Im going insane trying to figure this out. The page works completely fine in IE but when i check it in Firefox, nothing is displayed. http://www.azulpartners.net/Eternity/DJ_Eternity.html Im very new to CSS so if the script is terrible please dont kill me...
what do you mean with "nothing is displayed" ? because i tested it in FF and IE and in both looks good for me
you missed a little thing in your css to make this dropdown work in FF. li:hover , li.over ul { display: block; clear:left; } Code (markup): should be: li:hover ul, li.over ul { display: block; clear:left; } Code (markup):
Thanks so much! i stared at it for days and couldnt find that! there does seem to be another problem however. I aligned everything in the second column of the dropdown myself and it looks fine in IE but is slightly off in FF. Everything with the "col2" class in the dropdown was assigned mesurements in "em", would this be a problem in firefox or is there something else at fault?
FF and IE have different default paddings and margins on lists (and everything else). I forget, does the suckerfish have margin:0 padding:0 on the ul as well?