Menu Bar does not work in IE (still not resolved)

I was long awaiting the 1.6 version of spry to get help with
the menubar, but I'm still having the same problem. The submenu
does not function correctly in Internet Explorer. I posted a month
ago and still haven't received any feedback on how to correct this
error. In IE, the submenus are not positioned correctly and are
pushed 100 pixels or so above the menubar. Any help out there? Any
recommendations if spry cannot deliver?
Here is an example:
http://wildroserealty.net/newWebsite/
Here is my css:
http://wildroserealty.net/newWebsite/CSS/wildrose_main.css
Here is my menubar css:
http://wildroserealty.net/newWebsite/SpryAssets/SpryMenuBarHorizontal.css
Thanks Spry Squad

I started seeking an answer to my horizontal menu query a few
months back and didn't receive any answers that helped me out. I
thought I might share an alternative solution that worked for me
for any of you out there who might still be struggling with the
menubar (I considered it the bane of August, September, and
October).
Rich0828 was right on! Don't get frustrated over the menubar
because the Spry Squad is still working on all of the IE Hacks. I
started looking for a free solution on google and everything I read
about seemed to have a lot of problems with it. It became evident
that paying someone to be my tech support would be worth it to me.
I ended up choosing the Orange Menubar (you can change it any
color) on
http://f-source.com/ which I found
through the Dreamweaver Exchange. I payed $30 for it and have been
VERY happy. I even went out and celebrated to bury my IE qualms (at
least for now). I like this menubar because, like the Spry menubar,
its readable by search engines. I prefer this new design a lot more
because it has a cleaner, sharper look to it. I also like that I
can change the opacity of the menubar so that the glossy look of
the buttons blend in better with my navigation menu.
I did have a few questions for the tech support, and they
responded within a few hours and everything was working.
You can view this new menubar which I decided on at:
www.wildroserealty.net
Good luck. If any of you have questions about my situation,
feel free to reply to this thread. Don't give up on yourself! And
may the Spry squad find a solution soon (which will save all of us
some $$).

