Spry menu without background color

Hi
I have tried to remove the background color in the CSS file.
But if I remove it, it dosent work correct.
I have removed:
background-color: #3a90cb; (in ul.MenuBarHorizontal a)
and
background: #FFF; (ul.MenuBarHorizontal li.MenuBarItemIE)
I want to remove the background color to be able to see the
design behind (with gradient) instead of one color
Hope you can help me
Best Regards
Kim

1: The drop down menu/submenu now has a white background, and
cant figure out where to change that
2: Between submenu 1 and submenu 2 on each headmenu, the word
disable are showing up.

Similar Messages

  • Can anybody say why In the layer menu the background color is white when opening a layer mask, and why does it automatically turns black by simply opening the layer mask properties menu? The vector mask is white anyway.

    Can anybody say why In the layer menu, the background color is white when opening a layer mask, and why does it automatically turns black by simply opening the layer mask properties menu? The vector mask is white anyway.

    Topic or subject titles should be clear, pertinent and concise so that individual users can tell at a glance if they can help or not.
    That field is not for attempting to fit your entire question in there.
    Please keep this in mind next time you post.  Thank you.
    A lot more information about your hardware and software is needed.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CC", but something like CC2014.v.2.2) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    a screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Is it possible set programm menu module background color?

    HY,
    is it possible set programm menu module background color?
    thanks

    Hy,
    thanks for your answer, but, if i understand well,
    it's for individual menus and submenus (lower-level menus, displayed by default as vertical Lists of menu items) menu items
    I am speaking about a main menu (the top-level menu, displayed by default as a horizontal strip)
    And, when create a VA in menu module isn't possibile set color but only font.
    I believe it need create VA in set_visual.....
    Thanks again
    Rosario

  • IE6 - possible to show submenu without background-color?

    Hi you all,
    problem: I want the submenu to show just text, without background. This works in all browsers except IE6. Is it possible to take this default(?) background off?
    Thank you...

    Hallo Hans,
    it does work now, thank´s a lot!
    Liebe Grüße aus Mannheim,
    Alex
    Am 06.09.2010 um 10:52 schrieb hans-g.:
    Gruess Dich Alex,
    >
    I take the liberty of specify Nancy O.'s hint: +"Look for IE 
    comments in your Spry CSS file.  Near the bottom."+ She thinks about 
    this;
    >
    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;/
    >
    With this correction, I have suspended the white color, so that you 
    can use another of course.
    >
    Hans-G.
    >

  • Spry Menu Bar link colors not consistent

    I have a horizontal Spry menu bar set up with 4 items in it.
    The first item is the Home link and does not have a submenu, but
    the other 3 items do. What I want is when you roll over the main 4
    items the text link color will be purple (#583399). When an item
    has a submenu the rollover text link on the submenu links will be
    green (#89b11a).
    My current code almost works, but the problem I am having is
    that the Home link
    without the submenu changes to a green color instead of
    purple like the other 3 main links. If I add a test submenu to the
    Home link then it turns purple like the other links. How can I get
    the Home link to change to purple like the others without having a
    submenu attached to it?
    Here is my html code that refers to the menu:
    <ul id="MenuBar1" class="MenuBarHorizontal">
    <li><a href="index.html"
    class="MenuBarItemSubmenu">HOME</a></li>
    <li><a href="about.html"
    class="MenuBarItemSubmenu">ABOUT</a>
    <ul>
    <li><a
    href="services.html">services</a></li>
    <li><a
    href="bios.html">bios</a></li>
    <li><a
    href="news.html">news</a></li>
    </ul>
    </li>
    <li><a href="work.html" class="MenuBarItemSubmenu"
    >WORK</a>
    <ul>
    <li><a href="design.html">design</a>
    </li>
    <li><a
    href="advertising.html">advertising</a></li>
    <li><a href="casestudies.html">case
    studies</a></li>
    </ul>
    </li>
    <li><a href="contact.html"
    class="MenuBarItemSubmenu">CONTACT</a>
    <ul>
    <li><a href="#">.</a></li>
    <li><a
    href="location.html">location</a></li>
    <li><a
    href="opportunities.html">opportunities</a></li>
    </ul>
    </li>
    </ul>
    Here is the Spry CSS code that pertains to the links:
    /* Menu items are a light gray text with padding and no text
    decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    padding: 0.5em 0.75em;
    color: #666666;
    text-decoration: none;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    /* Menu items that have mouse over or focus have green text
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    color: #89b11a;
    /* Menu items that are open with submenus are set to
    MenuBarItemHover with purple text */
    ul.MenuBarHorizontal a.MenuBarItemHover,
    color: #583399;
    /* Menu items that are open with submenus are set to
    MenuBarItemHover with purple text */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover,
    ul.MenuBarHorizontal a.MenuBarSubmenuVisible
    color: #583399;
    And
    here
    is a link to my test file so you can see what I am talking
    about.
    Thanks for any help and let me know if you need anything else
    to help with it.

    Anyone??

  • Spry Menu question #2: colors

    Hi again...
    I can't seem to get any settings to change colors to a Spry
    menu to anything other than the text.
    Even though the changes show in the CSS pallette, nothing
    changes the colors of the menu itself when viewed.
    Any thoughts?
    thx
    Andrew

    Have you read the comments within the css file - if you go
    through it
    carefully, it explains (not clearly enough in my opinion),
    what each rule
    does and what effect it has on the menu.
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au
    Spry Widget Examples
    http://www.dreamweaverresources.com/spry-widgets/
    "turner111" <[email protected]> wrote in
    message
    news:f3peab$t9b$[email protected]..
    > Well, for example, background color...

  • Changing only 1 menu item background color in a VerticleSpryMenu

    Im working on this Verticle Spry Menu Bar (seen below) . I'm trying to figure out how to change the 'Get Started!' Item to be a different color than orange.  Home, Support and Get Started!  are clickable links with no submenu whereas the other menu items have submenus. Is there a special code to customize just Get Started!. Through CSS stylesheet I can get Get Started to change color  but then Home and Support also change color and I dont want that.
    Thanks

    For all menu items use the following selectors
    ul.MenuBarVertical a
    ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
    ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
    For menu items with sub menu items use the following selectors to override the above
    ul.MenuBarVertical a.MenuBarItemSubmenu
    ul.MenuBarVertical a.MenuBarItemSubmenuHover
    Gramps

  • Spry Bug? Background Colors/Images not showing in IE6/XpP

    I'm trying to wrap up my site for MiniMAX SE7EN (Cheap plug,
    it's on 6/26 in DC) and I've got a Spry Accordion Component I used
    in Dreamweaver CS3 to display all the speakers and then I switched
    the CSS file to allow for different colors and a background image
    to show through. Seems fine in Firefox and IE7 but in IE6 for PC's,
    it appears black and only black. Is this a Spry bug or something I
    screwed up with regarding the CSS?
    http://www.minimaxconference.com/

    I am having the same problems in IE7. I'm using the latest
    version of everything (Spry 1.6.1 and javascript file version 0.12)
    and at first I was having the problem on my drop down menus
    appearing horizontal with all the correct styles but when I changed
    the rule ul.MenuBarHorizontal ul to position: relative; the drop
    downs appear vertical now but I have no beige border around the
    whole ul anymore and I'm getting white space inbetween list items.
    http://www.wusf.usf.edu/Header_Nav_Footer_newStyleSheet.cfm
    so if anyone has any advice I'd much appreciate it. Also i'm
    using 1px width on my borders no decimals.

  • Exporting swf without background color

    I am exporting from CS5 to a swf - which all works fine except when I load the swf as an external file into Flash it shows a grey background during pre-loading, does anyone know how to make it transparent or change the colour without losing the interactivity?

    AFAIK you can´t remove or bypass that default preload.... when we were designing eDocker2 we faced that problem too. We worked-around it by creating our own non-transparent preloader which was placed on the top of loaded SWF until loaded was finished....
    See example:
    http://www.edocker.com/_demo/edocker-online-demo/index.html

  • Spry menu bar cyan-colored controller non-responsive

    The cyan-colored controller that enables users in CS4 to configure spry tabs has suddenly stopped working, evidently after I made a change in width setting for spry tabs. The controller no longer works in the site in which I first experienced the problem and,for that matter, in another new site I made for testing purposes.
    Is there a fix for this? Would re-installing Dreamweaver C4 fix this?
    Thanks for your help. I attach a file showing the cyan-colored tab to which I am referring.
    Professor Bob

    Bob,
    I don't have answer for you because I don't use the spry menus and haven't seen this problem on the occasions I have experimented with it.
    If you don't receive an answer here, you may want to visit the forum dedicated to the Spry Objects:   Spry forum 
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/
    http://twitter.com/nadiap

  • Importing graphics without background color

    hi, i was trying to import a symbol to DSC's Image Navigator; but it seems that the whiteground is always imported as well ; as a result the symbol inserted into the front panel has always the "white" background ; pls help/advise

    One way to do it is to create a 'Transparent GIF' this is the technique that I find most robust.
    I usually use an old version of Paintshop Pro for this although there are thousands of other tools.

  • Menu background color when mouse over

    Dear all,
    I tried to make menu without background color. I already set all fillers transparent. Now I have 1 menu box transparent, but others not.
    See screenshots
    Unfortunately I did not find solution.
    Can anyone help? Many thanks & BR
    Catharina

    cool! many thanks, got it. ;-)

  • Multiple text colors in my spry menu

    Can I make multiple text colors in my spry menu? I want to match the text color on one of my spry menu items to the hover color so that you know which link you are currently visiting. I haven't posted the site yet until I work out all the kinks. So, to summarize, I have my spry menu link text color (ul.MenuBarVertical a) set to #E00 and my hover color for those items (ul.MenuBarVertical a.MenuBarItemHover) set to #888. All of the links also contain the same spry menu. I would like the link you're currently in to be #888 and the other links to be #E00 with all of them hovering with color #888. How can I give unique color to an individual menu item? Any help you can give is much appreciated!

    Sorry to bug you again. I implemented your suggestion as you can see in this partial pageview:
    <script src="SpryAssets/SpryDOMUtils.js"></script>
    <script src="js/navbar-select.js"></script>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    ul.MenuBarHorizontal a#button1:hover, ul.MenuBarHorizontal a#button1:focus
    { color:#625647; }
    </style>
    </head>
    <body>
    <div id="team-vision" class="container">
    <div class="header"> <a href="#"><img  id="logo" src="images/logo_i.png" width="215" height="36" alt="Greiner Engineering"></a>
    <ul id="MenuBar1" class="MenuBarHorizontal">
    <li><a href="index.html">INTRO</a>|</li>
    <li><a href="ger-vision.shtml">VISION</a>|</li>
    <li><a href="ger-2firmen.shtml">2FIRMEN</a>|</li>
    <li><a href="#">PROJEKTE</a>|</li>
    <li><a href="ger-network.shtml">NETZWERK</a>|</li>
    <li><a href="ger-contact.shtml"  id="button1" class="MenuBarItemSubmenu">KONTAKT</a>|
    <ul>
    <li><a href="ger-contact.shtml">ADRESSEN</a></li>
    <li><a href="ger-team.shtml">TEAM</a></li>
    <li><a href="ger-location.shtml">LAGEPLAN</a></li>
    </ul>
    </li>
    <li><a href="ger-links.shtml">LINKS</a>|</li>
    <li><a href="ger-publications.shtml">VERÖFFENTLCHUNGEN</a>|</li>
    <li><a href="ger-jobs.shtml" class="MenuBarItemSubmenu">JOBS</a>|
    <ul>
    <li><a href="ger-jobs.shtml">OFFENE STELLEN</a></li>
    <li><a href="ger-practice.shtml">PRAKTIKUM</a></li>
    <li><a href="ger-thesis.shtml">DIPLOMARBEIT</a></li>
    </ul>
    </li>
    <li><a href="ger-impressum.shtml">IMPRESSUM</a>|</li>
    </ul>
    </div>
    I did this in ger-kontakt.shtml, ger-team.shtml, ger-location.shtml
    but it does not leave KONTAKT highlighted.
    If you want to check it out my url is http:/www.lsdcoach.com/greiner-engineering. Select GERMAN and the click on KONTAKT. The other menu items without a submenu work great.

  • SPRY menu background transparency

    Is it possible for the spry menu object to use a transparent
    background? I'm assuming the white background that shows up when
    you remove all of the menu's background colors is an iFrame meant
    to keep the menu from slipping behind form elements...is there any
    way to disable this behavior? Thanks in advance.

    Hi,
    please try to add on this rule:
    ul.MenuBarHorizontal li the following property: opacity:0.3;
    (this will work only for FF, for IE you should have:
    filter:alpha(opacity:30))
    We have a fix for the next spry release version, about
    iframes: on this rule ul.MenuBarHorizontal iframe add:
    filter:alpha(opacity:0.1);
    Hope this helps,
    Diana

  • How can I change the background color of a menu ring?

    Hi
    Does anybody know how to change the background color of a menu ring??? (not the backround color of the first item, the background color of the list (remains always gray))
    thanks martin

    Try Preferences>>Colors>>Menu Background, but this will change ALL menu's background color.
    Hope this helps

Maybe you are looking for

  • RE: Capture Problems on External Drive/Audio drift over time

    Greetings FCP gurus - I posted earlier on the LAFCPUG board and now seek worldwide assistance with a problem I can't seem to resolve. Been working in FCP since 1.5. Been successfully capturing on external FW devices for over 4 years with an old 500 M

  • Have changed apple id and now cant turn on ICLOUD

    I recently broke my screen on my 4s.  my daughter had recently updated here 4s to a 5s so I decided to backup my phone and restore onto the now spare 4s. some time ago I changed my email account and as I no longer had access to it I changed the name

  • Post vendor Invoice without Purchase order.

    Hi all good afternoon how can i post vendor Invoice without Purchase order. And any option Regards Manju

  • Please help me cancel my Mexico subscription

    Please show or tell me how to cancel my subscription to Mexico

  • Purchase Order Partner Functions

    Hi all, I am adopting PO from another purchase order. The vendors are diifferent in my old PO and new PO. When I create the new PO, the partner functions of old PO are adopted. Even after i enter the new vendor, it doesnot update to new partner funct