MenuBar -submenu color

Hi I've some problem with setting style of menubar.
I've two question:
I can change the color of menubar, but may I change the background color of submenu ?( I see them still white).
May I change the orientation of submenu? (for example from vertical to horizzontal and vice versa).
Thank you
Marco

Here is how to change the menubar item background color ..
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="left"
        backgroundColor="white"
>
    <mx:Style>
    .menuBarStyle
    backgroundColor : #ff0000;
    </mx:Style>
    <mx:MenuBar menuStyleName="menuBarStyle" id="myMenuBar" labelField="@label">
        <mx:XMLList>
            <menuitem label="MenuItem A">
                <menuitem label="SubMenuItem A-1" enabled="false"/>
                <menuitem label="SubMenuItem A-2"/>
            </menuitem>
            <menuitem label="MenuItem B"/>
            <menuitem label="MenuItem C"/>
            <menuitem label="MenuItem D">
                <menuitem label="SubMenuItem D-1"
                    type="radio" groupName="one"/>
                <menuitem label="SubMenuItem D-2"
                    type="radio" groupName="one"
                    selected="true"/>
                <menuitem label="SubMenuItem D-3"
                    type="radio" groupName="one"/>
            </menuitem>
        </mx:XMLList>
    </mx:MenuBar>
</mx:Application>
I'm not sure about #2.
hope this helps,
Babo,

