Results 1 to 3 of 3

Thread: ddsmoothmenu - problems with IE

  1. #1
    Join Date
    Sep 2009
    Location
    High Wycombe, UK
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Thumbs down ddsmoothmenu - problems with IE

    1) Script Title: ddsmoothmenu

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...smoothmenu.htm

    3) Describe problem:

    I have an implementation of this used as the language chooser on this page (hover over the "English" language flag):
    http://www.hardingweb.net/collyers/en/index2.html

    I find that this is fine in FF7, Chrome14, Safari 5.1 (all on Windows) but when I try IE (IE9 actually), the whole page bounces down and up again when the mouse hovers over the top menu item "English".

    I notice that this seems to have been reported about 3 months ago but no solution (and no example page) so I have shown my example page above.

    I'd be really grateful for hints, ideas or solutions.

    Many Thanks
    Nigel

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

    Default

    Inside ddsmoothmenu.css, you currently have the rules pertaining to the shadow of the menu disabled:

    Code:
    /* ######### CSS for shadow added to sub menus  ######### */
    /*
    .ddshadow{ /*shadow for NON CSS3 capable browsers*/
    /*position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    background: silver;
    }
    
    .toplevelshadow{ /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
    /*opacity: 0.8;
    }
    */
    It should be enabled. Replace the above with the default code:

    Code:
    .ddshadow{ /*shadow for NON CSS3 capable browsers*/
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    background: silver;
    }
    
    .toplevelshadow{ /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
    opacity: 0.8;
    }
    DD Admin

  3. #3
    Join Date
    Sep 2009
    Location
    High Wycombe, UK
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Red face

    You nailed it, that was exactly the problem.

    Thank you so much!

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
  •