Empty sub-menu bar style

i'm using adf 10.1.3.41.57 and i've skinned my application using the mycompany skin. however, when i have a top level menu that doesn't have and sub-menus the bar that holds the sub-menu items disappears. i've tried setting the property:
af|menuBar::empty
width:100%;
background-color:#D2DEED;
background-image: url(/skins/mycompany/skin_images/PBMediumBkg.gif);
to no avail. the only thing i get is the background color, but no image is displayed. does anyone no of a way to display an image for the sub-menu when the sub-menu is empty?
thanks,
paul

actually, we're using jheadstart to generate the pages. the menu is generated in a region and here's the code below:
<af:menuTabs>
<af:commandMenuItem text="Plan Summary" onclick="return alertForChanges();" action="StartSummary" immediate="true"
selected="#{attrs.selectedTab=='Summary'}"
>
<f:actionListener type="oracle.jheadstart.controller.jsf.listener.DoRollbackActionListener"/>
<f:actionListener type="oracle.jheadstart.controller.jsf.listener.ResetBreadcrumbStackActionListener"/>
<af:resetActionListener/>
</af:commandMenuItem>
<af:commandMenuItem text="Plan Details" onclick="return alertForChanges();" action="StartPlanDetails" immediate="true"
selected="#{attrs.selectedTab=='PlanDetails'}"
>
<f:actionListener type="oracle.jheadstart.controller.jsf.listener.DoRollbackActionListener"/>
<f:actionListener type="oracle.jheadstart.controller.jsf.listener.ResetBreadcrumbStackActionListener"/>
<af:resetActionListener/>
</af:commandMenuItem>
<af:commandMenuItem text="Plan Rate" onclick="return alertForChanges();" action="StartPlanRates" immediate="true"
selected="#{attrs.selectedTab=='PlanRates'}"
>
<f:actionListener type="oracle.jheadstart.controller.jsf.listener.DoRollbackActionListener"/>
<f:actionListener type="oracle.jheadstart.controller.jsf.listener.ResetBreadcrumbStackActionListener"/>
<af:resetActionListener/>
</af:commandMenuItem>
<af:commandMenuItem text="WSF" onclick="return alertForChanges();" action="StartWSF" immediate="true"
selected="#{attrs.selectedTab=='WSF'}"
>
<f:actionListener type="oracle.jheadstart.controller.jsf.listener.DoRollbackActionListener"/>
<f:actionListener type="oracle.jheadstart.controller.jsf.listener.ResetBreadcrumbStackActionListener"/>
<af:resetActionListener/>
</af:commandMenuItem>
<af:commandMenuItem text="Non WSF" onclick="return alertForChanges();" action="StartNonWSF" immediate="true"
selected="#{attrs.selectedTab=='NonWSF'}"
>
<f:actionListener type="oracle.jheadstart.controller.jsf.listener.DoRollbackActionListener"/>
<f:actionListener type="oracle.jheadstart.controller.jsf.listener.ResetBreadcrumbStackActionListener"/>
<af:resetActionListener/>
</af:commandMenuItem>
</af:menuTabs>
paul

