Results 1 to 4 of 4

Thread: Chrome CSS Drop Down Menu - Problem

  1. #1
    Join Date
    Jan 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question Chrome CSS Drop Down Menu - Problem

    Script: Chrome CSS Drop Down Menu
    http://dynamicdrive.com/dynamicindex1/chrome/index.htm

    Hi,

    I installed this menu with no problem. But when you view this menu on Firefox and Opera, a "v" appears to the right of each tab with a drop down menu. It doesn't appear in IE. Is there any way to get rid of it, or what causes it? Other than that the script works great.

    http://dynamicdrive.com/dynamicindex1/chrome/index.htm

    Last edited by userjs; 01-13-2006 at 02:35 AM.

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    That's actually a feature. Open up the chromestyle.css file you are using with this script in a text editor and find this:

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

    Code:
    #chromemenu ul li a[onMouseover]:after{ /*HTML to indicate drop down link*/
    content: "";
    /*content: " " url(downimage.gif); /*uncomment this line to use an image instead*/
    }
    and the Opera and FF versions will look as plain as the IE one.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Jan 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Thumbs up

    Thanks for your help John! That did it. I didn't even notice that it was in the CSS.

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

    Default

    Errr and I typed a response in the duplicate thread before noticing jscheuer1's nice response. That's why you should never cross post. See posting rules here: http://www.dynamicdrive.com/forums/rules.htm

    Deleting the other 2 dup threads...

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
  •