Results 1 to 10 of 10

Thread: ddsmoothmenu and Firefox issue

  1. #1
    Join Date
    Jul 2010
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default ddsmoothmenu and Firefox issue

    1) Script Title: ddsmoothmenu

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...dsmoothmenu.js

    3) Describe problem: The submenus jump way down in Firefox for the Mac only, leaving a gap. A screen shot is attached. Works fine in all other browsers and platforms. Any idea why this might be happening.

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

    Default

    I don't have access to a Mac unfortunately. For those that do have, what's the link to the problem page on your site?
    DD Admin

  3. #3
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    Also, does this happen only on your page or does it actually happen on the demo page as well?
    That will determine if there is a problem with how you configured it or if there is a bug in the script.
    My mac is several thousand miles away right now since I'm out of the country, or I'd test it myself.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  4. #4
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default

    This http://www.dynamicdrive.com/dynamici...smoothmenu.htm works for me in ff 3.6.3.

    Link to your page, and menu if a different one?
    Corrections to my coding/thoughts welcome.

  5. #5
    Join Date
    Mar 2007
    Posts
    28
    Thanks
    7
    Thanked 0 Times in 0 Posts

    Default

    Related issue, kind of.... problem in firefox with ddlevelsmenu.js

    Versatile "IFRAME SHIM" feature to ensure drop down menus appear above browser controls such as SELECT menus.

    enableshim: true - works in IE but not in firefox.

    The result in firefox is that the drop-down menu goes behind a flash search box.


    suggestions?
    thank you
    Teri

  6. #6
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    tmate ! many times this problem can can be solved by adding wmode="transparent" inside the embed tag for the flash object. But it is impossible to know without a link to your site.

  7. #7
    Join Date
    Mar 2007
    Posts
    28
    Thanks
    7
    Thanked 0 Times in 0 Posts

    Default

    ah....
    well.... here it is ....

    http://www.silvercitymuseum.org/FAQs.html

  8. #8
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    Hi unfortunately I can't load the flash object on a local copy when using internet explorer so I can't be sure if this will work, but I suggest that you try changing this:
    Code:
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"
     width="250" height="53" id="CoffeeCup" align="middle">
    <param name="movie" value="search.swf"/>
    <param name="quality" value="high" />
    <param name="scale" value="noscale" />
    <param name="salign" value="lt" />
    <param name="bgcolor" value="#ffffff" />
    <embed src="search.swf" quality="high" bgcolor="#ffffff" width="250" height="53"
     name="CoffeeCup" scale="noscale" salign="lt" align="middle" type="application/x-shockwave-flash"
     pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>
    To this
    Code:
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"
     width="250" height="53" id="CoffeeCup" align="middle">
    <param name="movie" value="search.swf"/>
    <param name="quality" value="high" />
    <param name="scale" value="noscale" />
    <param name="salign" value="lt" />
    <param name="bgcolor" value="#ffffff" />
    <param name="wmode" value="transparent" />
    <embed src="search.swf" quality="high" bgcolor="#ffffff" width="250" height="53"
    wmode="transparent"  name="CoffeeCup" scale="noscale" salign="lt" align="middle" type="application/x-shockwave-flash"
     pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>
    and see if that helps.

  9. The Following User Says Thank You to azoomer For This Useful Post:

    tmate (07-14-2010)

  10. #9
    Join Date
    Mar 2007
    Posts
    28
    Thanks
    7
    Thanked 0 Times in 0 Posts

    Default

    yes indeed.... that fixed the problem....
    works in firefox and even better in IE than before
    thank you very much
    Teri

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

    Default

    tmate, in the future, please start your own thread when asking a question, instead of replying to someone else's. This just keeps questions organized.
    DD Admin

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
  •