Spry Menu Background image not working in IE

I have created a website using Dreamweaver CS5 and having trouble with my Spry bar in internet explorer. It looks great in chrome, firefox, etc, but in IE there is a white background instead of my background image and the submenus have moved WAY right.. can someone help me!
SpryMenuBarHorizontal.CSS is below:
@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: 800px;
/* 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: center;
cursor: pointer;
width: 160px;
float: left;
background-image: url(file:///E|/MAIN_website/images/menu_background.jpg);
ul.MenuBarHorizontal li a{
color:#FFF;
ul.MenuBarHorizontal li li{
background-image: url(../images/menu_background1.jpg);
ul.MenuBarHorizontal li li a{
color:#000;
ul.MenuBarHorizontal li li li{
background-image: url(file:///E|/MAIN_website/images/index_06.jpg);
ul.MenuBarHorizontal li li li a{
color:#FFF;
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover,
ul.MenuBarHorizontal a.MenuBarSubmenuVisible{
color:#33CCFF;
/* 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: 160px;
/* 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: 1px solid #CCC;
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
display: block;
cursor: pointer;
padding: 0.5em 0.75em;
color: #FFF;
text-decoration: none;
font-family: Cambria, Arial, sans-serif;
font-size: 14px;
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
color: #FFF;
text-decoration: underline;
/* [disabled]background-image: url(file:///E|/MAIN_website/images/menu_background.jpg); */
/* 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: #33C;
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: inline;
f\loat: left;
background: #FFF;

Because I can't see your site and code in context, I will make a guess that this style is throwing off your alignment:
/* 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: center;
cursor: pointer;
width: 160px;
float: left;
background-image: url(file:///E|/MAIN_website/images/menu_background.jpg);
Remove the text-align:center; from the above style.
Instead of centering your list element (li), center the link text (a) itself:
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
display: block;
cursor: pointer;
padding: 0.5em 0.75em;
color: #FFF;
text-align: center;
text-decoration: none;
font-family: Cambria, Arial, sans-serif;
font-size: 14px;
If you don't want the submenu text to be centered, do this immediately after the previous style:
ul.MenuBarHorizontal ul a {text-align: left;}
The sub-submenus are also set up by default to be jogged a bit to the right. You can adjust this style:
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
position: absolute;
margin: -5% 0 0 95%;
that causes sub-submenus to fly out to the right of the submenus to which they attach.
Submenus themselves (not the sub-submenus) should fall directly under the top menu item by default, once you remove the text-align: center; on the li item (above).
Beth

Similar Messages

  • PHOTO BOOTH EFFECTS WITH BACKGROUND IMAGES NOT WORKING

    JUST TO KNOW HOW THE IMAGES BACKGROUND WORKS ON PHOTO BOOTH
    EXAMPLE PARIS THERE IS A SPACE TO PLACE THE FACE AND IS NOT WORKING.
    TKS.
    MARIA

    Just a quick update with the Zip files.
    I've downloaded 'The Unarchiver' and that will unzip fine. it seems to be an issue with apples 'Archive Utility' over network I suppose?

  • Virtual directory in region header background-image not working

    I created a region with a region header that needs the background image to repeat vertical as well as horizontal, so the class was changed to include repeat instead of repeat-x.
    So i replaced class t20RegionHeader with this:
    .t20RegionHeader {
    vertical-align: center;
    font-weight: normal;
    font-size: 9pt;
    font-weight: bold;
    color: #343434;
    background-image: url(/i/hdingBar-BG.gif) ;
    background-repeat: repeat;
    text-align: left;
    padding: 1px 8px;
    white-space: nowrap;
    border: 1px solid #a3bed8
    I put "/i/" in the background-image's url bacause I am referencing an image in the virtual directory but it didn't work. Please help!!
    I have it on APEX.ORACLE.COM:
    Workspace: RGWORK
    User: TESTER
    Password: test123
    Application: 41237     CreativeTest
    Page: 11
    APEX: Application Express 4.0.2.00.07
    DB: Oracle 10.2.0.4
    Robert
    http://apexjscss.blogspot.com

    sect55 wrote:
    I created a region with a region header that needs the background image to repeat vertical as well as horizontal, so the class was changed to include repeat instead of repeat-x.
    So i replaced class t20RegionHeader with this:
    .t20RegionHeader {
    vertical-align: center;
    font-weight: normal;
    font-size: 9pt;
    font-weight: bold;
    color: #343434;
    background-image: url(/i/hdingBar-BG.gif) ;
    background-repeat: repeat;
    text-align: left;
    padding: 1px 8px;
    white-space: nowrap;
    border: 1px solid #a3bed8
    <tt>center</tt> is not a valid value for <tt>vertical-align</tt>: should be <tt>middle</tt>.
    Firebug reports "Failed to load the given URL" for <tt>/i/hdingBar-BG.gif</tt>. Does this image exist at that location? (Are you talking about apex.oracle.com or your local environment? If it's the latter, check that the <tt>hdingBar-BG.gif</tt> image file exists at the location specified by the virtual directory <tt>/i/</tt> and that the permissions are set to make it readable.)

  • Joptionpane Background Image-- Not working

    Can anyone please say, why I dont get a background image in my JOptionpane? I have put the image in -- package RboJComponents.
    * @version 1.0 16/07/08
    * @author Anees Ahamed
    * description: Customized OptionPane.
    package RboJComponents;
    import java.awt.Component;
    import java.awt.Graphics;
    import java.awt.HeadlessException;
    import java.awt.Image;
    import javax.swing.ImageIcon;
    import javax.swing.JOptionPane;
    public class RboJOptionPane extends JOptionPane
            * set the message box title as "MyBooo"
           private static final String TITLE = "MyBooo";
            * @param parentComponent
            * @param message
            * @throws HeadlessException
           public void paintComponent(Graphics g)
           super.paintComponent(g);
           final ImageIcon imageIcon = new ImageIcon("/final.jpg");
           Image image = imageIcon.getImage();
           g.drawImage(image,0,0,this);
           public static void showMessageDialog(Component parentComponent,
                   Object message) throws HeadlessException {
                   showMessageDialog(parentComponent, message, null,INFORMATION_MESSAGE);
           public static void showMessageDialog(Component parentComponent,
                           Object message, String title, int messageType)
           throws HeadlessException {
                   showMessageDialog(parentComponent, message, TITLE, messageType, null);
           public static void showMessageDialog(Component parentComponent,
                   String message) throws HeadlessException {
                   showMessageDialog(parentComponent, message, TITLE,JOptionPane.INFORMATION_MESSAGE);
           public static void showWarningDialog(Component parentComponent,
                   String message) throws HeadlessException {
                   showMessageDialog(parentComponent, message, TITLE,JOptionPane.WARNING_MESSAGE);
           public static void showErrorDialog(Component parentComponent,
                   String message) throws HeadlessException {
                   showMessageDialog(parentComponent, message, TITLE,JOptionPane.ERROR_MESSAGE);
           public static int showConfirmDialog(Component parentComponent,
                   Object message) throws HeadlessException {
                   return showConfirmDialog(parentComponent, message, TITLE,JOptionPane.YES_NO_OPTION);
    }Please help.
    Regards,
    Rony

    possibly because an optionPane contains a number of panels/other components which (unless opaque false) would cover the image

  • 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

  • Menu background image size

    Hi...if I follow this link http://docs.info.apple.com/article.html?path=iDVD/6.0/en/17.html and the instructions for preparing menu background images. My images still get cropped. Does anyone know the real sizes that will fit perfectly?
    From the Apple link:
    "If you want your images to fit the DVD window exactly, use an image-editing application to crop and resize the images to the following dimensions:
    720 x 540 pixels for standard video in NTSC format
    854 x 480 pixels for widescreen in NTSC format
    768 x 576 pixels for standard video in PAL format
    1024 x 576 pixels for widescreen in PAL format"
    Many thanks in advance

    Shingy,
    Today there is an update to iDVD (as well as other iApps) that you should make.
    After doing the update this is what I found:
    I'm not sure if the things I'm seeing are a result of the update, but after updating I have further defined the problem.
    The problem now seems to be in figuring out the proper background size when using a widescreen theme converted to 4:3
    Widescreen as widescreen and 4:3 as 4:3 work as expected in PAL.
    So, if you stick with the originally discussed image sizes for PAL you will be OK AS LONG AS you don't try to use a widescreen theme as a 4:3 theme. (I didn't try using a 4:3 theme as widescreen.)

  • Spry elements and rollovers not working in IE (all)

    After updating my DW CS5.5 last week my rollovers and spry menu elements don't work in IE (any version). Everything worked well before update. It is not the code (ran it through validator). I tried just insert the elements to the empty page and nothing works. I really need this to resolve as my deadline is in 2 weeks. Is it any way how I coudl return to the previous version? My version now (after update) is Version 11.5 Build 5366.
    I forgot to mention that also I cannot connect to Adobe Browser Lab from DW since update ( I can do it from website) - it doesn't recognize my Adobe ID.
    Thank you to everybody who coudl give me some info
    Daniela

    Upgrading should not be the cause of the problem.
    If you want us to help you, please post a link to your site so that we can be privy to the same info that you have.
    Gramps

  • Spry tool tip does not work in template or child pages within an editable region. Why not?

    Ok. so I am getting pretty frustrated. I take the time to learn how to use CSS and to create a template page for a Contractor Site (www.ContractorInsurance.net). The idea is to create a page that I can use for different classes of Contractors...right?
    Then I get all happy about being able to insert ToolTip onto pages to help the user. Great!
    LIfe to turn to Sorrow after nearly five hours of searching for a "eeking" answer.
    So what good does it do to have an Editable region to update if we cannot have the flexibility to insert a tool tip on child pages?  Ok so the fast solution is to what... Have a question mark image, insert another apDiv, name it toolTip_Not and provide it with a show=hide behavior?
    RRRRRrrr...
    This really sucks not being able to find a solution within a reasonable amount of time.

    I have tried thank you. However...it is still not working.
    www.ContractorInsurance.net/course_of_construction.php
    The error message is "Making this change would require code that is locked by a template translator"
        Re: Spry tool tip does not work in template or child pages within an editable region. Why not?
        created by altruistic gramps in Spry Framework for Ajax - View the full discussion
    If you have a look at the following simple document with a tooltipTooltip trigger goes here.
    Tooltip content goes here.
    you will notice that a couple of lines have been placed in the HEAD section of the document. When using DW templates, the HEAD section is usually not editable, hence the error mesaage. By default, your template should have an editable region in it just before the closing tag. It looks like this: <!-- TemplateBeginEditable name="head" > <! TemplateEndEditable --> Dreamweaver should be able to find that editable region and insert the
    <script> tag there automatically. Because you don't have an editable region like that in the <head>, open the master template, and paste the code above just before the closing </head>
    tag. Gramps
    Edited to remove personal data

  • Css background image stopped working despite no code change

    My background image was working fine. Then, without me changing the code, it stopped working. The URL I referred to exists and ends in .jpg.
    When I first load Thimble the background shows up for a split second, then disappears again.
    Here is the code
    background-color:#051c1c;
    background-image:url("http://www.rosesandrattlesnakes.com/cssbg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
    color:white;
    font-family:'Trebuchet MS', sans-serif;
    text-align:center;
    padding:0;
    I tried removing the quotation marks. That didn't fix it. Tried removing www. That didn't fix it. Tried making the link https. That didn't fix it.
    Also, hints doesn't work, whether the checkbox is ticked or not.
    Gotta say Thimble kinda sucks. Sorry

    Hello,
    I am glad to hear that your problem has been resolved.
    If you have not already, please mark this thread as solved by marking the solution.<br>
    This will help other users experiencing similar problems find help faster and more efficiently.
    I hope you continue using our products and thank you for contacting Mozilla Support.

  • SOME FUNCTIONS BEHIND MENU/TOOLBAR ITEMS NOT WORKING

    In application the toolbar button 'new record' and 'next record' are not
    working. The associated menu items also not work.
    When copying same set of binaries to another directory with another forms
    listener then everything is ok. So the problem is not in the fmx's.
    Most menu/toolbar items do work only those two have problems.
    Any suggestions?

    The problem was probably due to a connection error.
    Nothing to do with designer or headstart.
    It is solved

  • I have website that on the Home page and the home only. When opened in Chrome or Safari the last 3 menu buttons do not work.

    I have website that on the Home page and the home only. When opened in Chrome or Safari the last 3 menu buttons do not work. But work fine in Explorer and Firefox.Its weird. The site is baystatewiring.com see if you have the same problem. Does anyone have a idea?

    Code errors could explain the problem.  You're missing a closing </div> tag for container.
    [Invalid] Markup Validation of http://baystatewiring.com/index.html - W3C Markup Validator
    Try changing your link CSS from display: inline to display: inline-block.
    Nancy O.

  • What to do if the menu key is not working?

    a month after i got the phone my menu key is not working properly. sometimes it works and sometimes it dont. i already tried restoring my phone and all the the possible troubleshooting but still the same. what do i have to do?. my phone still under warranty and the company i purchased the phone said they are sending an email from apple yet ive been waiting for a month already and still there is no reply

    Go to settings>icloud>storage and back up>back up
    after that preform a restore by going to
    general>reset>erase all content and settings
    this will delete everything except the enabled stuff on icloud.
    You can view whats enabled by going to icloud in settings.

  • Command-Z keyboard menu shortcut is not working

    Hi
    Command-Z keyboard menu shortcut is not working in my profile i.e.,my login. But able to execute the same keyboard shortcut in other profile. ALl the other menu keyboard shortcuts are working fine. Have tried deleting Universal Access, HotKeys,Finder Preference plist,. from ~/Library/Preference/ folder. But of no use. This shortcut is not working for any of the app.
    Thnks

    ok will try that and will let you know.. But the undo keyboard shortcut works well in other user profile.

  • My 'Menu' button will not work. How can I fix this?

    The menu button will not work.
    Is there anything I can do myself to fix this problem?
    It works occasionally, but mostly does not work.
    Thanks

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • The menu button is not working on my iPod Nano

    I cannot get back from anywhere. Once I have seleceted a track to play, the menu button does not work so that I cannot get back to all music or to choose other options such as radio. It does not make a click sound. It works occaisionally (once a week). Any ideas? Anyone had this problem before?

    Hey Nick Norway,
    Thanks for the question. Let’s see if we can isolate your issue further to determine if it is hardware related. Have you attempted to reset your iPod? If not, definitely give that a go:
    How to reset iPod
    http://support.apple.com/kb/HT1320
    If you are unable to reset your iPod, please attempt to restore it with iTunes.
    Restoring iPod to factory settings
    http://support.apple.com/kb/ht1339
    If your issue persists after the restore, your iPod may need to be serviced. The following link should help you get started with the process. Included, you will find information on topics such as warranty, service pricing, and express replacement service.
    Apple - Support - Service Answer Center
    http://www.apple.com/support/ipod/service/faq/
    Thanks,
    Matt M.

Maybe you are looking for

  • Office 2013 Win 7 hanging

    Hi guys, I have a user running Office 2013 on Win 7 32 bit, randomly when opening excel files, excel will say not responding but it will eventually open the files, this can take 5 mins, the only thing I can see in the event log is the software protec

  • How to Print two pages in smartforms

    Hi All, How to create two different pages in smartforms.In my requirement the first page contains Table data in main window and in second page only the hard coded desription should be printed containg instructions,but the second page is mandatory aft

  • Some pictures in photo stream are sideways, how do I rotate them?

    I imported all my new photos into one event and rotated them as needed.  Now I see them in photo stream and some are rotated and some are not.....what is going on?  How can I have all pictures face the correct direction? Thanks for your help!

  • Financial Reporting prompt-Show only members as defined by security filter?

    Hello all, Maybe another simple question but i have been unable to perform this task so far- We have created a security filter against the Company dimension in essbase, assigned it to a user, and that works ok. We have a report that prompts the user

  • Saving file paths (like a bookmark gets saved?)

    i seem to be doing a lot of restoring of data (for instance i had to restore my notes recently) and i am realizing that it would be uber helpful to be able to save file paths. right now i highlight the folder that i need, then i hightlight the one ab