Similar Messages

  • Spry menu bar does not appear over flash elements in I.E. 8

    Hi, My spry menu bar does not appear over any flash elements in I.E. 8. Every other browser it workd fine. Can anyone please help? Thanks
    A link to one of the pages is http://www.innervisionfilms.tv/pages/showreel.html
    My spry code is
    @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: none;
        font-size: 100%;
        cursor: default;
        width: auto;
        font-family: Verdana;
        color: #000033;
        font-weight: bold;
    /* 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: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 130px;
        float: left;
    /* 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: 1020;
        cursor: default;
        width: 8.2em;
        position: absolute;
        left: -1000em;
    /* 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: 8.2em;
    ul.MenuBarHorizontal ul li a
        width: 10.2em;
        background-color: #4E81B4;
        left: auto;
        background-image: none;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position: absolute;
        margin: -5% 0 0 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: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        border-top-width: 0px;
        border-right-width: 0px;
        border-bottom-width: 0px;
        border-left-width: 0px;
        border-top-style: solid;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
        border-top-color: #FFFFFF;
        border-right-color: #FFFFFF;
        border-bottom-color: #FFFFFF;
        border-left-color: #FFFFFF;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        display: block;
        cursor: pointer;
        background-color: #EEE;
        padding: 0.5em 0.75em;
        color: #000033;
        text-decoration: none;
        font-family: Verdana;
        font-size: 11px;
        background-image: url(../pagelayout/menubg.jpg);
        font-weight: bold;
        border: 1px solid #003366;
    /* 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: #003366;
        color: #FFFFFF;
    /* 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: #003366;
        color: #FFFFFF;
    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(../pagelayout/menubg.jpg);
        background-repeat: repeat;
    /* 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(../homepagelayout/greenbarbg.jpg);
        background-position: 95% 50%;
        background-repeat: repeat;
    /* 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: inline;
            f\loat: left;
            background: #FFF;

    I still can't find a solution. Changing the parameter wmode:transparent works for .swf files but .flv files do not have the option to add this parameter. If you add it in the script manually it doesn't do anything. Any help would be greatly appreciated. I cn't find any solution online.
    Thanks,
    Adam

  • FN key menue bar does not appear on Satellite R

    PROB-1: i bought this Lap before 4 months.. suddenly my FN key is not working... that is, if i press FN key, menu bar does not POP OUT, but if i hold FN key and press F7 or F6, the screen brightness is changing.
    I got this in Saudi Arabia, the key board also have Arabic font (which i really dont want).
    PROB-2: If i want to type "@", i have to press ' Shift+" ' instead of ' Shift+2 '
    pls help on these..

    Hi
    Prob 1:
    The FN button row which appears at the top of the display is controller by Flash Card Support Utility.
    Go to All Programs -> Toshiba -> Flash Cards and restart this software.
    If this does not help, then reinstall this tool.
    Prob2:
    I assume you keyboard language setting does not match with the keyboard layout.
    Simply change the keyboard language setting.
    I assume you will need to change this to English (United state)
    Greets

  • My menu bar does not appear at the top of my homepage on a brand new 27" iMac only when i pull up an app. this does not allow me to shut down my mac when all apps are closed nor does it all me to use finder. any help would be awesome

    My menu bar does not appear at the top of my homepage on a brand new 27" iMac only when i pull up an app. this does not allow me to shut down my mac when all apps are closed nor does it all me to use finder. any help would be awesome

    Press the escape (esc) key to exit full-screen mode.

  • Menu bar does not show on screen?

    Menu bar does not show on screen.

    I'll assume your profile is wrong (10.4.7?) and you are using Lion in full screen mode.  If so click the double arrows in the menu bar which should appeare if you mouse into the menu bar area.
    If that isn't the case then are you zoomed in?  Contol + fingler drag on mouse (or scroll wheel) zooms in or out (see Mouse preferences, Screen Zoom, look at the little movie).

  • Menue bar does not drop sometimes when in Safari Mountain Lion

    When in Safari on Mountain I have had a few occassions where the menue bar will not drop down to close Safari

    I have this problem too!

  • Finder menu bar does not show up always

    From time to time (maybe once a month) when I boot up my MBP, Finder Menu bar at the top of the screen does not automaticaly show up. Only basic screen color.In order to bring that bar (with apple icon in the left top corner and little magnifying glass,airport symbol etc in the right top corner) I have to click once at the top of the screen where that bar is suposed to be.Than it shows up and everything runs smoothly afterwords. At the same time my Dock works fine from the beginning. It does not bother me too much because everything else works perfectly fine and it happens not so often. I only wonder if anybody had a similar problem or if that is a problem at all. Thanks!

    My own and my girlfriens's new 13" MBPs (10.6.2) have done this a couple of times. I really haven't bother to look into the case because I assumed that it's just a bug as it was happening on both machines. As a matter of fact, I haven't seen it happening for a while.

  • Menu bar does NOT appear in FULLSCREEN APPS

    Hey everyone,
    I recently updated to Mountain Lion from Snow Leopard on release day. Although I am relatively unfamiliar with the full screen apps Lion + ML have started enabling I seem to be having an issue.
    I started using fullscreen mode with Safari and noticed I lost my menu bar. I soon found that moving my cursor up to the top of the screen made the bar come back into place.
    HOWEVER, about a day ago it stopped working! Is there something that has happened to stop this from working? It's quite annoying as once I'm in fullscreen mode I cannot leave it without hitting the esc button, which closes my browser down losing my websites and work I have done.
    This problem also persists in other apps that I fullscreen, I merely used safari as an example because its one I would like to use most in fullscreen.
    Is there any other way I can make the menubar show up again? And is there a reason moving my cursor to the stop of the screen no longer brings up the menubar?
    I am running ML on Mid 2009 MBP OSX 10.8
    Thanks in advance for any help you can provide

    The final solution to solve all problem I reported is to uninstall Air Display. This solved my question.
    After unintalling Air Display, dragged icon now can be dropped as expected just after reboot. Hot corner can work as expected just after reboot. Menu bar can be shown properly in full screen mode when mouse was moved to the top as expected just after reboot.
    Without uninstall, the workaround is to wait for an hour for my ML to be stablized. It means that after about one hour, those problem would then be resolved automatically, but it means I cannot reboot my ML if do not want to wait.

  • Battery Status Indicator (in menu bar) does not update

    I've recently noticed that the battery status indicator in the menu bar gets "stuck," and won't update. I can force it to update by disabling and re-enabling it, or by changing the view style, but if I leave it alone, it won't change, even across sleep/wake cycles.
    Any ideas?

    Actually, the problem disappeared after a reboot. I reboot so infrequently, I didn't even consider that as a solution, but something else caused me to need to reboot, and after that, the indicator works fine.
    Still no idea what caused it to get stuck in the first place, but for now, it's better.
    Good luck!

  • BB10 browser - Hovering over Menu bar does not unfold items (Playbook can do this, but not Z30)

    Using the browser to access https://www.voip.ms/m/index.php
    On a Playbook, the menu items on the top bar unfold and allow user to select sub-menus. 
    On a Z30, nothing happens when hovering over the menu items.
    The BB10 touch browser seems to miss a pointer feature : browser doesn't recognize the hover option in the voip.ms menu.

    BB10 devices do not recognize the "hover" feature as you've described it, this is true. I don't have a PlayBook and cannot comment on any features available to it. However, you should be able to click for options where available. I know PC browsers have this feature but despite the BB10 browser being one of the most advanced mobile browsers, it does not incorporate this feature. All I can say is, if you can't do it on a BB10 browser, chances are you cannot do it on ANY other mobile browser.
    Cheers.  
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • Rolling the mouse over the menu bar does not activate menu bar drop downs

    Anyone one familiar with menu bars and drop downs not activating when the mouse is rolled over them? This happens consistently afterrunning Photoshop it seems. The menus only work if they are clicked. Webpage links do not display the hand and also have to be clicked. Additionally, Photoshop selections (marching ants) do not activate.

    The standard behavior of Macintosh Menus is to do nothing when the mouse is rolled over them. They drop down once you click somewhere, then roll over a similar item, such as click and release on the apple menu, then rollover the File Menu or the Edit menu.

  • Menu Bar does not show icons

    My MacBook was acting up so I took out the battery because it wouldn't let me shut down or restart. When I put the battery back in and turned it back on all of the icons on the right side of my menu bar were missing. There is no bluetooth, battery life, internet signal, date, or time icon on the right side, nothing. I went to "system prefrences" then "date and time" only the window feature for time is working. I have no idea how this happened and I cannot find an article under troubleshooting that covers this. Please post if you have any ideas or suggestions.

    Choose Go to Folder from the Finder's Go menu and enter /System/Library/CoreServices/ as the folder's path. When this folder has appeared, double-click the item SystemUIServer inside and check whether the icons appear.
    If so, add this application to the list of login items for your user account in the Accounts pane of System Preferences.
    If not, choose Go to Folder and provide ~/Library/Preferences/ as the location. Move the file named com.apple.systemuiserver.plist inside this folder to the desktop and try opening the SystemUIServer again.
    (17921)

  • Spry Menu Bar does not show up in Mozilla Firefox 1.0.7

    I been building a spry horizontal menubar in Dreamweaver.
    Everything was working well in both Firefox and IE. Then it
    disappear in Firefox. The menubar appears in
    www.brycelevancushing.com
    Bryce leVan Cushing Web
    site
    Could someone help solve this mystery?

    Many many moons ago, a work-experience student, decided to play a trick on me. Knowing that I often used MS Excel, he decided to change the default text colour to white. On a white background, the information that I tried to enter into the spreadsheet did not show up, making me think that I had a virus or worse on my computer.
    Have a look at the following exerpt from your SpryMenuBarHorizontal.css
    /* 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: none;
        background: #FFF;
        left: 0px;
        text-decoration: none;
        width: auto;
        padding: 0px;
        z-index: 1010;
    Good luck,
    Gramps

  • If we have the original ipad, how can you open a pdf in the ibooks? the menu tap bar does not appear at the top of the screen like the new ipad2. Any suggestions?

    If we have the original ipad, how can you open a pdf in ibooks? The menu bar does not pop up like it does on the ipad2. Any suggestions?

    Are you in Safari and you want to copy them to iBooks, or you in a different app ? Assuming that you are using Safari, then if I open a PDF on my first gen iPad in Safari and tap on it, I then get a pop-up bar at the top of it with the 'Open In' options.

  • Messages menu status does not match Buddy List window

    Using Messages in Yosemite, the status of my logged-in buddies listed in the menu bar does not match the status of my buddies in the Buddies window. I have buddies listed in the window that are not in the menu bar and vice versa.
    It seems that the menu bar list may not be updating correctly--when I try to message them, the chat window sometimes says they are "idle"
    MacBook Pro, 15", early 2011
    10.10.1
    Core i7
    8GB ram
    Buddies are using Messages as well as google talk.
    Thanks!

    Hi,
    Sending Feedback to Apple rarely (if ever) gets a response. At iChat 3 release with OSX 10.4 there was an issue that I gave feedback for.
    I also happened to mention the issue in the Lounge Area for "New Technical Issues" and the Host linked to the iChat forums there were back then contacted me about it and had me run some stuff for Engineering.  (that's a possible once in 10 years like you).
    iChat 5 in Snow Leopard
    The process on how to display a particular Set of Buddies is different (as you will see with the next pic)
    However I only see those "Available" in a full sense in the Menu Drop Down.
    Idle (Amber) is technically Available + (a second level of Available if you like)
    Yosemite/Messages 8+  (Mavericks is also listed as Messages 8)
    The whole thing as I have several Accounts Logged in does fill my screen top to bottom.
    These pics agree with your first paragraph.
    I will let my MacBook Pro go Idle  as it has one Account in iChat there that is not on my iMac and see if the Menu Drop down changes when it does.
    I will have to wait for this to happen.
    7:57 PM      Wednesday; November 26, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

Maybe you are looking for