Results 1 to 4 of 4

Thread: Chrome CSS Drop Down Menu Firefox problem

  1. #1
    Join Date
    Jan 2008
    Posts
    15
    Thanks
    10
    Thanked 0 Times in 0 Posts

    Default Chrome CSS Drop Down Menu Firefox problem

    Script: Chrome CSS Drop Down Menu : http://www.dynamicdrive.com/dynamici...rome/index.htm

    Hi, i got a problem with the Drop Down Menu in firefox, works perfectly in IE.

    This is how its suppose to look like :



    This is how it looks like in firefox :



    Anyone know how to get rid of the space and how to get rid of the "v"??

    Here's the link to the website : http://home.euphonynet.be/euphoria/N...ite2/index.htm
    Last edited by WillAllon; 01-11-2008 at 02:28 AM.

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    The "v" is intentional actually in browsers that support it (Firefox included). It's used to indicate that a menu item contains a drop down. You can remove/edit it in the .css file:

    Code:
    .chromestyle ul li a[rel]:after{ /*HTML to indicate drop down link*/
    content: " v";
    /*content: " " url(downimage.gif); /*uncomment this line to use an image instead*/
    }

  3. #3
    Join Date
    Jan 2008
    Posts
    15
    Thanks
    10
    Thanked 0 Times in 0 Posts

    Default

    Thank you, that worked like a charm, any idea about the height tho?

  4. #4
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    I'm using FF2.x, and don't see the extra line at the very top. In any event, you may wish to add a valid doctype to cover some other potential subtle CSS rendering issues, in IE though.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •