Context Sub menus in jdeveloper

I have already added the context menus in the editor,now I would like to add menus with sub menus, i.e I want to make this  created menu as sub menu to some other menu which I have already created.Can you please help me?

Hmm,
what about the icon property of the command menu item
http://docs.oracle.com/cd/E28280_01/apirefs.1111/e12419/tagdoc/af_commandMenuItem.html
Would that work for you?
Frank

Similar Messages

  • Spry Menu Bar 1.7 Rendering Variable background height based presence/absense of sub-menus

    First, let me thank those who have offered help on previous posts on this issue -- the suggestions have pointed me in new directions.
    However I am still having problems with the first menu item on the top level of a horizontal menu bar which (because it has no sub-menu) renders the background differently from the other main level items.  I have implemented suggestions, as you will see, by setting a class for menu items with sub-menus as per the suggestion, and then proceeding working with line height to make specific changes within that class.  However any changes appeared universally through the menu bar at all levels.
    Working from that suggestion, I tried establishing a class of "menubarhorizontal_no-sub-menu" and then adjusted the line height for that item.  Unfortunately it applied this change again to all items leaving a displeasing white gap between menu items in the drop down menus.
    I wanted to put out a call once more.  I realize that the problem is in determining which of the rules to style, but I seem to have exhausted the possibilities.  The latest version can be seen at www.aclco.org/testing/index.html which will provide a visual of the problem.  You can see it doesn't look much different than the original which is http://www.aclco.org/index.html.
    I am also including the code for the nav bar which is inserted as a library item into all the pages:
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"><ul id="MenuBar1" class="MenuBarHorizontal">
    <li><a class="MenuBarHorizontal_no-sub-menu" href="../index.html" title="Home">Home</a></li>
    <li><a class="MenuBarItemSubmenu" href="../about_aclco.html" title="ACLCO-ACJCO">ACLCO-ACJCO</a>
      <ul>
        <li><a href="../about_aclco.html#mission_mandate" title="Mission and Mandate">Mission and Mandate</a></li>
        <li><a href="../about_aclco.html#governance" title="Governance">Governance</a>
          <ul>
            <li><a href="../about_aclco.html#executive">Executive</a></li>
          </ul>
        </li>
        <li><a href="../by-laws_policies.html" title="By-Laws and Policies">By-Laws and Policies</a></li>
        <li><a href="../about_aclco.html#staff_volunteers" title="Staff and Volunteers">Staff and Volunteers</a></li>
        <li><a href="../public_documents.html" title="Public Documents">Public Documents</a></li>
      </ul>
    </li>
            <li><a class="MenuBarItemSubmenu" href="../about_Clinics_overview.html" title="About Community Legal Clinics">Community Legal Clinics</a>
              <ul>
      <li><a href="../about_Clinics_overview.html" title="About Clinics - Overview">Overview</a></li>
    <li><a href="../critical_characteristics.html" title="Critical Characteristics">Critical Characteristics </a></li>
    <li><a href="../what_clinic_do.html" title="What Clinics Do">What Clinics Do</a>
      <ul>
        <li><a href="../Advice+referrals.html" title="Advice and Referrals">Advice and Referrals</a></li>
    <li><a href="../case_work+legal_representation.html" title="Case Work and Legal Representation">Case Work and Legal Representation</a></li>
    <li><a href="../community_development.html" title="Community Development">Community Development</a></li>
    <li><a href="../public_legal_education.html" title="Public Legal Education">Public Legal Education</a></li>
    <li><a href="../law_reform.html" title="Law Reform">Law Reform</a></li>
      </ul>
    </li>
    <li><a href="../who_clinics_serve.html" title="Who Clinics Serve">Who Clinics Serve</a></li>
    <li><a href="../impacts.html" title="Impact on Clients and their Communities">Impact</a></li>
              </ul>
            </li>
            <li><a class="MenuBarItemSubmenu" href="../Members_Only/intranet_portal_page.html" title="Members Only">Members Only</a>
              <ul>
                <li><a href="../Members_Only/intranet_portal_page.html" title="ACLCO Intranet Pages">ACLCO  Intranet Pages</a></li>
                <li><a href="http://www.bulletinboards.com/message.cfm?comcode=ACLCO  " title="ACLCO Discussion Forum">ACLCO Discussion Forum</a></li>
              </ul>
            </li>
            <li><a class="MenuBarItemSubmenu" href="../contact_us.html" title="Contact Us">Contact</a>
              <ul>
      <li><a href="../contact_us.html" title="Contact Information">Contact Information</a></li>
    <li><a href="../links.html" title="Links">Links</a></li>
              </ul>
            </li>
          </ul>
    The spry framework coding  For the Horizontal Menu Bar is as follows:
    @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;
        line-height: 23px;   
        list-style-type: none;
        font-size: 100%;
        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;
        line-height: 21px;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: auto;  /* This allows the width of the various top level menu items to adjust automatically to fit the contents of each menu item */
        float: left;
    ul.MenuBarHorizontal_no-sub-menu li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: auto;  /* This allows the width of the various top level menu items to adjust automatically to fit the contents of each menu item */
        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: 200px; /* This establishes a fixed width for the drop down menus */
    /* 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: none; /* removes the grey border from around the sub-menu container */
    /* Menu items are a light gray block with padding and no text decoration NB: Remove - background-color: #EEE;  reset color from #333 to #FFF*, and establish a background image with repeat, Especially note that this only sets the top level items, i.e. those with no children sub-menus attached to them.*/
    ul.MenuBarHorizontal a
        display: block;
        cursor: pointer;   
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Navigation%20Bar%20Segm ent-Dark.png);
        background-repeat: repeat-x;
        background-color: #000088;  /*background color must exactly match the color of the bottom edge of the repeating background png so that if it runs over 39px in height their won't be any gaps of white. */
        padding: 0.5em 0.75em;
        color: #FFF;
        text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text; again reset thebackground-color: #3CC to equal the color of the bottom edge of the repeating png (see above). Set background image and repeat for a hover state.  However, this only sets hover states for top level menu items and sub-menus that have higher level items above them. If for example a menu has 3 levels it will not set for the 1st and 2nd level.  */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Navigation%20Bar%20Segm ent%20Light2.png);
        background-repeat:repeat-x;
        background-color: #2E35A3;
        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-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Navigation%20Bar%20Segm ent%20Light2.png);
        background-repeat:repeat-x;
        background-color: #2E35A3;
        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%)  Remove the background image that displays arrows and set the appropriate background image and repeat. */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        background-image: url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Navigation%20Bar%20Segment-Dark.png);
        background-repeat:repeat-x;
        background-color: #000088;
        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(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Navigation%20Bar%20Segm ent-Dark.png);
        background-repeat: repeat-x;
        background-color: #000088;
        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%) This controls sub-sub-menu items in hover state. */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Navigation%20Bar%20Segm ent%20Light2.png);
        background-repeat:repeat-x;
        background-color: #2E35A3;
        color: #FFF;
    /* 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 Controls fly-out menu items in hover or focus state.(50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Navigation%20Bar%20Segm ent%20Light2.png);
        background-repeat:repeat-x;
        background-color: #2E35A3;
        color: #FFF;
    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;
    Finally, there is minimal css coding to help position the menu bar within the web page relative to the top of the page, and left edge of the web page.
    This is done with a div tag called Main Nav Contents.
    #Main_nav_contents {
        padding: 0;
        margin-top: 0px;
        height: auto;
        width: 950px;       
        padding-top: 275px; 
        padding-left: 35px;
    I would very much appreciate any further help that people can provide me.  It seems that the trick is to identify the appropriate rule; however that has thus far alluded me.
    Thanks,
    Steve Webster

    This will help http://www.dwcourse.com/dreamweaver/ten-commandments-spry-menubars.php#one

  • How do I use one song for all Theme sub-menus?

    I'm using IDVD '08.I have created a theme with 3 chapter selection sub menus. Is there any way to choose a single song that plays from start to finish (and then loops normally) regardless of which submenu you happen to be in? I know how to add the same song to every submenu, but the problem is that every time you go back and forth between the submenus the song starts again at the beginning. It's very annoying. Any help would be much appreciated.

    Hi
    No I don't think this is possibly with iDVD.
    Never seen a Professional DVD that behaves like that either - so my plain guess is that
    not even DVD Studio Pro would be able to do it.
    Never seen this function in Roxio Toast™ either.
    All of them starts the audio file from start when changing menu - as far as I know.
    Sorry
    Yours Bengt W

  • How do you make a transparent spry menu that has a background color on sub menus?

    Hi i am a total newbie at html and css scripting/coding and i've been working on creating a website of course because im here and i have search and search and i've found a few topics about this but none of them have what i want and it would be helpful if when you post the reply you explain it so hopefully i can add on and learn but i am trying to get the background color on the sub menus #1A1A1A and then the menu it self transparent here is my code it might make no sense at all since im a newbie ;P
    @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 auto;
              padding: 0;
              list-style-type: none;
              font-size: small;
              cursor: default;
              width: 100em;
    /* 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: 18px;
              position: relative;
              text-align: left;
              cursor: pointer;
              width: 10.8em;
              float: left;
              visibility: visible;
    /* 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: 15em;
    /* 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
    ul.MenuBarHorizontal ul
              border: 0px solid #1A1A1A;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
              display: block;
              cursor: pointer;
              background-color: transparent;
              padding: 9px;
              color: #FFF;
              text-decoration: #1A1A1A;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
              font-weight: bold;
              font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
              font-size: 18px;
    /* 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: #0048ff;
              color: #EEE;
    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-color:#1A1A1A;
              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-color:#1A1A1A
              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: 85% 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: #222222;

    Hi and welcome -
    Start with fixing this missing semicolon  (in red)
    /* 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-color:#1A1A1A;
              background-repeat: no-repeat;
              background-position: 95% 50%;
    You will find you will get faster, more accurate help from us if you upload your test page and any dependent files to your server and post a link here.  That way we can examine ALL your code

  • How to add sub menus in dreamweaver CC using Jquery Tabs

    How can I add sub menus to a Menu Bar in DreamWeaver CC. I know how to do it in CS6 using Spry Menu bar but it's just not as simple as that was now in CC.
    Any Help is appreciated!!

    jQuery tabs is a replacement for Spry tabs, not the Spry menubar.
    Stella333 found a good replacement for the Spry menubar http://forums.adobe.com/thread/1247870

  • Sub-menus to Top Level Pages issue

    My web site has eight top level pages, and sub-menus to those pages. Using the menus widget I set up the menus on my master page and it works fine.  But I decided that on one (and only one) of the top level pages i do NOT want the drop down menu to show. When I check "Top Level Pages" (and uncheck Edit Together) on that particular menu page, Muse still applies Top Level Pages to the other seven pages — no sub-menus appear under any pages. It's an either/or situation — either sub-menus appear under every top level page or none appear. Can anyone tell me what I'm doing wrong? Or is it not possible to selectively have sub-menus appear under select Top Level Pages?

    In your plan view right mouse click on the pages that you do not want in the menu and choose exclude from menu.

  • Sharing A Solution - CREATING A SET OF SUB MENUS ON MAIN MENU IN iDVD

    A recent question I posted got some attention from a number of people about how to create a set of sub menus on the main menu of an iDVD project. Evidently there are a number of us who tried to find a way to do this. I attended an Apple Store iDVD workshop and was fortunate enough to be the only one in attendance. So I had the Mac Genius’s attention for a full hour and he was very helpful. Here’s how to do this in detail. Good luck!
    - Fred
    CREATING A SET OF SUB MENUS ON MAIN MENU IN iDVD
    NOTE: when you import the iMovie file don’t add to the drop zones or add music to the sub menus until you finish this work!
    Go to the map view. Once in map view choose to show the map view as a flow chart moving from left to right – it’s the left selection of the two which appear on the left-hand side of the sizing slider tool that determines how big the map view icons will appear. You will want to set that slider to the minimum size to make it easier to navigate. Select the main menu icon.
    Open the main menu to edit it and select “Scene Selection” and then copy and paste it as many times as you have sub menus. Each sub menu can only hold 6 scenes so if you have 18 scenes you will have 3 sub menus which means you will copy the first one and then past it twice which will give you 3 sets of “Scene Selection” options on the main page.
    After you create the set of “Scene Selections” return to map view. You will now have a copy of each group of sub menus under each sub menu. The entire film will be recreated for each set of “Scene Selections” that you have and you need to edit them out so that you have only one for each sub menu.
    You CANNOT simply delete the groups in front of the one you want to keep. For instance, suppose you have 3 sub menu groups and you are at the first sub menu selection. You cannot simply delete the first two groups in front of the third one – it will delete all of the sub menus after the one you want.
    (REPEAT FROM HERE) Go to the last group of sub menus and select the scenes for the first group of sub menus. In other words go down to the last grouping of sub menus, locate the first sub menu group and choose each scene within the group and delete each one. This will leave you with an empty sub menu. Do this for the next group and any subsequent group up to the last one. Do not delete the last group! This is the group you want at this level.
    Once you have deleted the scenes you can cut and paste the last group of scenes to the first sub menu selection in the group. Once done you can delete the other sub menus groups that come after the first one.
    Once you have the group of scenes moved to the first sub menu selection you need to change the name of the group of scenes. For instance if you are working on group 13-18 you need to change the group name from 1-6 which is what it is currently named.
    Repeat these steps for each successive group moving up from the last one to the top with one change – you will choose to delete the last group from each successive sub menu since you have already saved it in the last group you worked on which is below the one upon which you are now working.
    Once you are at the top group you will then simply be able to delete the other sub menus that appear beyond the first one.

    Nicola,
    The Fact: It's all in the markup and the CSS.
    The Problem:  We are not privy to your markup and CSS and as such cannot help you.
    The Solution: Supply a link to your site, or at the very least, copy and paste your code here
    Gramps

  • Transparent spry menu that has a background color on sub menus and a few other problems(Please Help)

    Hi im a noob at dream weaver and i've been trying to create a menu and i have been having problems with this menu bar i don't know what to upload and i have made a topic about this before but i only got one reply and so i am trying to make my menu bar transparent and then the sub menu's colored with the color code #1A1A1A and the menu bars that have been color background are only the sub sub menu bars if you know what i mean and also my other problem is the spacing i have between each option is really uneven is there a way to make them evenly sperated apart from each other rather than just the size of a "box" that the text is in. Here is my SpryMenuBarHorizontal.css code
    @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 auto;
              padding: 0;
              list-style-type: none;
              font-size: small;
              cursor: default;
              width: 100em;
    /* 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: 18px;
              position: relative;
              text-align: left;
              cursor: pointer;
              width: 10.8em;
              float: left;
              visibility: visible;
    /* 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: 15em;
    /* 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
    ul.MenuBarHorizontal ul
              border: 0px solid #1A1A1A;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
              display: block;
              cursor: pointer;
              background-color: transparent;
              padding: 9px;
              color: #FFF;
              text-decoration: #1A1A1A;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
              font-weight: bold;
              font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
              font-size: 18px;
    /* 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: #0048ff;
              color: #EEE;
    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-color: #1A1A1A
              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-color:#1A1A1A;
              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-color:#1A1A1A
              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-color: #1A1A1A
              background-repeat: no-repeat;
              background-position: 85% 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-color: #1A1A1A;

    See if this post helps :
    http://forums.adobe.com/message/1997762#1997762
    and this one:
    http://forums.adobe.com/message/1898539#1898539
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.perrelink.com.au
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    http://twitter.com/nadiap

  • [JS CS3] Why do sub menus disappear?

    Hello,
    The below script creates a new menu with three sub menus. One of the sub menus invokes a script, while the other two are still under construction. This seems to work except for one irksome thing: When I close InDesign and then reopen it, the menu ("PPcheck") exists but the sub-menus are no longer under the menu. How do I make them permanent?
    Thanks,
    Tom
    #targetengine session
    var englishCheck = new File( "~/Library/Preferences/Adobe InDesign/Version 5.0/Scripts/Scripts Panel/Format/formatCheckWindow.jsx");
    var englishCheckMenu = app.scriptMenuActions.add("Main-English");
    englishCheckMenu.eventListeners.add("onInvoke", englishCheck, false);
    var frenchCheckMenu = app.scriptMenuActions.add("Main-French");
    frenchCheckMenu.eventListeners.add("onInvoke", underConstruct, false);
    var spanishCheckMenu = app.scriptMenuActions.add("Main-Spanish");
    spanishCheckMenu.eventListeners.add("onInvoke", underConstruct, false);
    //following creates menu if it does not exist
    try{
        var scriptMenu = app.menus.item("$ID/Main").submenus.item("PPcheck");
        scriptMenu.title;
    catch (e){
        var scriptMenu = app.menus.item("$ID/Main").submenus.add("PPcheck");
    //following adds sub menu items
    scriptMenu.menuItems.add(englishCheckMenu);
    scriptMenu.menuItems.add(frenchCheckMenu);
    scriptMenu.menuItems.add(spanishCheckMenu);
    //****functions******
    function underConstruct(){
        alert("The French and Spanish semi-automatic checkers are still under construction.");

    Hi Tom,
    I'm not sure wheather it will work, but try two things:
    1. put quotes on session so it states
    #targetengine "session"
    2. don't put "false" in eventListeners
    it's just a guess, but maybe it works
    regards, mileking

  • How do I hide sub menus in Dreamweaver CS5.5?

    Hi - I'm at the very beginning of sorting out my first web site in Dreamweaver CS5.5. I'm using a vertical menu with sub menus. The submenus are permanently visible. I was earlier able to make them only appear when you roll over them with a mouse...but the sub menus then stuck way out into the next column. 
    What I'd like is to have submenus that are hidden until you roll over them with a mouse. I'd like the submenus to be indented slightly from the main menu (like they are now, except that they're not hidden right now).
    I seem to have changed a preference in Dreamweaver, because now when I delete the vertical menu and start all over again, I end up with the same formatting in my new menu. I can no longer end up with a hidden submenu items at all when I insert a vertical menu. I can create a horizontal menu with hidden submenu items, however, so I don't think I've changed the preference related to horizontal menus.
    Thanks so much for your help with this!
    http://www-rohan.sdsu.edu/~alexandv/cccsite/index.htm

    Hi,
    in addition to gramp's hint, you could have a look here. You could e.g. use directly (Google) or download and integrate into your DW files.:
    http://support.google.com/calendar/bin/topic.py?hl=en&topic=1669237&hl rm=de&from=15270&rd=1
    or
    http://www.easyphpcalendar.com/,
    http://www.meanfreepath.com/index.html,
    http://www.dmxzone.com/go?16361.
    On the other hand you can find some more by using Google itself, individually specific to your requirements and your preferences.
    Hans-Günter

  • Problems with sub menus in Internet Explorer

    My menu bars work great in Chrome and Firefox however my submenus are jacked up in Internet Explorer. Can someone please give me some direction? Thanks.
    The website is www.aptyssolutions.com

    Have a look here http://www.dwcourse.com/dreamweaver/ten-commandments-spry-menubars.php#one
    Then have a look at what you have got
    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: block;
            f\loat: auto;
            background:
    and
    /* 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%;
        cursor: default;
        width: AUTO;
        position: absolute;
        left: -1000em;
       top: 23px;
        height: 35px;
        background-image: url(/images/bluebar.png);
    There is more, but the above is most likely what is causing the problem.
    I suggest that you resurrect the original SpryMenuBarHorizontal.css and start again.

  • Cannot click on sub-menus and notification prompts in Mircosoft Exchange when using Firefox.

    When I access Microsoft Exchange web app from Firefox I've can no longer click on pop-up sub-menus and notifications that I could previous use.
    For example, when I go to empty my deleted items folder and select empty folder, I get this notification (menu 1) that I now cannot click on. All I can do is just hit 'enter' to close the menus without actually making a yes/no input.
    Similarly, when i go to move folders and get this pop-up menu (menu 2), I cannot make any selection, and the 'enter' to close method does not work. All I can do then is close the page.
    I have tried disabling firefox's pop-up blocker but that did not rectify the issue. I can still use the sub-menus in other web browsers so this is a firefox specific problem.
    Any help in identifying the cause and remedying this would be greatly appreciated.

    Many site issues can be caused by corrupt cookies or cache.
    * Clear the Cache and
    * Remove Cookies<br> '''''Warning ! ! '' This will log you out of sites you're logged in to.'''
    Type '''about:preferences'''<Enter> in the address bar.
    * '''Cookies;''' Select '''Privacy.''' Under '''History,''' select Firefox will '''Use Custom Settings.''' Press the button on the right side called '''Show Cookies.''' Use the search bar to look for the site. Note; There may be more than one entry. Remove '''All''' of them.
    * '''Cache;''' Select '''Advanced > Network.''' Across from '''Cached Web Content,''' Press '''Clear Now.'''
    If there is still a problem,
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?
    Then restart.
    If there is still a problem;
    Start '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Firefox in Safe Mode]''' {web Link} by holding down the '''<Shift><br> ''(Mac Options)'' ''' key, and then starting Firefox. Is the problem still there?

  • Horizontal menu looks fine but sub menus drop down one and move to the right over the top of one another

    Help, My horizontal menus look great but when I add sub menus to them they drop down one place and move to the right side where they be over lapping each other. What can I do? I'm working with adobe muse.

    It might be faster to start over.  File > New > HTML page.  Insert Spry Menu.
    Customize Spry Menus by David Powers
    http://foundationphp.com/tutorials/sprymenu/customize1.php
    When making code changes, use /**CSS Comments**/ to remind yourself what you did in case things go wrong. ;-)
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Removal of sub-menus from selection-screen....

    Hi experts,
    When I click on the Test (F8) button in my report. It navigates to the selection-screen. Here in selection-screen, I can see various menus in menu bar like 'Program' , 'Edit' , 'Goto', 'System' and 'Help'. Menu 'Program' has few sub-menus like 'Execute', 'Execute and print' , 'Execute in background' and exit. In my report I dont want the sub-menus 'Execute and print' and 'Execute in background' to appear. So please tell me how to delete these sub-menus feom selection-screen.
    Do I need changes it from the PF-STATUS?
    Regards,
    Sachin

    Hi,
    I dont think that u can do that in selection Screen. Because screen 1000 is reserved for selection Screen
    and u can't change the menu items.
    U can do on thing. U create a custom screen like selection Screen and call that instead of Selection Screen.
    Regards
    Sandipan

  • Sub-menus not showing??

    I have this main menu...
    eg.
    File | Edit | Transactions | Help
    these have their own submenus. i have put in all the submenu
    items also.
    eg. <File> has Name, Age, Address
    however they dont show up when i run the form. only the main
    menu shows.
    but clicking on the individual menu items doesnt drop and menu
    or show the sub-menu.
    i dont know why?

    my sub menus arent poping up or are not showing
    does any1 know why?
    the main menu shows...but the sub-menus dont. Dec 11, 2001 01:48 PT
    how to make the Sub-Menu's show up. I have this Menu made...and
    even done the option of submenu enabled if that 1 specific menu
    item is selected ...yet when i run the form...
    the main menu shows up, but the sub-menus for that menu-item
    doesnt turn up.
    also one menu called 'window' comes which i havent made, i guess
    it auto-generates/shows.
    this one works..and its submenus are seen.

Maybe you are looking for

  • Error code -36 on Time Capsule w/ disk image

    I am getting this error: "The Finder cannot complete the operation because some of the data in "_Insert file or folder here_" could not be read or written." (Error code -36) I have set up a 1gb Time Capsule with a 650gb disk image (for general disk u

  • Can't retrieve sub element in xml

    I'm reading from an xml document which has gone fine up until now. There are two tags with the exact same element name, only one is a sub and one is in the main tree. I am trying to read the main one, but for some reason the sub is getting called. Is

  • 2 podcast list, right one won't show to sync with iPhone

    I synced my iPhone 4 with my MacBook today. I havn't done that in quite some time. I now have 2 Podcasts list (I didn't notice a second one there before today) and the 2nd/new one only has 1 of my podcasts listed in it. My other Podcast list has all

  • Postings to Dummy Profit Center

    Hi! we have some Profit & Loss GL accounts which were not created as cost elements, for example Change in stock GL accounts. But while posting the transaction in FI, it is getting posted in DUmmy profit center also, which was assigned in PCA Controll

  • Itunes with explanation point

    My itunes music has explanation mark and will not play. What do I do to get my music played?