Similar Messages

  • Menubar submenu centering problems

    I just downloaded the spry widgets today to use the menubar
    in a webpage. I need the menu items to be centered but the submenus
    to be on the left. Unfortunately while it works in Firefox it does
    not work in IE7. In IE the menu items on top are centered but the
    submenus shift over to the right with the left edge of the submenu
    directly under the center of it's parent menu item. I checked the
    Menu
    Bar Styling Examples thread but nothing I tried seemed to work
    (ironically i accidentally commented out the ul.MenuBarHorizontal
    li.MenuBarItemIE css and it did align correctly in ie even though
    it caused other problems)
    Here's the html code I'm using in the page that contains the
    menubar along with any css for the menu bar in the actual page:
    quote:
    <style type="text/css">
    ul.MenuBarHorizontal li
    width: 103px;
    text-align:center;
    font-size:11px; border:none;
    ul.MenuBarHorizontal ul li
    width: 150px;
    text-align:left; font-size:11px; border:none;
    ul.MenuBarHorizontal a
    text-align:center; background-color:#9ACABE; color:#FFFFFF;
    font-weight:bold; font-family:arial;
    ul.MenuBarHorizontal ul a {
    text-align: left;
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    color: #003377;
    text-decoration:underline;
    </style>
    ****START OF HTML CODE****
    <td valign="middle" height="25px" align="center"
    bgcolor="#9ACABE">
    <table cellpadding=0 cellspacing=0 width="100%"
    align="center">
    <tr valign="middle" align="center">
    <td align="center" valign="middle">
    <!-- START OF MENUBAR -->
    <ul id="menubar1" class="MenuBarHorizontal">
    <li><a href="about.html">ABOUT
    US</a></li>
    <li><a class="MenuBarItemSubmenu"
    href="services.html">SERVICES</a>
    <ul>
    <li><a href="itServices.html">Information
    Technology</a></li>
    <li><a
    href="consultServices.html">Consulting</a></li>
    <li><a href="accountServices.html">Customer
    Support</a></li>
    <li><a href="softwareEngineering.html">Software
    Engineering</a></li>
    <li><a href="immunization.html">Immunization
    Registry</a></li>
    <li><a
    href="products.html">Products</a></li>
    </ul>
    </li>
    <li><a class="MenuBarItemSubmenu"
    href="alliances.html">ALLIANCES</a>
    <ul>
    <li><a
    href="customers.html">Customers</a></li>
    <li><a
    href="partners.html">Partners</a></li>
    <li><a
    href="affiliates.html">Affiliates</a></li>
    </ul>
    </li>
    <li><a href="news.html">NEWS &amp;
    EVENTS</a></li>
    <li><a
    href="contact.html">CONTACTS</a></li>
    </ul>
    <!--Initialize the Menu Bar widget object-->
    <script type="text/javascript">
    var menubar1 = new Spry.Widget.MenuBar("menubar1",
    {imgDown:"", imgRight:""});
    </script>
    </td>
    </tr>
    </table>
    </td>
    Here's a copy of the SpryMenuBarHorizontal.css file I have:
    quote:
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release
    1.5 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights
    reserved. */
    LAYOUT INFORMATION: describes box model, positioning,
    z-order
    /* The outermost container of the Menu Bar, an auto width box
    with no margin or padding */
    ul.MenuBarHorizontal
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: auto;
    /* Set the active Menu Bar with this class, currently setting
    z-index to accomodate IE rendering bug:
    http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html
    ul.MenuBarActive
    z-index: 1000;
    /* Menu item containers, position children relative to this
    container and are a fixed width */
    ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: 8em;
    float: left;
    /* Submenus should appear below their parent (top: 0) with a
    higher z-index, but they are initially off the left side of the
    screen (-1000em) */
    ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: 8.2em;
    position: absolute;
    left: -1000em;
    /* Submenu that is showing with class designation
    MenuBarSubmenuVisible, we set left to auto so it comes onto the
    screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 8.2em;
    /* Submenus should appear slightly overlapping to the right
    (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation
    MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    ul.MenuBarSubmenuVisible
    left: auto;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    border: 1px solid #CCC;
    /* Menu items are a light gray block with padding and no text
    decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #EEE;
    padding: 0.5em 0.75em;
    color: #333;
    text-decoration: none;
    /* 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: #33C;*/
    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: #33C;*/
    color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a
    given menu item
    /* Menu items that have a submenu have the class designation
    MenuBarItemSubmenu and are set to use a background image positioned
    on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
    /*background-image: url(SpryMenuBarDown.gif);*/
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation
    MenuBarItemSubmenu and are set to use a background image positioned
    on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    /*background-image: url(SpryMenuBarRight.gif);*/
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class
    designation MenuBarItemSubmenuHover and are set to use a "hover"
    background image positioned on the far left (95%) and centered
    vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    /*background-image: url(SpryMenuBarDownHover.gif);*/
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class
    designation MenuBarItemSubmenuHover and are set to use a "hover"
    background image positioned on the far left (95%) and centered
    vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    /*background-image: url(SpryMenuBarRightHover.gif);*/
    background-repeat: no-repeat;
    background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless
    you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form
    controls, we underlay each submenu with an iframe*/
    ul.MenuBarHorizontal iframe
    position: absolute;
    z-index: 1010;
    /* 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;
    If I can get this last issue working I'd be all set with the
    website. If anyone has any suggestions I would greatly appreciate
    it. Thanks.

    All you have to do is remove the text-align:center that you
    added to this rule:
    ul.MenuBarHorizontal li
    width: 103px;
    text-align:center;
    font-size:11px; border:none;
    In the Menu Bar Styling Examples, we don't change the
    text-alignment of the li, we change the alignment of the link
    elements which are the actual menu items.
    --== Kin ==--

  • Spry Menubar background color help?

    How does one go about making the background color of your submenus different from the main menu bar?
    Here's a site I have found with basically the submenu I want, notice the submenus have a background color and the menubar has a background image.
    http://thecreatureconservancy.org/
    (I am running CS5.5)
    Thank you!

    Have a look at the following where I have used an untouched SpryMenuBarHorizontal.css
    <!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">
    </head>
    <style>
    body {
        width: 980px;
        margin: auto;
    #header {
        height: 200px;
    #nav { /* USE YOUR OWN BACKGROUND IMAGE */
        background-image: url(http://www.copperleafcrossing.com/thecreatureconservancy/images/topnav_bkgd.jpg);
        height: 35px;
    ul.MenuBarHorizontal a {
        color: #FFF;
        background-color: transparent;
    ul.MenuBarHorizontal ul a {
        background-color: #436D9C;
    ul.MenuBarHorizontal li.MenuBarItemIE {
        background: transparent;
    </style>
    <body>
    <div id="header"></div>
    <div id="nav">
      <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>
    </div>
    <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>
    Gramps

  • Spry menubar submenu horizontal instead of vertical

    I have spent two days trying to figure out why the submenu on my spry menubar goes horizontal instead of vertical.  I have watched youtube videos and all the tutorials automatically have them going vertical under each other.  My submenu bar goes left to right and i dont want that.  I have tried several changes with the code in CSS and the HTML and I can move the main menubar and the submenu all over the screen, just cant get it do drop down under each other.  Help please!!

    Have a look here for auto widths http://labs.adobe.com/technologies/spry/samples/menubar/AutoWidthHorizontalMenuBarSample.h tml.
    The only change I would make to the above is to add !important to the following
    ul.MenuBarHorizontal ul li {
        display: block;
        float: none !important;
        width: auto;
        white-space: nowrap;
        border-bottom: solid 1px #EEE;
    Gramps

  • MenuBar - Submenu Indicator

    I've gone over the Spry sample menubar code carefully and I
    just don't see how this all works. In the samples, whenever a menu
    has a submenu there is a black indicator present. On mouse over,
    the black indicator changes to white. In my code, I get the white
    indicator on mouse over; but, the black indicator is not present at
    any time. I don't find this too surprising because I don't have a
    black indicator image present anywhere nor do I have such an image
    referenced anywhere. As far as I can see, the sample Spry code
    doesn't have a black indicator image or any such reference either,
    yet the Spry sample code works and mine doesn't. Could someone
    please explain this to me (i.e., what I have to do to get the black
    submenu indicator to appear)? I would really appreciate it. BTW, my
    setup can be seen at
    http://www.simpson-rich.com/main.
    Thanks for any help.
    ... doug

    First docs:
    http://livedocs.adobe.com/flex/3/langref/mx/controls/MenuBar.html
    Default component is
    mx.controls.treeClasses.DefaultDataDescriptor
    so you can see in sorce realization.
    It should reazile interface http://livedocs.adobe.com/flex/3/langref/mx/controls/menuClasses/IMenuDataDescriptor.html

  • MenuBar submenu display

    when i go on a root menu element of a menubar, automatically i display a submenu element, if it exists.
    May I make a condition to decide to see the submenu or no.
    thanks

    First docs:
    http://livedocs.adobe.com/flex/3/langref/mx/controls/MenuBar.html
    Default component is
    mx.controls.treeClasses.DefaultDataDescriptor
    so you can see in sorce realization.
    It should reazile interface http://livedocs.adobe.com/flex/3/langref/mx/controls/menuClasses/IMenuDataDescriptor.html

  • Menubar submenu display problems

    I have created a menubar using graphic elements as the
    submenu triggers, and I was able to go in and make modifications to
    the css and js files so that everything was being properly
    positioned in FF and IE6. When I checked in IE7, however, the
    submenu's appear much lower than in FF/IE6. Here is a link to the
    page to see what I am talking about:
    http://www.jefffulwiler.net/spryWidgets/menuCombo.html.
    Any suggestions on addressing this issue would be greatly
    appreciated. Thanks.
    Jeff

    This fix was posted in another thread and worked for me:
    The problem for the false is a known bug we have for the Spry
    Menu in a solution for another IE bug. You'll have to go in your
    CSS and look for this class "ul.MenuBarVertical iframe". Inside you
    should add the following line:
    filter:alpha(opacity:0.1);

  • Green menubar & "bad" colors in all apps on G5

    This problem surfaced when I first installed 10.5 months ago, & persists after fully erasing disk & reinstalling with 10.5.2 -- and did NOT occur under 10.4.x or before.
    I have a blue-green menubar at top (main menubar) since 10.5 was installed -- ALSO
    All colors in any image viewed -- i.e, .jpg or other photo images in image-oriented app's such as Preview -- will be badly distorted and altered unrecognizably IF the image is viewed at any size larger than thumbnail. Same for iPhoto and other apps, as I said.
    Images viewed over the internet are fine, but will lose proper color if downloaded and viewed! Videoconference images with iChat have good color, same for online with Safari and Firefox. However, anything viewed in Preview will open with colors so altered that the image is useless.
    HELP!! This makes my G5 useless for viewing "field visit" photos for my visit or any image that's emailed to me. I can't imagine that I'm the only person with this problem, especially since it persisted AFTER I wiped the drive and reinstalled from original 10.5 family-pack installer dvd.
    Any guidance, any hope would be greatly appreciated, even via email. First problem that I couldn't solve, ever, in 20 years of Macs, so I'm baffled.

    I post this so anyone else going through this will have a hint on where to go to solve it.
    The solution was simple: turns out that the display used for this particular G5 had an odd interaction with the Mac's color prefs (and that same monitor works perfectly with all other Macs!)-- I have NO idea regarding cause or in what the mixup is rooted, so if someone at Apple wants more info, contact me! However, simply having the computer boot ONCE with any other monitor causes something in the Mac to reset, and transferring it back to the original monitor leaves the colors set properly, and the problem disappears.
    Something very subtle is happening, here -- and someone with more tech and system-software background than I have might want to put some thought into this. It will rear its nasty little head in other situations, I'll bet on that. Feel free to email me if you want more data.
    Problem monitor was ANY projection monitor, and in this case specifically a XR-30X DLP projector. Note that this was NOT a problem with simple color-table or color values - everything displays perfectly, even in complex color depth, just fine EXCEPT the color of the menubar and the colors are totally distorted in any image above thumbnail size in ANY image format in any application displaying photo quality images (that draws its color table from the computer rather than from internet instructions). AND note that the projector handles the colors properly when the VGA cable is transferred to it from another monitor, and afterward, so the miscue is happening on the computer end, not in the projector. Only if the computer was booted from the projector does the interaction occur. Get the drift? Thanks! Let me know if more info is useful, and I'll email it or post it here or as instructed.

  • Changing Submenu Color

    Hi Anybody
    I'm using CS3.  I want to change the color of an existing Submenu.  When I follow the instructions on the Training Disk using Photoshop the color changes but the submenu doesn't work anymore.
    Can anyone help me.  I want to keep changing the color on this Submenu (Film Submenu) for different projects.
    Thanks in advance,
    Frank

    Thanks Hunt
    Yes I want to change the background color in a submenu. I know how to 
    change everything else.
    But Since I wrote this I learned something else and that may be the 
    problem.  This submenu as most that come with the Encore program has a  video that
    plays when on screen, TV only.  I followed the video link with  windows
    explorer and found it in the Library file of Encore CS3.  It plays  but you
    can't change the color. So although I see my color change on the program 
    preview when it is burned to disk the video plays in the original green color of 
    the video.  (Film Submenu under Entertainment)
    These are things that they don't tell you in any book you buy or on the 
    training disk.
    Can the matching video have its color changed to match the new color of the
    Submenu Background?
    Thanks
    Frank
    In a message dated 2/18/2011 12:28:35 P.M. Eastern Standard Time, 
    [email protected] writes:
    Frank,
    Just to make sure that I am following what you  need, and what you are
    doing, you wish to change the color in a Scene  Selection Menu, that is accessed
    from the Main Menu. Is that  correct?
    You wish to change what, the background color, the color  of Text or the
    color of graphics (or all)?
    The easiest way to  change the colors of everything in any Menu (the
    exception being the  Sub-picture Highlights of a Button), is to Dbl-click on that
    Menu (this  applies to either a Main Menu, or a Scene Selection/Sub-Menu),
    to get it into  the En Menu Editing Panel. Now, Rt-click on that Menu and
    choose Edit in  Photoshop. This does several things, and not all are evident,
    unless you look  carefully:
    A link is created to that Menu (if you  look, when in PS, you will see a
    rather odd file name - that is the link)
    PS is launched
    The Menu LINK (a PSD), will Open in  PS
    There, you can edit, as is required. When done, you  will want to hit Save,
    so that the changes can follow the link back to En.* Do  NOT do a Save_As,
    or you will not follow that link back to  En.
    For the actual color of Sub-picture Highlights, you can do  that in the
    Menu Editing Panel, via Color Sets.
    If you are  attempting to change some other aspect, just correct me, and we
    can help you  get what you want. If there is something different needed,
    maybe post a  screen-cap of your Menu Editing Panel, and also that Menu Open
    in PS, with all  Layer Sets twirled open?
    Good  luck,
    Hunt
    I have encountered a little glitch,  when doing a Save with a linked
    Menu, from PS. Under some, unidentified cases,  the Save does not update the
    Menu in En. This is irregular, and intermittent,  and the "why" has never been
    found. Through experiments, I found that if one  did three (3) Saves, the
    link always updated. Just doing two (2) did not fix  things, when that glitch
    surfaced. Because of this anomaly, I have developed a  habit of doing the
    three (3) Saves. What I do is twirl open all Layer Sets  that I will be
    working with in PS, make my edits, and then hit Ctrl-S (Save).  Now, I begin
    closing my Layer Sets, and hit Ctrl+S again. When I have closed  all Layer Sets,
    I hit Ctrl+S one more time. Note: If you have not made any  changes,
    Edit>Save will be grayed out, but Ctrl+S still  works.
    I wish that I could track down what the criteria were, for  the failure to
    update in En, but that has eluded me, and many others. It seems  that
    certain folk get bitten by this issue, more than others - some have never 
    experienced it. Whatever triggers it, the three (3) Saves has always been 100% 
    effective for  me.

  • Submenu colors change when hilighted

    i was able to change the color of the Sub menu When u Highlight Gallery.... but when you scroll up on it it reverts back to its original color and wont stay the color i chose.. Help
    http://splexcity.biz/test/html5/index.html#!/page_SPLASH

    I can see the whole code with my developer tools, thanks.
    This controls the submenu style.  It's on line 99 of your style.css
    http://splexcity.biz/test/html5/css/style.css
    .submenu ul > li > a{
        display: block;
        height: 100%;
        line-height: 26px;
        text-decoration: none;
        position: relative;
        font-family: 'proxima_nova_cn_rgregular';
        font-size: 14px;
        color: #fff;
        white-space: nowrap;
        padding: 0 20px;
        background: #3791e5;
    But I don't see any CSS governing the hover or MouseOver state.  So I'm assuming the submenu styles on hover are being controlled by jQuery Superfish, but I'm not seeing where.
    http://splexcity.biz/test/html5/js/superfish.js
    Nancy O.

  • Submenu Color

    How do I change the submenu font color, and sub sub menu bar font color on a spry menu bar without changing the main menu bar color as well?

    Styling submenus may be done by taking advantage of descendant selectors. As long as you include this:
    ul.MenuBarHorizontal ul
    (see red) in style selectors, you will be styling the submenus and not the main menus.
    Look through the SpryMenuBarHorizontal.css stylesheet carefully, and add your styles to existing selectors that begin with ul.MenuBarHorizontal ul.
    If you want to change properties that do not appear in those selectors, properties that would normally cascade from the top level menus, add the properties and values to the submenu selectors, in the appropriate section of the stylesheet.
    Beth

  • Menubar submenu display problems in IE

    I have created a menu with dropdown submenus which display
    fine in safari and firefox, though in IE 6 and 7 I'm having
    problems with the submenus. In between each submenu box is a gap
    which should be transparent to show the colour of the cell
    underneath, though in Internet Explorer instead of being
    transparent its showing white inbetween the boxes, also you can see
    between the top two boxes part of some text which looks like it
    says 'false'. Is there anybody out there who can help me? I'm so
    stuck!! Many thanks, Rebecca

    This fix was posted in another thread and worked for me:
    The problem for the false is a known bug we have for the Spry
    Menu in a solution for another IE bug. You'll have to go in your
    CSS and look for this class "ul.MenuBarVertical iframe". Inside you
    should add the following line:
    filter:alpha(opacity:0.1);

  • MenuBar submenu shows up way right in IE

    Please Please help. I am using the horizontal menu barwith 2
    submenu levels.
    I have searched the forum and can't find the fix that works.
    I loaded the 1.5 .js file, but it didn't fix it.
    You can see the site at
    adshapiro.com/test
    The CSS is located in the Spry folder....
    I am still looking for the fix on the forum but if you know
    how to fix this let me know

    Got my to work - found this in the samples
    add this to your styles
    <style type="text/css">
    <!--
    /* Center the text within all menu item links.
    ul.MenuBarHorizontal a {
    text-align: center;
    /* Set the the alignment back to left for any
    * menu item links that are in a sub menu.
    ul.MenuBarHorizontal ul a {
    text-align: left;
    -->
    </style>
    Worked for me

  • Menubar submenu icon display right side..

    Hi.,
             I have using menubar with  custom item renderer menus. sub menu icon was displayed right side corner. but i want to display left side icon and then labelfield., using iconfield and labelfield also.
    Any one help this problem..
    With Regards.,
    Lings

    Flex 4.1 will have support for right-to-left languages.  Is that what you
    are trying to accomplish or are you just trying to get a different look?  If
    you just want a different look, subclass MenuItemRenderer and look at past
    threads on how to apply it.

  • Spry submenu colors and rollover images

    New both to spry as well as creating flyout menus. I've spent
    hours attempting to use the spry menus properly, but have hit a
    brick wall in a couple of areas.
    First (and I'm sure I must be missing something incredibly
    obvious), I would like to have the background of my submenus a
    different color than that of the main list. Somehow, I just can't
    get it right.
    Second is my need to for a different rollover effect for
    different items in the first list. I need a different sized gif
    shape to highlight the main words in the initial list. Through
    switching out the default rollovers in the css, I can have a custom
    image, but not a separate one for each selection.
    Any advice (other than read a tome or two on css - I'm
    running low on time for this :)?
    Thanks

    Spry is part of Adobe. This forum, though owned by Adobe, is
    volunteer
    staffed. By "our products" I was referring to my company's
    products. We make
    add-ons for Dreamweaver but we are an independent company
    with our own
    support system. Spry is very new and the documentation is not
    really
    targeted at beginners. It would seem you could benefit from
    one-on-one
    support, which you should be able to get by contacting Adobe
    Customer
    Support directly. I believe there are 2 or 3 free support
    calls you can make
    before charges are incurred. But you might get lucky and find
    someone on the
    forum who has the time and the knowledge to help you - it's
    just not
    guaranteed that you will.
    Al Sparber - PVII
    http://www.projectseven.com
    Extending Dreamweaver - Nav Systems | Galleries | Widgets
    Authors: "42nd Street: Mastering the Art of CSS Design"
    "Amandaish84" <[email protected]> wrote in
    message
    news:[email protected]...
    >I apologize I was un-aware that I couldn't get help here
    because I didn't
    >know
    > that Spry isn't a part of Adobe, in fact until I
    recently purchased CS3 I
    > never
    > heard of it. I just came to this forum because I found
    it under 'support'.
    > I
    > thought maybe I needed to do something different with
    coding in
    > dreamweaver to
    > make the changes I needed/wanted to change. I also saw
    an example of what
    > I am
    > looking to do on adobe's training dvd that came with the
    software. It
    > skipped
    > over the steps on how to get to that point though, so I
    thought coming
    > here was
    > the right thing to do since there are no books out yet,
    I can't go to my
    > college I graduated from because they're still using MX
    2004 and I
    > honestly
    > wasn't sure where to go. If I would have known that I
    had to go somewhere
    > else
    > (which I don't even know who to go to then about Spyr) I
    wouldn't have
    > wasted
    > anyone's time here or bothered you with this. What
    confuses me is when you
    > said
    > "this is not about one of our products" well then where
    do I go? And you
    > also
    > said this is a user forum not a support forum, then why
    was I directed
    > here by
    > going to the support button? You probably think I sound
    nasty but I'm not
    > trying to, I hate writing this because you can't hear my
    tone of voice.
    > I'm
    > just not sure where to go, am I supposed to call Adobe?
    I was under the
    > impression that was for help with having software
    problems such as the
    > program
    > not installing properly.
    >

Maybe you are looking for

  • HP Laserjet 4015 can't print via usb

    i have an hp laserjet p4015 printer will not print / usb connected /port dot4 / Windows 7 OS / Error reads Error in the print que / No system changes.  Printer worked in one location and now does not print in new location.  Using 6ft cable.  Help!

  • How do i add a location to an image in photos?

    I am trying to add a location to an existing image (I could do it in i-photo) and can not figure out how to add an address, any help?

  • Word 2008 - "read only" after ML install

    I installed Mountain Lion today and now when I try to creat a new folder in Word 2008 it will only allow a "read only" folder (which helps me none) and then won't even let me insert a folder name!  I searched the communities and haven't seen this iss

  • How to create Subscreens more than 2.

    Hi All, My requirement is to create more than 2 subscreens . By default we can  create two subscreens in Screen Painter. I need to create 10 subscreens in screen, will anybody help me how to create subscreens Regards, Madhavi

  • Updating iPod nano Manually-How do you do it?

    I am trying to update my iPod manually. The instructions say to "Open iTunes and select iPod nano in the Source list", but iPod nano does NOT appear in my Source list. Is this possible and how do I get it to appear, so I can use properly. Thanks