Spry Menu Issues - Not functioning correctly in Microsoft IE

Hi there,
I am fairly new to web design and dreamweaver.
I have constructed a simple page that I am happy with complete with Spry Menu which again I am happy with.  However this spry menu works perfectly in firefox but for some reason on IE my spry menu does not function correctly and goes all over my page!
CORRECT VERTICAL MENU - FIREFOX -
INCORRECT MENU FUNCTION! - IE -
See my CSS Code below for the spry menu in questions - if this helps -
@charset "UTF-8";
/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
LAYOUT INFORMATION: describes box model, positioning, z-order
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
    margin: 0;
    padding: 0;
    list-style-type: inherit;
    font-size: 100%;
    cursor: default;
    width: 1000px;
    height: 47px;
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
    z-index: 1000;
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: medium;
    position: relative;
    text-align: center;
    cursor: pointer;
    width: 318px;
    float: left;
    height: auto;
    background-color: #000000;
    border: 2px solid #FFF;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: auto;
    cursor: default;
    width: auto;
    position: absolute;
    left: -1000em;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
left: auto;
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
    width: 318px;
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
    position: absolute;
    margin-top: -5%;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 95%;
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
    left: auto;
    top: 0px;
DESIGN INFORMATION: describes color scheme, borders, fonts
/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
    border: 1px solid #FFFFFF;
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #bcbdb9;
    padding: 0.5em 0.75em;
    color: #FFF;
    text-decoration: none;
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    background-color: #000;
    color: #FFF;
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
    background-color: #000;
    color: #FFF;
