Sub menu positions after IE7 hack

I have recently solved with the help of these forums the
position of my Spry sub menus in IE7,(very grateful indeed) but I
cannot get the "sub sub menu" to sit any further away from it's
parent than this in IE7 ( please view :
www.shedloadcreative.co.uk)
can anyone offer any guidance. The way I would like it to look can
be viewed in Safari, Firefox etc.
Hopefully someone out there can tell me what I'm doing
wrong!!!
Here is the hack if it sheds any light :
@media screen {
* html ul.MenuBarHorizontal ul
position: relative;
float: left;
display: inline;
margin: 0px -1000px -1000px 0px;
* html ul.MenuBarHorizontal
{position: static;
*:first-child+html ul.MenuBarHorizontal ul
position: relative;
float: left;
margin: 0px -1000px -1000px 100px;
*:first-child+html ul.MenuBarHorizontal
{position: static;

Sorry this is the hack code I'm using:
/* 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;
/* 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: #000;
@media screen {
* html ul.MenuBarHorizontal ul
position: relative;
float: left;
display: inline;
margin: 0px -1000px -1000px 20px;
* html ul.MenuBarHorizontal
{position: static;
*:first-child+html ul.MenuBarHorizontal ul
position: relative;
float: left;
margin: 0px -1000px -1000px 20px;
*:first-child+html ul.MenuBarHorizontal
{position: static;

Similar Messages

  • Sub Menu alignment in IE7

    On my test website www.psweb-test4.com
    On the nav bar "about us" sub menu
    I am having a real issue that I cannot seem to resolve. In IE7 I am trying to reposition/realign the background element I think this is ul.MenuHorizontal ul (this is highlighted in red background) it shows different/OK in Safari and IE8. Can you help please as this is very frustrating.

    Have a look at the answer to your post in the other forum http://forums.adobe.com/message/3419549#3419549
    Gramps

  • Help with Horizontal Sub Menu Position

    I am building a horizontal spry menu, the default is set so that the submenu displays vertically.  However, I would like the submenu to display horizontally as well, so that it is flush with the bottom of the main menu.  Does anyone know how to do this?

    add this style rule to your page:
    <style type="text/css">
    <!--
    ul.MenuBarHorizontal ul {
        width: auto;
    -->
    </style>
    Ben

  • Positioning of spry sub menu in IE8

    Hi - can anyone help with an IE8 issue concerning Spry? I have created a menu here:
    http://www.clinicafiore.co.uk/jan2012/indexJan2012_1.html
    In all the browsers I have tested (Chrome,FF,Safari,Opera) on Mac and PC platforms it works fine. In IE8 it doesn't (hooray).
    The critical attribute is:
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
      left: 189px;
      top: 0;
    I.e. I have pushed the sub-menu out 189px when visible and set the top value to 0 thinking this would align the sub-menu with the top of the main menu item.
    Is there a better way to do this to cover all browsers or do I need some conditional code for IE?
    Really.really grateful for any help
    For good measure here's all the  html & the css
    HTML
    <div id="leftNav">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="#" title="ageing body" class="MenuBarItemSubmenu">AGEING BODY</a>
            <ul>
              <li><a href="#">Ageing D&eacute;collet&eacute;</a></li>
              <li><a href="#">Ageing Hands</a></li>
              <li><a href="#">Ageing Neck</a></li>
            </ul>
          </li>
          <li><a href="#" class="MenuBarItemSubmenu">ageing face</a>
            <ul>
              <li><a href="#">Ageing Lips</a></li>
              <li><a href="#">Double Chin</a></li>
              <li><a href="#">Downturned Mouth</a></li>
            </ul>
          </li>
          <li><a class="MenuBarItemSubmenu" href="#">Item 3</a>
            <ul>
              <li><a class="MenuBarItemSubmenu" href="#">Item 3.1</a>
                <ul>
                  <li><a href="#">Item 3.1.1</a></li>
                  <li><a href="#">Item 3.1.2</a></li>
                </ul>
              </li>
              <li><a href="#">Item 3.2</a></li>
              <li><a href="#">Item 3.3</a></li>
            </ul>
          </li>
          <li><a href="#">Item 4</a></li>
        </ul>
      </div>
    CSS
    ul.MenuBarHorizontal
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 0.9em;
              cursor: default;
              width: auto;
    /* 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: 0.9em;
              position: relative;
              text-align: left;
              cursor: pointer;
              width: 189px;
              float: left;
              font-weight: bold;
              text-transform: uppercase;
    /* 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: 189px;
              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: 189px;
              top: 0;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
              width: 189px;
              font-weight: normal;
              text-transform: 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: 1px solid #CCC;
              font-weight: normal;
              text-transform: none;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
              display: block;
              cursor: pointer;
              background-color: #aee56b;
              padding: 0.5em 0.75em;
              color: #333;
              text-decoration: none;
              border-bottom-width: thin;
              border-bottom-style: dotted;
              border-bottom-color: #FFF;
    /* 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: #999999;
              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: #999999;
              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(SpryMenuBarRight.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(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 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 may be misinterpreting what it is that you want, partly because I thought we were talking horizontal menu and you point out a vertical menu.
    I think that you used the vertical menu as an illustration to shopw how you want the submenu alligned. If that is correct, then please copy an paste the following into a new document and see the result in an IE8 browser.
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link href="http://labs.adobe.com/technologies/spry/widgets/menubar/SpryMenuBarHorizontal.css" rel="stylesheet">
    <style>
    ul.MenuBarHorizontal ul {margin-left: 8em; margin-top: -35px;}
    </style>
    </head>
    <body>
    <ul id="MenuBar1" class="MenuBarHorizontal">
      <li><a class="MenuBarItemSubmenu" href="#">Item 1</a>
        <ul>
          <li><a href="#">Item 1.1</a></li>
          <li><a href="#">Item 1.2</a></li>
          <li><a href="#">Item 1.3</a></li>
        </ul>
      </li>
      <li><a href="#">Item 2</a></li>
      <li><a class="MenuBarItemSubmenu" href="#">Item 3</a>
        <ul>
          <li><a class="MenuBarItemSubmenu" href="#">Item 3.1</a>
            <ul>
              <li><a href="#">Item 3.1.1</a></li>
              <li><a href="#">Item 3.1.2</a></li>
            </ul>
          </li>
          <li><a href="#">Item 3.2</a></li>
          <li><a href="#">Item 3.3</a></li>
        </ul>
      </li>
      <li><a href="#">Item 4</a></li>
    </ul>
    <script src="http://labs.adobe.com/technologies/spry/includes_minified/SpryMenuBar.js"></script>
    <script>
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>
    If the above is not what you want, then please explain.
    Gramps

  • Positioning sub menu not correct in IE

    Hi,
    The site is: jdanielfamily.org
    The sub menu is positioned on top of the main menu in IE, work correctly in Firefox and Safari.
    I have ul.MenuBarVertical ul set the same way as I have in other sites that work correctly.
    What an I doing wrong?
    Thanks

    Just found my mistake.
    ul.MenuBarVertical: Width was set at 9 px, changed to 9 em. Works correct now, thanks.

  • Keyboard shortcut for Sub Menu item Only works AFTER using it

    I have a Custom MOVE TO READ Mailbox shortcut. This is a SUB Menu item.. MESSAGE/Move To/READ FOLDER.
    It is really sweet to clear out my INBOX and save emails.
    So, what is ODD is that that menu has to be Clicked on and shown each time MAIL is run for that keyboard shortcut to work.
    I find that Odd and would love to have it work without having to "train" it everyday.

    Hello,
    Post in the iTunes Forum: http://discussions.apple.com/forum.jspa?forumID=789
    Check out the AppleScript Forum also: http://discussions.apple.com/forum.jspa?forumID=724
    Carolyn

  • After Effects CS6 locks up when trying to use Preferences sub-menu

    I have an issue with AE "freezing" or locking-up when trying to use any of the sub-menu items under preferences. I have to shut down with task manager to regain control. I have a wintel PC with 8 gig of RAM and 2 TB of disk and a quad-core, don't think any of those are an issue. AE is the only problem child in this entire suite. Any help/guidance is deeply appreciated. Thank you in advance for your time and effort.
    Sincerely,
    Vidmist

    1360 x 768.
    That doesn't meet the system requirements and I think it's safe to say thatr this is the reason for the crash - the program is trying to draw the preferences panel in an invalid area since it cannot deal with the too small screen resolution properly. Increase the screen res and everything will probably work.
    Mylenium

  • Cursor selection does not follow chapter order on sub-menu

    I used iMovieHD6 to add chapter markers to my large DVD project. They "shared" very nicely into iDVD8 and the Chapter Selection sub-menus were created nicely.
    The problem is that when I use the cursor arrows on the DVD remote (real or virtual, in or out of iDVD), the highlight jumps around the sub-menu items rather than moving in a logical order. For example, I have 4 sub-menus with 6 chapters in each. Let's use numbers for them starting with the upper left they are 1,2,3 and then at the lower left they begin 4,5,6. I am using the Reflection White theme. When I press the right remote cursor button it will move from 1 to 2 to 5 to 6 to 3 to 4 and back to 1. Note that this order is not the same for each sub-menu, but none of them go 1,2,3,4,5,6.
    I don't know what might be wrong or how to correct it, but I have a really big project that is otherwise perfect and I'd really like to get it out, please help!
    Thanks.

    I just wanted to add this before closing this topic.
    After poking around with the Reflection theme I better understood what Len was talking about. It appears that there are no modifiable parameters in the theme itself that control the order of cursor's motion through the buttons. That I assume is hard-coded into iDVD and follows a pre-programmed logic.
    The point of failure is the position and orientation of the buttons in the Reflection theme's sub-menus when added automatically. They are made to look to the viewer as though they are set on an angled surface and viewed at an angle from above. While our brains can process this effect nicely, iDVD's cursor logic doesn't fare as well.
    The work-around is fairly simple: Realizing that iDVD treats all chapter buttons as though they are two-dimensional objects on a flat surface, you must re-arrange them so that from top-left to bottom-right they follow a logical order, with the first buttons higher and farther left than the later-selected buttons. You don't have to move them very far to get the desired result and it doesn't have to affect the overall appearance of the menu in a noticeable way.
    A slight rearrangement in my case left the overall look of the chapter menu the same but yielded a zig-zag flow through the buttons as follows:
    [1] [3] [5]
    [2] [4] [6]
    Pressing the right cursor key jumps from top left to bottom left to top center then bottom center then top right and finally bottom right before going back to the start. Granted this is not quite "right" in that if iDVD could "see" the menu the way my brain does it would go left to right across the upper row of buttons rather than zig-zagging, but I figure that as long as the user can understand how to get to the button they want it'll be fine.
    If you really need your menu selection to move linearly left to right with those arrows and with the up/down arrow used to move it vertically, then you have to arrange the buttons on the menu in a rectangular pattern with the top of each row of buttons all in a nice horizontal line. Note that's not the same as the alignment line that Reflection provides for you, it's a true horizontal line in relation to the monitor screen.
    I'd much prefer that iDVD revisit the logic of the cursor control code, perhaps adding the choice of allowing the numerical sequence of the chapters to dictate the order of the cursor's motion rather than their relative position on the screen, but since they don't call me for advice, the above will likely have to do.

  • Sub menu display I.E 7.0

    Hi,
    Thanks for a fantastic extension.
    I set-up a menu in Dreamweaver for site
    http://www.pafiankingdom.com
    and made some minor adjustments to the formatting. The navigation
    menu displays correctly in I.E 6.0 and Firefox, but in I.E 7.0 the
    sub menu's show up on top of the main menu items.
    The CSS file looks like the following:
    @charset "UTF-8";
    /* SpryMenuBarVertical.css - Revision: Spry Preview Release
    1.4 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights
    reserved. */
    LAYOUT INFORMATION: describes box model, positioning,
    z-order
    /* The outermost container of the Menu Bar, a fixed width box
    with no margin or padding */
    ul.MenuBarVertical
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: 100%;
    /* 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 same fixed width as parent */
    ul.MenuBarVertical li
    margin: 0;
    padding: 0.35%;
    list-style-type: none;
    font-size: 12px;
    font-weight:bold;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: 100%;
    /* Submenus should appear slightly overlapping to the right
    (95%) and up (-5%) with a higher z-index, but they are initially
    off the left side of the screen (-1000em) */
    ul.MenuBarVertical ul
    margin: -5% 0 0 95%;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    font-weight:bold;
    position: absolute;
    z-index: 1020;
    cursor: default;
    width: 100%;
    left: -1000em;
    top: 0;
    /* Submenu that is showing with class designation
    MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen
    ul.MenuBarVertical ul.MenuBarSubmenuVisible
    left: 0;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarVertical ul li
    width: 102%;
    border: 0.35px solid #FFFFFF;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Outermost menu container has borders on all sides */
    ul.MenuBarVertical
    border: 0.35x solid #CCC;
    /* Submenu containers have borders on all sides */
    ul.MenuBarVertical ul
    border: 0.35px solid #FFFFFF;
    /* Menu items are a light gray block with padding and no text
    decoration */
    ul.MenuBarVertical a
    display: block;
    cursor: pointer;
    background-image:url(../images/template/fon_menu.gif);
    padding: 0.5em 0.75em;
    color: #000000;
    font-family : Tahoma,Verdana,Arial;
    text-indent:30px;
    text-decoration: underline;
    /* Menu items that have mouse over or focus have a blue
    background and white text */
    ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
    text-decoration: underline;
    /* Menu items that are open with submenus are set to
    MenuBarItemHover with a blue background and white text */
    ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical
    a.MenuBarItemSubmenuHover, ul.MenuBarVertical
    a.MenuBarSubmenuVisible
    background-image:url(../images/template/fon_menu.gif);
    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.MenuBarVertical a.MenuBarItemSubmenu
    background-image: url(../images/template/fon_menu.gif);
    background-repeat: no-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.MenuBarVertical 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.MenuBarVertical iframe
    position: absolute;
    z-index: 1010;
    /* 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.MenuBarVertical li.MenuBarItemIE
    display: inline;
    f\loat: left;
    background: #FFF;
    Perhaps my formatting changes have messed up it's
    presentation in I.E 7.0. I don't seem to be able to locate the
    problem.
    Please help.
    Thanks in advance
    Richard

    fixed the problem.
    code:
    @charset "UTF-8";
    /* SpryMenuBarVertical.css - Revision: Spry Preview Release
    1.4 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights
    reserved. */
    LAYOUT INFORMATION: describes box model, positioning,
    z-order
    /* The outermost container of the Menu Bar, a fixed width box
    with no margin or padding */
    ul.MenuBarVertical
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: 100%;
    /* 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 same fixed width as parent */
    ul.MenuBarVertical li
    margin: 0;
    padding: 0.35%;
    list-style-type: none;
    font-size: 12px;
    font-weight:bold;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: 100%;
    /* Submenus should appear slightly overlapping to the right
    (95%) and up (-5%) with a higher z-index, but they are initially
    off the left side of the screen (-1000em) */
    ul.MenuBarVertical ul
    margin: -5% 0 0 0%;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    font-weight:bold;
    position: absolute;
    z-index: 1020;
    cursor: default;
    width: 100%;
    left: -1000em;
    top: 0;
    /* Submenu that is showing with class designation
    MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen
    ul.MenuBarVertical ul.MenuBarSubmenuVisible
    left: 150px;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarVertical ul li
    width: 102%;
    border: 0.35px solid #FFFFFF;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Outermost menu container has borders on all sides */
    ul.MenuBarVertical
    border: 0.35x solid #CCC;
    /* Submenu containers have borders on all sides */
    ul.MenuBarVertical ul
    border: 0.35px solid #FFFFFF;
    /* Menu items are a light gray block with padding and no text
    decoration */
    ul.MenuBarVertical a
    display: block;
    cursor: pointer;
    background-image:url(../images/template/fon_menu.gif);
    padding: 0.5em 0.75em;
    color: #000000;
    font-family : Tahoma,Verdana,Arial;
    text-indent:30px;
    text-decoration: underline;
    /* Menu items that have mouse over or focus have a blue
    background and white text */
    ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
    text-decoration: underline;
    /* Menu items that are open with submenus are set to
    MenuBarItemHover with a blue background and white text */
    ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical
    a.MenuBarItemSubmenuHover, ul.MenuBarVertical
    a.MenuBarSubmenuVisible
    background-image:url(../images/template/fon_menu.gif);
    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.MenuBarVertical a.MenuBarItemSubmenu
    background-image: url(../images/template/fon_menu.gif);
    background-repeat: no-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.MenuBarVertical 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.MenuBarVertical iframe
    position: absolute;
    z-index: 1010;
    /* 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.MenuBarVertical li.MenuBarItemIE
    display: inline;
    f\loat: left;
    background: #FFF;

  • Unable to Adjust Sub Menu

    Hi,
    I am unable to 'permanently' adjust my sub menu on any of the x,y,z axis to align it to my preference.
    After moving it to my liking, when I click away from the menu it snaps back to original position?!
    Another guy back in april 2012 had this issue http://forums.adobe.com/message/4369269,
    surely this must have been fixed?
    Hopefully Im just being foolish.........Please point me to the solution.
    Best Regards,
    Ross

    Thank you for the screen recording.
    There is still one issue I need help with please. To produce "vertically
    spaced", "rounded" buttons I try to use an "invisible" 1px border on the
    menu item. This is a a very hit and miss process, sometimes the border
    jumps back to solid black, sometimes the border resets to 0px...
    Could you please check to see if it is a bug, or is there a specific order
    of application that I need to know?
    Thanks,
    Peter
    Peter Claridge
    Member of The Directors Guild
    w: www.peter-claridge.com
    e: [email protected]
    t: +49 89 613 98 240
    f: +49 89 613 98 241
    m: +49 171 2685600
    skype: claridge_p
    IMDB Résumé:  www.imdb.me/peter-claridge

  • Sub menu going behind the BOL using HTML object in IE

    when i am implementing PDFs bol object in my webpage using simple html object, it is displaying well in both chrome and Explorer( IE
    11). The main problem is the sub menu's of main navigation(sub menu) is going behind of PDFs viewer in Explorer (IE) . And one more thing all the position attributes and z-index values are fine . This is a problem with object . please show me solution. I am
    not able to create fiddle for this. for more details see my below code and run in your Internet Explorer browser and hover
    the "step 2" navigation menu.
    <!DOCTYPE html>
    <html>
    <head>
    <style>
    body{margin:0 auto;width:500px;}
    header{height:60px;background:#ccc;}
    ul#mainnav{list-style:none;display:block;}
    ul#mainnav li{float:left;width:80px;}
    ul#mainnav li#step2 ul#submenu{display:none;list-style:none;margin-margin-}
    ul#mainnav li#step2:hover ul#submenu{display:block;}
    ul#mainnav li#step2 ul#submenu li{float:none;height:30px;border-bottom:1px solid #fff;background:#000;color:#fff;display:block;}
    </style>
    </head>
    <body>
    <header>
    <ul id="mainnav">
    <li>step1</li>
    <li id="step2">step2
    <ul id="submenu">
    <li>step2 1</li>
    <li>step2 2</li>
    <li>step2 3</li>
    <li>step2 4</li>
    </ul>
    </li>
    <li>step3</li>
    <li>step4</li>
    <li>step5</li>
    <li style="clear:both;"></li>
    </ul>
    </header>
    <div style="width:300px;height:400px;border:2px sild #fff;float:left;">
    <object data="http://www.pdf995.com/samples/pdf.pdf" style="width:94%;height:94%;padding:5px;" type="application/pdf" wmode="transparent" >
    <param name="wMode" value="transparent"/>
    </object>
    </div>
    </body>
    </html>
    COPY THE ABOVE CODE TO YOUR NOTEPAD++, AND SAVE AS INDEX.HTML, AND RUN THIS CODE IN YOUR INTERNET EXPLORER BROWSER, AND MOUSE OVER ON "STEP 2", AND OBSERVE THE SUB MENU IS GOING BEHIND THE OBJECT LAYER. THIS IS HAPPENING ONLY IN INTERNET
    EXPLORER.
    please install adobe reader in your system and check
    PLEASE HELP ME TO FIX THIS PROBLEM

    Hi Vallabha,
    Thanks for posting in MSDN forum.
    I have ran your code and understood your issue. But I cannot find a standard answer. z-index property cannot work with such a object tag. After some search on the web, I find this may be a workaround for this problem.
    http://stackoverflow.com/questions/25760079/jquery-combobox-behind-embedded-object-ie-only
    Best regards,
    Shu Hu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Cluster (sub menu) submit button grayed out

    hello all
    as of today my compressor has stopped allowing me to submit the batch i set up.
    having sent an item from FCP to compressor, i get to set the options for settings and destination and then when i hit the submit button a second menu pops down regarding cluster options of which i have none. i add a name to this box yet no mater what other options i change the *submit button in this sub menu remains grayed out!*
    http://twitpic.com/jj7n2
    i have tried reinstalling compressor, and eventually the whole suit. i have removed the various prefs and qmaster stuff. i have used the fix compressor utility from digital rebel, repaired permissions and cleared out cache, but still *grayed out submit*.
    what thoughts cloud genii?

    I'm having the same problem.
    This comes after suffering persistent crashing of Compressor 3.5 on launch and finally having to reinstall to at least fix the crashing problem. But now I can't submit any processes - the button is greyed out.
    Can't remember setting this up originally, but it use to say "This Computer" for processing - do I need to add my computer to a list of available processors?
    Any help hugely appreciated,
    Simon

  • How to include in the sub-menu a table specifies of the user - UDO

    hi, forum  
    how to include in the sub-menu a table specifies of the user 
    I created a table '@ IA_RELAT' in User-Defined Obejcts but I don't know as including in the sub-menu that I created  
    it follows my code
      Private Sub SBO_Application_MenuEvent(ByRef pVal As SAPbouiCOM.MenuEvent, ByRef BubbleEvent As Boolean) Handles SBO_Application.MenuEvent
            If (pVal.MenuUID = "MySubMenu") And (pVal.BeforeAction = False) Then
                Try
                           <u201DmyTableName->@IA_RELATu201D>
               Catch
                    SBO_Application.MessageBox("The Form already exists")
                End Try
            End If
    thank you
        End Sub

    Hi David
    Excuse me but I didn't find in MenuCreationParams Objects how to do this call of the table '@ IA_RELAT' created in User-Defined Obejcts 
    It follows my code 
    in AddMenuItems I set up the Menu and Submenu 
    in SBO_Application_MenuEvent it is where I am having difficulties of showing the table '@ IA_RELAT' created in User-Defined Obejcts 
    Thank you for any help
        Private Sub AddMenuItems()
            Dim oCreationPackage As SAPbouiCOM.MenuCreationParams
            oCreationPackage = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_MenuCreationParams)
            oMenuItem = SBO_Application.Menus.Item("43520") 'moudles'
            Dim sPath As String
            sPath = Application.StartupPath
            sPath = sPath.Remove(sPath.Length - 3, 3)
            oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_POPUP
            oCreationPackage.UniqueID = "MyMenu01"
            oCreationPackage.String = "Standard cost"
            oCreationPackage.Enabled = True
            oCreationPackage.Image = sPath & "UI.bmp"
            oCreationPackage.Position = 15
            oMenus = oMenuItem.SubMenus
            Try ' If the manu already exists this code will fail
                oMenus.AddEx(oCreationPackage)
                '// Get the menu collection of the newly added pop-up item
                oMenuItem = SBO_Application.Menus.Item("MyMenu01")
                oMenus = oMenuItem.SubMenus
                '// Create s sub menu
                oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_STRING
                oCreationPackage.UniqueID = "MySubMenu"
                oCreationPackage.String = "Auxiliary Table"
                oMenus.AddEx(oCreationPackage)
            Catch er As Exception ' Menu already exists
                SBO_Application.MessageBox("Menu Already Exists")
            End Try
        End Sub
    Private Sub SBO_Application_MenuEvent(ByRef pVal As SAPbouiCOM.MenuEvent, ByRef BubbleEvent As Boolean) Handles SBO_Application.MenuEvent
    If (pVal.MenuUID = "MySubMenu") And (pVal.BeforeAction = False) Then
        Try
    SBO_Application.ActivateMenuItem(menus.Item(1).UID.IndexOf("@IA_RELAT"))
        Catch
                    SBO_Application.MessageBox("error")
        End Try
    End If
    End Sub

  • Sub menu theme in revolution

    I am creating project with chapters in Revolution theme.
    The title of the clip revolves around the image in the rotating cylinder within the main menu and the sub menu.
    But when I go into the chapters submenu the words say <chapters revolution> not the title.
    How can the title be shown on these next levels?
    Thanks!

    This is from iDVD Help:
    +_Adding text to a menu_+
    +You can add nonclickable text (or a “text object”)—including titles, descriptions, personal commentary, and so on—to any menu. You can add as many lines of text as will comfortably fit on the menu and position it where you want.+
    +By default, the style for text added to a menu is the same as the default style of the menu title (that is, the text style that comes with the theme you have chosen). However, you can easily customize the typeface, font size, font style, and color of the text you add. Also, each text object on your menu can have a different appearance.+
    +To add text to a menu:+
    +Make sure the menu to which you want to add text is showing in the iDVD window.+
    +Choose Project > Add Text.+
    +The phrase “Click to edit” appears on the menu.+
    +Click the text once to highlight it, and then type the new text.+
    +An in-place control appears below the text. It has controls for changing the typeface, font style, and font size of the text. You can make changes if you want, or click on the menu outside the text to make the in-place editor disappear.+
    +With the text still selected, drag the text to the place you want it on the menu.+
    I hope this helps.

  • Add sub menu

    I want to create menus in nested order i.e.
    Customized Reports
    ....Financials
         ........Bank Book
    Outgoing Payment Receipt
    I am able to create Customized Reports and Financials.But I am not able to add Bank Book and Outgoing Payment Receipt under Financials.For creating the above menus I have referred the code from sample examples given by sdk.The code is as,
    oMenuItem = SBO_Application.Menus.Item("MyMenu022")
                oMenus = oMenuItem.SubMenus
                '// Create s sub menu
                oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_STRING
                oCreationPackage.UniqueID = "Financials"
                oCreationPackage.String = "Financials"
                oMenus.AddEx(oCreationPackage)
                '// Create s sub menu
                oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_STRING
                oCreationPackage.UniqueID = "MySubMenu028"
                oCreationPackage.String = "Edit Item"
                oMenus.AddEx(oCreationPackage)

    see this u get idea--
    Sub AddMenuItems()
            Dim MenuImage As String
            Dim cmdCenterForm As SAPbouiCOM.Form
            cmdCenterForm = SBO_Application.Forms.GetFormByTypeAndCount(169, 1)
            If cmdCenterForm Is Nothing Then
                Return
            End If
            'freeze the command center (faster and no flickering)
            cmdCenterForm.Freeze(True)
            Try
                'Menu ID Range to be used is M_000131 - M_000150
                'Form ID Range to be used is 2000050151 - 5000050170
                oCreationPackage = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_MenuCreationParams)
                oMenuItem = SBO_Application.Menus.Item("43520")  ' Module Menu
                oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_POPUP
                oCreationPackage.UniqueID = "M_000131"
                oCreationPackage.String = "Exports"
                oCreationPackage.Enabled = True
                oCreationPackage.Position = 14
                MenuImage = System.Windows.Forms.Application.StartupPath + "\Images\Imports.bmp"
                oCreationPackage.Image = MenuImage
                oMenus = oMenuItem.SubMenus
                Try
                    oMenus.AddEx(oCreationPackage)
                Catch ex As Exception
                End Try
                ' Incentives 
                oMenuItem = SBO_Application.Menus.Item("M_000131")  ' Exports
                oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_POPUP
                oCreationPackage.UniqueID = "M_000141"
                oCreationPackage.String = "Incentives"
                oCreationPackage.Enabled = True
                oCreationPackage.Position = 0
                oMenus = oMenuItem.SubMenus
                Try
                    oMenus.AddEx(oCreationPackage)
                Catch ex As Exception
                End Try
                '''''''   'sub menu for Incentives
                AddMenuItem1("M_000142", "Free Trade Zones")
                AddMenuItem1("M_000143", "Export Oriented Units (EOU")
                AddMenuItem1("M_000144", "DEEC")
                AddMenuItem1("M_000145", "EPCG")
                AddMenuItem1("M_000146", "Deemed Exports")
                AddMenuItem1("M_000147", "Duty Drawback")
                AddMenuItem1("M_000148", "PPV Report")
                ' Master 
                oMenuItem = SBO_Application.Menus.Item("M_000131")  ' Exports
                oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_POPUP
                oCreationPackage.UniqueID = "M_000161"
                oCreationPackage.String = "Master"
                oCreationPackage.Enabled = True
                oCreationPackage.Position = 0
                oMenus = oMenuItem.SubMenus
                Try
                    oMenus.AddEx(oCreationPackage)
                Catch ex As Exception
                End Try
                'sub menu for master
                AddMenuItem1("M_000162", "Shipping Bill")
                AddMenuItem1("M_000163", "Customs Declaration Form")
                AddMenuItem1("M_000164", "Commercial invoice")
                AddMenuItem1("M_000165", "Customs Invoice")
                AddMenuItem1("M_000166", "Certified Invoice")
                AddMenuItem1("M_000167", "Packing List")
                AddMenuItem1("M_000168", "Certificate of Shipment")
                AddMenuItem1("M_000169", "Health/ Veterinary/ Sanitary Certification")
                AddMenuItem1("M_000170", "Shipping Order ")
                AddMenuItem1("M_000171", "Short Shipment Form")
                AddMenuItem1("M_000172", "Packing List")
            Catch ex As Exception
            End Try
            cmdCenterForm.Freeze(False)
            cmdCenterForm.Update()
        End Sub
       Sub AddMenuItem1(ByVal MenuID As String, ByVal MenuName As String)
            Try
                If MenuID = "M_000142" Or MenuID = "M_000143" Or MenuID = "M_000144" Or MenuID = "M_000145" Or MenuID = "M_000146" Or MenuID = "M_000147" Or MenuID = "M_000148" Then
                    oMenuItem = SBO_Application.Menus.Item("M_000141")
                ElseIf MenuID = "M_000162" Or MenuID = "M_000163" Or MenuID = "M_000164" Or MenuID = "M_000165" Or MenuID = "M_000166" Or MenuID = "M_000167" Or MenuID = "M_000168" Or MenuID = "M_000169" Or MenuID = "M_000170" Or MenuID = "M_000171" Or MenuID = "M_000172" Then
                    oMenuItem = SBO_Application.Menus.Item("M_000161")
                Else
                    oMenuItem = SBO_Application.Menus.Item("M_000131")
                End If
                oMenus = oMenuItem.SubMenus
                oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_STRING
                oCreationPackage.UniqueID = MenuID
                oCreationPackage.String = MenuName
                oMenus.AddEx(oCreationPackage)
            Catch ex As Exception
            End Try
        End Sub

Maybe you are looking for

  • Exporting Graphical Message Mapping in PI 7.1

    Hi All, In XI3.0 there was an option to export graphical message mapping by using ctrl+shift on the data flow editor window. Can't find the same in PI7.1. Have SAP removed this feature with PI 71 or provided another way of doing it or simply my syste

  • Files get corrupted in Lightroom 4, through 4.4

    So I was going to comment on one of the other posts about the corrupted files but it was soooo long I decided to start a new one. This should give me a hint that it is not HARDWARE.... To start with I am shooting a Canon 5d mkIII and RAW(.CR2) files

  • Print check

    Hi friends. I need to create a check print linked with a banking account transfer document. My document has key 40 and 50 to accounts 12*1. Because this is not a payment document, but a document to make a transfer between accounts, I cannot print any

  • 11.1.1.5 out-of-place upgrade how to continue the compositeIds from old env

    Hi, We are planning to upgrade SOA 11.1.1.3 to 11.1.1.5. Don't want to do an inplace upgrade but want to do out-of-place upgrade i.e. want to install 11.1.1.5 from fresh and move over the composites to new environment so atleast will have a back envi

  • Lightroom Serial Number in Creative Cloud

    I have been using Lightroom everyday with no problem then today it has started up as if it is loading for the first time & asking for a serial number. I am using the Creative Cloud for Photographers & I don't seem to have a serial number. can anyone