Suckefish Dropdown Doesnt work in Firefox!

Discussion in 'CSS' started by BrooklynPhd, Dec 27, 2007.

  1. #1
    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...
     
    BrooklynPhd, Dec 27, 2007 IP
  2. monosulpa

    monosulpa Guest

    Messages:
    37
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    what do you mean with "nothing is displayed" ? because i tested it in FF and IE and in both looks good for me
     
    monosulpa, Dec 27, 2007 IP
  3. JOGS_DEV

    JOGS_DEV Peon

    Messages:
    136
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #3
    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):
     
    JOGS_DEV, Dec 27, 2007 IP
  4. BrooklynPhd

    BrooklynPhd Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    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?
     
    BrooklynPhd, Dec 28, 2007 IP
  5. Stomme poes

    Stomme poes Peon

    Messages:
    3,195
    Likes Received:
    136
    Best Answers:
    0
    Trophy Points:
    0
    #5
    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?
     
    Stomme poes, Dec 28, 2007 IP