SUBMENU INDICATION: styles if there is a submenu under a given menu item
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
    background-image: url(SpryMenuBarDown.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    background-image: url(SpryMenuBarRight.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    background-image: url(SpryMenuBarDownHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    background-image: url(SpryMenuBarRightHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
BROWSER HACKS: the hacks below should not be changed unless you are an expert
/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
    position: absolute;
    z-index: 1010;
    filter:alpha(opacity:0.1);
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
    display: inherit;
    f\loat: left;
    background: #FFF;
** I am also using Windows 8 and Dreamweaver CS6 If this helps.**
Any help with this would be fantastic as I need this to be resolved before the end of the week. 
Any further information required please message me to find out.
Thanks,
Jamie

THE CONFLICT IS BETWEEN YOUR DOCUMENT CSS AND THE SPRY CSS.
It is because the <li> and <a> TAGS have been styled and therefore OVERRIDDEN THE SPRY CSS.
Use CLASS TAGS e.g.  <li class="anyclass"> and <a class="anyclass">
and STOP USING THE <a> TAGS.
N.b. you may need to unstyle any <a> or other TAGS that conflict with the SPRY CSS.  (However it's best to start over knowing that styling basic tags may affect the SPRY CSS).

Similar Messages

  • Spry menu formatting not working correctly in DW CS6

    Hello,
    I've installed  a spry menu but the formatting is not working correctly.
    The hover colour works correctly but the selected menu item  colour does not change. Only the home menu tab remains coloured.
    Please can anyone suggest what might be wrong?
    Thank you.
    Robbieg

    Ah. OK. I've found the problem. On the every page  I've got a class=current attribute to the <a> tag for the  home menu item.
    Now, since this menu code is in a template as part of the top part of every page, it means that this is also included on all the other pages of the site. How do I get this attribute  to be different on each page that uses the template?
    Thank you.
    Robbieg

  • Touchpad not functioning correctly

    I have an Envy 17,(Windows 7) and the touch pad is not functioning correctly.  I have had it do similar things in the past but they seemed to fix themselves after a few minutes, but this time it just keeps messing up. I CAN click on programs to open them but once in a program, I cannot click on anything. I CAN click on links when online, but they always open in a new tab and when I attempt to click on a new tab, the tab completely closes out. Once a program is opened, I cannot close/minimize/maximize it using the touchpad, nor can I access File/Edit/other menu options.  I also cannot click in a typing field. (I'm using a different computer to do this post)I can barely move the curser around.  It jumps or freezes up.  I move it up about an inch and as soon as I take my finger off the touchpad the curser goes back to where it originally was.  I've tried restarting the computer but that hasn't worked.  I've attempted tried some other things as well, but since I cannot click on anything with the touchpad and can barely move the curser, I am at a loss for what to even try.  Everything was working fine this morning.  I literally got up from the computer, made breakfast and sat back down and it was all glitched up.  No one had touched it...  I had not recently downloaded anything nor have I made any updates to the computer.  Thank you, Neyephe

    Hello there, It sounds like there is a hardware issue with your touchpad, which you need to replace. As stated in the warranty, the touchpad may only be replaced by an Authorized Service Provider. If you cannot find any places that are authorized, you may contact the HP Support Center via phone and arrange a date for your touchpad to be replaced. In the meantime, you can buy a USB mouse to navigate your laptop. Best wishes getting your issue fixed! Best Regards,Shawn

  • I believe my firefox is viewing some websites on my laptop in formats that are used for cellular devices. Sites like facebook, sports illustrated, yahoo are not functioning correctly but certain sites work fine.

    sits such as facebook, yahoo, and sports illustrated do not function correctly on firefox but they do on my internet explorer. I believes its somehow set itself into the same format used for cellular devices... My JSU.edu page says somethin about it being in (portal mode). It is also a different format now that normal.

    Hi @TheBigGiggle ,
    Thank you for visiting the HP Support Forums and Welcome. I have read your thread on your HP ENVY TouchSmart 17 Notebook PC and a keys not functioning correctly. Here is a document on cleaning the keyboard.
    I would start with air on the keys as sometimes debris can cause this issue.
    Here is a link to uninstall the keyboard. In the device manager have you uninstall all that is listed in keyboards, restart the computer after uninstalling, it should reinstall automatically and resolve any issues with the keyboard.
    Here is a link to keyboard troubleshooting.
    Here is a fix from Microsoft that might help.
    Let me know how this goes.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • CUC Cluster not functioning correctly

    Saw a few posts and documents relating to this issue but they don't match up perfectly with my particular scenario.  Basically, the customer could no longer log into the Unity Pub so we had to do a rebuild as nothing was working.  The sub took over as it should, a co-worker rebuilt their Pub and the split-brained effect never went away.  In, fact they arn't communicating at all almost a week later.  Here are the things I've checked so far:
    DB Replication: (from the subs perspective)
    DB and Replication Services: ALL RUNNING
    Cluster Replication State: Only available on the PUB
    DB Version: ccm9_1_1_10000_11
    Repltimeout set to: 300s
    PROCESS option set to: 1
    Cluster Detailed View from XXXXX-UCXN02 (2 Servers):
                                    PING            CDR Server      REPL.   DBver&  REPL.   REPLICATION SETUP
    SERVER-NAME     IP ADDRESS      (msec)  RPC?    (ID) & STATUS   QUEUE   TABLES  LOOP?   (RTMT)
    XXXXX-UCXN01    10.200.9.21     0.575   Yes     (2)  Connected   0      match   Yes     (2)
    XXXXX-UCXN02    10.103.9.22     0.067   Yes     (3)  Connected   0      match   Yes     (2)
    (Pubs perspective)
    DB and Replication Services: ALL RUNNING
    DB CLI Status: No other dbreplication CLI is running...
    Cluster Replication State: BROADCAST SYNC Completed on 1 servers at: 2015-01-23-17-19
         Last Sync Result: SYNC COMPLETED  603 tables sync'ed out of 603
         Sync Errors: NO ERRORS
    DB Version: ccm9_1_1_10000_11
    Repltimeout set to: 300s
    PROCESS option set to: 1
    Cluster Detailed View from XXXXX-UCXN01 (2 Servers):
                                    PING            CDR Server      REPL.   DBver&  REPL.   REPLICATION SETUP
    SERVER-NAME     IP ADDRESS      (msec)  RPC?    (ID) & STATUS   QUEUE   TABLES  LOOP?   (RTMT) & details
    XXXXX-UCXN01    10.200.9.21     0.084   Yes     (2)  Connected   0      match   Yes     (2) PUB Setup Completed
    XXXXX-UCXN02    10.103.9.22     0.663   Yes     (3)  Connected   0      match   Yes     (2) Setup Completed
    Clusters look good:
    admin:show network cluster
    10.200.9.21 xxxxx-ucxn01.xxxxx.local xxxxx-ucxn01 Publisher authenticated
    10.103.9.22 xxxxx-ucxn02.xxxxx.local xxxxx-ucxn02 Subscriber authenticated using TCP since Fri Jan 23 16:42:15 2015
    Server Table (processnode) Entries
    10.200.9.21
    10.103.9.22
    Successful
    Overall, they are in that split-brained mode and working with CUCM but I'm not sure why it hasn't corrected itself.  Both the pub and sub have been restarted to no effect....  Any ideas on why this is still happening?  I am in the process of pulling logs.
    Error shown by CUC at the Admin page after login:
      Communication is not functioning correctly between the servers in the Cisco Unity Connection cluster. To review server status for the cluster, go to the Tools > Cluster Management page of Cisco Unity Connection Serviceability.

    Check NTP. Ensure Unity is synced to a stable good stratum source - preferably stratum 1,2 or 3.
    On your version, time slips can cause memory leaks on servm. This in turn affects cluster communication.
    You said you couldn't access Pub. Pub would have been on high CPU. Another symptom of this issue.
    You can confirm by looking at the core dumps - 'utils core active list'
    See if there are any servm core dumps. Most likely the server is affected by CSCug53756 / CSCud58000
    HTH
    Anirudh

  • Horizontal Spry Submenu does not appear correctly in IE

    I am building a site in Dreamweaver CS5 and my spry submenus do not appear correctly in IE.   I work on a mac, but have been checking my work on a pc.   I have tried looking through other posts and have made some corrections (I at least got the submenus to appear vertically instead of laterallly in IE) but still have two problems:
       * The submenus are shifted to the right rather than aligning under the menu headings
       * One one menu (Attorneys) the submenus appear above, rather than below, the menu heading
    Here is the website and I am really hoping someone can help!  I've spent several hours trying to figure this out with no luck.
    http://webdesign.protas.org/olg/English/olg%20eng.html

    1. Especially IE takes offence to the DOCTYPE declaration not being on the first line
    2. There is no end tag for the HEAD section
    3. Your use of the Library Item for the menubar is not correct
    Please have a look here http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwebdesign.protas.org%2Folg%2FEngl ish%2Folg%2520eng.html
    Gramps

  • Elements 12 Organizer not functioning correctly uploading files and viewing.

    Elements 12 Organizer does not function correctly.  It will upload new files but will not allow me to view correctly or edit.  I attempts to reconnect files.  When I attempt to do this manually it states that the files are already there.  Very frustrating and Adobe representatives will not assist me.

    Windows Media Player 12 is installed.
    Windows Media Player
    Version 12.0.9600.16384
    Operating System
    Version:
    6.3.9600
    System Locale:
    en-GB
    Service Pack:
    0.0
    User Locale:
    en-GB
    Build Lab:
    9600.winblue_gdr.131030-1505
    Geo ID:
    United Kingdom
    Type:
    Workstation
    DRM Version:
    11.0.9600.16384
    Architecture:
    x86
    Indiv Version:
    2.9.0.1
    Processors:
    8
    Video codecs are:
    Type
    Name
    Format
    Binary
    Version
    ICM
    Microsoft YUV
    UYVY
    msyuv.dll
    6.3.9600.16384
    ICM
    Intel IYUV codec
    IYUV
    iyuv_32.dll
    6.3.9600.16384
    ICM
    Cinepak Codec by Radius
    cvid
    iccvid.dll
    1.10.0.12
    ICM
    Microsoft YUV
    UYVY
    msyuv.dll
    6.3.9600.16384
    ICM
    Toshiba YUV Codec
    Y411
    tsbyuv.dll
    6.3.9600.16384
    ICM
    Microsoft YUV
    UYVY
    msyuv.dll
    6.3.9600.16384
    ICM
    Intel IYUV codec
    IYUV
    iyuv_32.dll
    6.3.9600.16384
    ICM
    Microsoft RLE
    MRLE
    msrle32.dll
    6.3.9600.16384
    ICM
    Microsoft Video 1
    MSVC
    msvidc32.dll
    6.3.9600.16384
    ICM
    proDAD Codec
    pDAD
    DMO
    Mpeg4s Decoder DMO
    mp4s, MP4S, m4s2, M4S2, MP4V, mp4v, XVID, xvid, DIVX, DX50
    mp4sdecd.dll
    6.3.9600.16384
    DMO
    WMV Screen decoder DMO
    MSS1, MSS2
    wmvsdecd.dll
    6.3.9600.16384
    DMO
    WMVideo Decoder DMO
    WMV1, WMV2, WMV3, WMVA, WVC1, WMVP, WVP2, VC1S
    wmvdecod.dll
    6.3.9600.16384
    DMO
    Mpeg43 Decoder DMO
    mp43, MP43
    mp43decd.dll
    6.3.9600.16384
    DMO
    Mpeg4 Decoder DMO
    MPG4, mpg4, mp42, MP42
    mpg4decd.dll
    6.3.9600.16384
    Windows Media Player plays .mps files without problems
    Quick Time Player v7.7.4 installed (at suggestion from adobe premiere organiser). Will not play .mps files
    Adobe Premiere 12 organiser will not play .mps files, editor will play and edit them.
    Media Player Classic not installed

  • I am backing up to my time capsule for the first time. It has been stuck on 348mb of 20.1 gb for days. Is this normal or is the machine not functioning correctly?

    I am backing up to my time capsule for the first time. It has been stuck on 348mb of 20.1 gb for days. Is this normal or is the machine not functioning correctly?

    That seems to be OK via WLAN!
    It ist better to do the first backup via LAN-cable.

  • I cannot activate my phone because my keyboard is not functioning correctly.  How do I bypass my password to activate my phone

    I cannot activate my phone because my keyboard is not functioning correctly.  How do I bypass my password to activate my phone

    Are you being asked for your Apple ID and password in order to activate the phone?
    ~Lyssa

  • Title & Menu Buttons not working correctly on remote control/ set top player but work in preview.

    Title & Menu Buttons not working correctly on remote control/ set top player but work in encore preview. This only happens for a Blu ray project. When a user presses the menu button it should go to the previous menu they were on but it goes to the main menu. When they press the title button they should go to the main menu but it doesn't do anything. My DVD projects work as expected.I've tried creating a new "test" project with different footage and still get the same undesirable results.
    Overrides grayed out and set to "not set" for timelines and menus.Project settings and build are set to blu ray. Also I've noticed when I preview a Bluray project the preview window shows a red colored disc next to the Title button when viewing the timelines and green when playing the menus but not so for a DVD project it displays red if motion menus and or timelines are not rendered/encoded. I'm not using motion menus and all the media is encoded according to the project specs.
    I've searched this forum but couldn't find the answer. Any help or redirects to a solution would be appreciated. Working with CS5. Thanks.

    I found out on my Samsung Blu ray player the remote has a tools button on it that brings up audio, angle, chapter selection etc.and also title selection which is actually the menus and the timelines unfortunately. It's not as easy or direct as last menu selected but it's a workaround at least. I also plan on using a pop up menu. I'll let you know.

  • Navigation Drop Down Menu Does Not Appear Correctly with Internet Explorer.

    Website was designed with Dreamweaver CS5 on a Mac. The navigation drop down menu does not appear correctly with Internet Explorer. When you mouse over a navigation option that has a drop-down menu, the drop-down portion appears on top of the first level. Hope someone can help me out.Thanks!
    http://www.catchaghosttoursofkansas.com

    Hi,
    and you should then iron out this minor inaccuracy, which I found in your source code, for example here:
    <div align="center"><a class="MenuBarItemSubmenu" href="hays.html">HAYS</a>
            <ul>
              <li><a href="hayswalkingtour.html">Walking Tour</a> </li>
              <li><a href="forthays.html">Fort Hays</a></li>
            </ul>
    All your "first" entries have to show a '#", like this:
          <div align="center"><a class="MenuBarItemSubmenu" href="#">HAYS</a>
            <ul>
              <li><a href="hayswalkingtour.html">Walking Tour</a> </li>
              <li><a href="forthays.html">Fort Hays</a></li>
            </ul>
          </div>
    after that you can link to the individual subgroups. See here e.g. (screenshots from my German DW):
    Hans-G.

  • Spry tabbed panel not displaying correctly in IE , in other browsers it is fine, what is the fix

    Spry tabbed panel not displaying correctly in IE , in other browsers it is fine, what is the fix

    As an FYI: Adobe discontinued developing the Spry framework last year.  And Spry was removed from DW CC.  You can keep using Spry if you wish, but most of us have switched to other solutions that work better in IE10 and Touch Screens.
    Nancy O.

  • Hyperlinks Are Not Functioning Correctly

    I have a problem with the some of the hyperlinks in my
    WebHelp Pro project not functioning correctly once the project is
    compiled. What happens is that when I click on a hyperlink the text
    doesn't change from blue to purple. Not all the hyperlinks on a
    page are affected; some may work while others do not.
    When I look at the HTML code, I see two different things
    happening, and both things may not occur in the same code:
    1) In some documents the code reads "a visited=0000ff." The
    value should be 800080.
    2) In other documents "font color=blue" is being added to the
    HTML code for a particular hyperlink. Other hyperlink code in the
    same document may be unaffected.
    I have checked the font color in the editor to make sure it
    was set to "automatic" before I created the hyperlink. I removed
    the hyperlinks altogether, recompiled, then opened the document
    back up and recreated the hyperlinks. The problem still exists.
    Every document in my project is using the default.css style sheet.
    I use the same paragraph style throughout the project, both on the
    links that work correctly and those that do not.
    Has anyone ever experienced this problem? And if so, do you
    know the fix? I could manually edit the HTML code before publishing
    my project, but that is just a bandaid fix.

    The hyperlink color is controlled by the style sheet. I edit
    my style sheets in a text editor. Make sure you clear your browser
    history before testing the color changes.
    FWIW, I like my links to stay blue--I usually have the color
    change to purple in hover just to indicate that what is moused is
    indeed a viable link.

  • Widgets not functioning correctly on tablet layout

    I've noticed that my new ipad is showing my tablet layout of muse website, but some of the widgets are not functioning correctly. I have tried a few widgets for the tablet layout and it has resulted in problems.
    Please take a look at www.littlesouth.com for an example of the current error.

    Hi
    I tried to check the site in tablet and it works fine.
    Can you please elaborate as which specific widgets are not working ? and are they on home page or any particular page within the site.
    Thanks,
    Sanjit

  • ICal not functioning correctly

    First of all, I have been using Entourage which I sync with iCal so that I can sync my calendar with my iPhone. I would like to discontinue using Entourage but for some reason, iCal is not functioning correctly. First, the calendars do not appear in the left hand window and I cannot seem to figure out how to get them to appear.
    Second, when iCal opens off of the dock, there is nothing showing on the calendar at all. When I change the view (i.e., month, to week) then all of my scheduled events appear. When I go back to the original view, everything appears. When I attempt to sync with MobileMe, I get a message at the website that "a script is not responding." I don't know whether the two are related or not.
    Any help?????

    I have the same problems. Also, I can't enter a "multi day' event, the system tells me there is a fault and it cannot synch. I was automatically updated to MobileMe, but the system isn't performing as promised.

Maybe you are looking for

  • Vendor payment through app

    hi sap gurus, my client requirement relating to APP. vendor name : Mr  X , invoice no - 1 , invoice  value - 100000 inr invoice booked for vendor : Mr - X   in f-43 client requested to pay  third party   - Mr y through app (check) with the help of al

  • Multilingual support for BI Publisher reports

    Hi all, We are currently using BI Publisher APIs to generate reports. Our aim is to enable multi-language support for these reports.The translatable strings based on the locale are stored in xliff files. Using jedit, UTF-8 encoding is chosen as the d

  • How to select rows in adf faces table

    Hi guys im new to adf faces .I created a adf faces table with some data.My task is to select one row and if i click tht row, the data of tht row will be displayed in an input text fileds.How can i select a row in a adf faces table and give actions to

  • In Photoshop Elements 11, the editor workspace has stopped working and will not open.

    In Photoshop Elements 11, the editor workspace has stopped working and will not open.

  • Color differences between Import preview and image in Library

    Hi folks, when I try to import photos from my D200, theys show up in the bnright colors they should during the import dialog. But once they have been imported into the Library, they are all pale - no matter if it's NEF or DNG. I do not apply Auto-Ton