Similar Messages

  • Vertical Spry sub menu bar gets misplaced in IE

    Hi,
    I'm using Vertical spry menu bar 1.4 and it works fine in
    Firefox, but the submenu appears on a different place in Internet
    Explorer, you can check it at
    http://www.holystichaven.com/Html/main.html,
    i tried changing the positions using the margins provided on the
    help, but it still won't work.
    Thanx for any help.
    Wayne

    Hello,
    Here are the steps you should do to make the menu work as
    expected:
    1. Remove all the <div align="center"> from the HTML
    source because this will trigger a bug in IE and will apply to all
    <a> tags when they are declared as block elements and will
    modify their position.
    2. Go into your CSS and in the first class ul.MenuBarVertical
    change the width:auto; with width: 11em;
    3. Into the CSS change into the "ul.MenuBarVertical ul" the
    margin property:
    margin: 0% 0 0 95%;
    to
    margin: 0% 0 0 11em;
    4. In the "ul.MenuBarVertical a" please add the following
    line:
    text-align: center;
    5. Go to the following URL:
    http://www.cristic.ro/samples/SpryMenuBar.js
    and our latest version for the Spry Menu Bar that fix an issue on
    IE.
    Regards,
    Cristian MARIN

  • Menu Bar Styling Examples

    We've noticed that folks are having a hard time figuring out
    how center the menu bar and menu items, and also trying to figure
    out how to make the menu items and sub menus variable width.
    I've put together some pages that show folks how to modify
    the default menu bar styles to accomplish these things, and to
    point out some of the browser specific layout problems you may
    encounter.
    I've posted it on my personal web-site so I can incorporate
    any feedback from folks quickly:
    http://www.shinarp.com/SprySamples/menubar
    If folks are still having problems with their specific
    layout, we'd like to hear about it so we can incorporate it into
    these styling samples. Once the dust settles, I'll ask the
    web-folks for Adobe Labs to push them so they become part of the
    set of online samples accessible off of the main samples page.
    --== Kin ==--

    Interloper, I went back to check on the fixed widths, and
    tried to create one using the exact code on the page, and you are
    right, the result is a mess. I will see if I can make heads or
    tails of what is wrong with that spry example page and let you know
    I usually use dreamweaver cs3 and just insert a spry menu and
    then customize, I have had no problems. But then I am not using
    adjustable widths, my pages are a fixed size.
    this is is a spry pages, I am making our church a website,
    but it is still a baby site *smile* I haven't gotten the 'filling'
    for the page items so it looks empty..., the calendar link will be
    filled with an iframe for a google calendar, but if I put it in,
    yahoo deletes my site*shrug*...the photo gallery is spry as well,
    but I haven't uploaded it AGAIN (yahoo deleted my site 3 times
    already) but oh well... geocities is not its permanent home.
    http://www.geocities.com/newcreationinchrist_nm/index.htm
    Ok, so if you can see what I did ... make the menu bar 100%,
    but then limit it by placing it in a container of sorts, that holds
    the page content.
    this page HAD adjustable menu widths, but I forgot that I put
    in an image for the background, and that limits the size, but the
    way I got the menu items to be adjustable was to divide 100% by the
    number of items...on this page the width for the item is 33.335%
    ul.MenuBarHorizontal
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: 100%;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    float: none;
    margin-left: auto;
    ul.MenuBarActive {
    z-index: 1000;
    ul.MenuBarHorizontal li
    padding: 0;
    list-style-type: none;
    font-size: 90%;
    position: relative;
    text-align: left;
    cursor: pointer;
    float: left;
    width: 33.335%;
    clear: none;
    margin: 0;

  • Using a different background for the drop down options in a spry menu bar

    Hi all,
    I am trying to set just a background color in the drop down menu, I have a background image repeated along the x asis at the top but this has come down into the sub menu bar how can I change just the lower drop down menu to just a solid color??
    I have tryed google and youtube to try to find a answer but have had no luck in finding the solution to this problem.

    Give a man a fish, you feed him for a day. Teach a man to fish, he eats every day…
    winabe23, you joined this month—probably because you were having trouble with CSS and HTML and you have certainly come to the right place.
    I'm going to send you to several places I have found helpful in understanding how you can make drop-down menus in CSS without the need for JavaScript—though JS may be necessary for certain older browsers that do not understand pseudo classes and may be necessary for the blind or keyboard navigation.
    CSS Wizardry has a great tutorial here.
    Line25 has one here.
    For those who don't want to have to wrangle code, here is a menu generator from PureCSSMenu.
    Here's a page by Eric Meyer who describes how the concept works.
    And here is a video tutorial by "zorro30mum." It's in two parts, but there is a link to Part 2 below Part 1.
    The reason why I am posting all of these links in my answer is because you're using Spry. And Spry has been found wanting by Adobe and they are deprecating and abandoning it.
    The Spry framework is an open source Ajax framework that Adobe developed. Ajax stands for Asynchronous JavaScript And XML. On August 29th 2012, Adobe handed over Spry to github. If you want to help github develop Spry, there is a site for that, but I'm thinking you're not a JavaScript developer.
    I would recommend you pay a little more attention and time to Ajax, which is not deprecated and not discontinued. It allows you to do client-side triggers for server-side code. But that's if you want to do work in JavaScript, XML and a server-side language, like Cold Fusion, php or ASP.
    But in the meantime, the tutorials above will get you into understanding how this whole menuing stuff is done in CSS and give you the understanding necessary to do simple stuff, like changing the color of a background for a drop-down.
    I hope this helps you make great websites!
    -Mark

  • Vertical Menu Bar difficulties

    Hi, I'm using the spry menu bar to create a vertical menu bar
    on our new website. I'm new to all this but I've been playing with
    pc's for years and have got the promise of a payrise if I can get a
    neat looking website up and running.
    Anyway, my sub menu bars appear at the top of the section
    when I preview my template and move the mouse over the menu bar.
    I've put a few screen print pics on photobucket so you can see what
    I'm talking about.
    http://i199.photobucket.com/albums/aa13/ewanvx/Klannweb1.jpg
    http://i199.photobucket.com/albums/aa13/ewanvx/Klannweb2.jpg
    What I'd like is to have each sub menu "linked" to its parent
    item in the main menu so it appears alongside the parent item
    rather than at the top.
    How can I make it do this? Or this something to do with the
    IE7 glitch I keep reading about?
    Also can I just check that when I publish the website, the
    flash buttons at the top of the page will actually work as I've got
    them all set as links to other pages, but in preview mode these
    links don't seem to work.
    Its annoying me this as I was unable to get a book on
    dreamweaver cs3, so bought a book on dreamweaver 8 which of course
    doesn't use the spry system. Everything else seems very similar
    though. As I want the same basic layout at the sides and top I'm
    using a template which is the page I'm editing in the above pics.
    Please help!
    E.

    OK just managed to resolve the ftp issue. Bit tricky as our
    old (average) website is still on the same server.
    Anyway please check this link.
    http://www.klanntools.co.uk/Contact%20Us%20pagehtm.htm
    As you can see it works fine in FF but not in IE7. The child
    sub menus keep appearing at the top of the vertical menu
    bar.

  • 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

  • Horizontal Spry Menu Bar with Horizontal Sub Menu

    I have created a horizontal menu bar with only one main menu item leading to a sub menu. I would like this sub menu to display horizontally also, instead of vertically as added by default.
    I am relatively new to dreamweaver and would appreciate any help possible.

    Came across the fix by accident thru extensions in menu bar,
    and choice of cursor for each section. Feeling happy! Happy New
    Year everyone.

  • Sub-menu of eSubmit is empty in non-English language (Russian)

    BPC 7.5
    BPC for Excel in English is working correctly, but in Russian sub-menu of eSubmit is empty

    Hi Sorin!
    Thank you for reply!
    Yes, russian language for BPC installed.
    Test was done with the same user for both language - in english everything is ok, in russian except submenu of "eSubmit" too.
    Only eSubmit's submenu is empty
    p.s. I see and can run eSubmit's macros in Excel (in russian) if I add them on Excel toolbar as icon (not from Planning and Consolidation -> eSubmit -> ..)
    Edited by: Maxim Pak on Nov 17, 2010 6:57 AM
    Edited by: Maxim Pak on Nov 17, 2010 7:19 AM

  • CS4 Help with spry menu bar. Want Top Centered and Subs left-justified.

    Hi there, using DW8 mostly, but have the trial version of CS4
    for the spry menu bar. WinXP.
    Can someone help me with the spry menu bar on this page? I'd
    like the main menu to be centered, as it looks better for
    appearance, and the sub menus to be left-justified.
    http://www.manmeetswoman.com/example4.html
    But I can't seem to do that, if I make the main menu
    centered, it seems to override the submenus even if I make a class
    just for the submenu to be left-justified.
    Am I doing something wrong or is this not possible?
    And the menu bar looks horrific in IE6. I assume it looks ok
    in IE7 and above. Can someone help me with a code just for IE6 for
    this?

    audio90 wrote:
    Not quite what I was looking for. I'm wanting the top menu to be grouped together and to the right and the submenu boxes to all a single square box, not just with backgrounds extending only the length of the word. Also, your menu bar doesn't display properly in IE6 either.
    1) You should be able to achieve a square box for your submenu items by fixing the widths of all of your submenu items to something larger than the content of your widest submenu <li> tag.  This should be achievable with a single change of setting in the following CSS rule.
    ul.MenuBarHorizontal ul li {
         width:???em;
    Set your width using em units, so that the box shrinks and grows with the size of the text when the latter is changed by the user.
    2) Getting your top menu items to group together to the right may be more difficult as the entire menu bar is built on an HTML list structure with left-floated <li> tags.  If it is possible, then you should begin your experimentation with the following CSS rule
    ul.MenuBarHorizontal li {
         float:right;
    Change the float property from left to right, as I have indicated.
    My suspicion, however, is that many subsequent adjustments will have to be made.  So, back up your current CSS file before you begin.
    Roddy

  • Help with Spry Menu Bar 2.0 (vers. 1.0) - Placement of customized styles files

    Hello:
    I would like to congratulate the authors of the new Spry Menu Bar Framework 2.0 (vers. 1.0) -- it has truly been an advance and over the previous generation, and is much more user friendly for those without extensive knowledge of the spry framework.  I have also appreciated the tutorial created by David Powers that is found on the Adobe labs site, and find that it has been very helpful.
    However, I do have one general question that I would seek some clarification before completing the task of deploying the widget in its final form.  I have gone beyond the tutorial insofar as I have customized the styling to allow me to use background images for the menus and submenus in both static and hover states.  I have also gone directly (with add of the tutorial) to work on my own site rather than recreating the bayside tutorial.  I know have my styles embedding into a template page (.dwt).
    My question is whether those styles embedded in the head of the template page should be transferred to a separate styles page and attached (or possibly included in the styles page that handles the CSS for the layout aspects of my site), or whether it should overwrite the styles included in the basic styles skin for the widget.  The latter seems the most likely answer, as many of the classes are for the same names as those in my template page, but have different (and conflicting settings).  However I wanted to make certain of this before proceeding.
    Once again let me thank those responding to this query in advance for the helpful tips I have received along the way, and that will likely follow this post.
    I could post the css and the html with this querry, but I hope I have explained the question well enough that a general response will be all that I need.
    Thanks again for the help.
    Steve Webster

    Thanks for your helpful response.
    I had already tried the various options (overwriting basic styles, skins, etc) and quickly learned to back track as they were definitely not the answer to the question I posed.  I then included them in the customized style sheet for the entire site and clearly de-marked them as styles governing the spry menu widget 2.0 (1.0) with the warning that future developers working on the site should use care in amending them, and warning that they be remain included in the general styles file.
    I was going to indicate in response to my own query that this seemed to be the best practice, but your response confirmed what I had learned.
    Thanks once again for your helpful advice and intervention.
    Steve Webster.

  • Firefox 4 Menu Bar - When I hover over or select a menu bar item, the menu bar sub-menu becomes transparent and unreadable. Is this a known issue that can be corrected with an update or is it functionality that is not designed to work with this version?

    Firefox 4 Menu Bar - When I hover over or select a menu bar item, the menu bar sub-menu becomes transparent and unreadable. Is this a known issue that can be corrected with an update or is it functionality that is not designed to work with this version?

    If this happens on monitor 2 of 2, this problem has been solved here:
    http://support.mozilla.com/en-US/questions/794823#answer-157988
    Go to "Firefox"--> "Options" --> "Advanced"
    Then un-check "Use hardware acceleration when available"
    While not verified, I believe this problem is due to an SLI configuration where the focus is on monitor 1. (I.e acceleration is available, but only on monitor 1.)

  • How to remove empty space in CSS table and move spry menu bar?

    Hello! I created www.stonecreekha.com about a year ago basically by watching youtube tutorials and haven't done much with it since so I've forgotten everything! In IE7, everything appears as it should; but in Firefox and IE8, the spry menu bar is positioned slightly higher than it should be (it slightly cuts off the foot of the golfer) and there is an empty space between the navigation bar and the photo. The source code can be viewed from the website. Here are some pics:
    IE7 - how it is supposed to look:
    IE8:
    Firefox:
    Dreamweaver:
    So basically, I need to know how to remove that empty space between the navigation bar and the picture, and how to move the spry menu bar down a few pixels, in a way that it looks correct in IE8 and Firefox, and preferably IE7 as well.
    P.S. I'm a noob so if you could be as specific as possible on what to do in Dreamweaver I'd really appreciate it. Thanks

    I belive it's because of the -minus margin being used on the navbar, that you will need to use a negative margin to bring up both the left and right bodyArea divs.
    Try :       margin-top: -18px;  on both divs.  You may need to play around with that to get it more precise.
    Again, not sure what effect that has on IE as I can't test it.
    If it affects IE, then you may need to feed IE a conditional comment for the placement of those divs.

  • How to Create inner Sub-Node in Menu bar

    Abap Masters,
                        I have Created Submenu name of <b>File</b>. But i want to include 3 inner                               Sub-Nodes in File. Like as
                       <b> Menu</b>
                       <b>File </b>> <b>Recent File</b>
                                         <b>Deleted File</b>   
                                         <b>All Files</b>   
    Can Anyone of the ABAP Master Help me ?

    hi,
          in ur program.
    write the following code.
    set pf-status 'MENU'.
    double click menu.
    u will be taken to menu painter,there in the menu bar section write main menu item name that is File in ur case.
    double click on File.
    u will get an option to add elements in the File menu give code and add the items.
    and further if u wanna add submenu items double click the menu item (recent file) to get an option for adding sub menu items.
    using the assigned codes give the funtionality in ur program
    if help ful reward some points.
    regards,
    Ravi

  • How can i see the MENU bar. Help says "Right-click on an empty section of the Tab Strip. What is a Tab Strip?

    My friend just bought a Windows 8 laptop so I told her to download the latest version of FireFox. Unfortunately, some idiot removed the Menu Bar which most people love. You can see all of your options in plain English. Anyway, I referred her to help and cannot believe it's so hard to get a simple answer to this question. Why does FireFox make it so difficult to get an old fashioned menu bar?
    Help says, "Right-click on an empty section of the Tab Strip and check Menu Bar". OK, what is a "TAB STRIP" and where does she find it? Who writes these silly, useless help tips?

    Grad, you made some good points but we still disagree. I'll acknowledge that maybe millions was a slight exaggeration but nobody has an accurate count. However, I do understand the difference between making something simple and obvious versus a programmer trying to prove how clever he or she is.
    Grad, I'm guessing you and your friends are much younger than us as we are well above the age of 50.
    As for the number of clicks, I'm confused by your comment. My Menu Bar is always visible so I have to merely '''click once on Bookmarks''' to get to those menu options. It sounds as if you have to initially click on the orange FireFox button in order to see the Menu Bar, and then click a 2nd time on Bookmarks. That sounds like 2 clicks of the mouse to me.
    I have Windows 7 and never saw Windows 8 so I can't comment on your excellent question. I personally had the '''Menu Bar displaying 100% of the time''' for as long as I could remember. I just couldn't remember how I initially turned it on several years ago and the help file proved to be more confusing than helpful.

  • Reg: Creating sub menu for a concurrent program under menu on the Menu bar

    Hi all,
    I would like to know, how we can create a sub menu for a conc. program under a sub menu on the Menu Bar ?
    Thanks In Advance.
    Regards,
    Neeti

    It is a 2 step process. First, enable a new menu entry, which when called will fire a user-named trigger, where the call to the concurrent programs form is the executed. How to do it depends on the release. Previous to 11.5.10, this has to be done trough custom.pll, and 11i10 an r12 with forms personalization. Documentation and examples exists for both cases, have a look on metalink.

Maybe you are looking for

  • Out going Excise Invoice

    Hi to all Good morning my problem is that i created more than 100 of outgoing excise invoice but in the incomming payment there is no customer. any one can helpme out Gopi j n

  • Installing Snow Leopard but also Boot Camp or Parallels

    I have a 2006 MacBook (Intel, core duo) and have a 320 gb HD, 2 gb RAM, running 10.5.8. I'd like to install Snow Leopard but also would like to partition my HD and install Boot Camp (or Parallels 4.x - I have that version, fully paid etc. but not ver

  • Problem with journalizing

    Hi all, I was trying to use the 'Change data capture' feature in ODI. I was able to start the journal for 1 of my models. In the operator the process failed giving the error : java.sql.SQLException: ORA-00439: feature not enabled: Streams Capture The

  • Doubt on Depreciation in Fixed Assets Module

    Dear Members, When we run depreciation we have an option to select the "Close Period" check box and Oracle Standard user guide says that "Depreciation can be run as many times as needed in the current period as long as it is not closed". Now when we

  • ECC 6.0 Upgrade posting issue.

    Hi, Recently we have upgraded to ECC 6.0 from ECC 5.0. After running the payroll in ECC 6, we have a done a simulation in posting. Got an error "Incorrect documents" . i went to the check the error in detail. below mentioned is the error. Balancing f