SPRY submenu text color help needed.

I've created a vertical SPRY menu bar over a dark background
image in a left sidebar. The text is white and the background is
set to none (transparent).
When the submenu opens to the right it's on a white
background (over the main content area). Because the text is set to
white, you cannot see the submenu links.
Is there a way to change only the submenu links to black? I'd
also like to change the background color of the submenu links.
Thanks in advance for your assistance.

http://labs.adobe.com/technologies/spry/home.html
- This first link is the Spry home page. There you will find an
updater to Spry that if you have not downloaded up to this point,
you should I will explain why shortly. Inside the package you will
find a ton of samples and an Extension. Install the Extension and
restart DW. Then under the Sites menu you will see a new option to
update your Spry. Run that updater.
http://labs.adobe.com/technologies/spry/samples/menubar/MenuBarSample.html
- This page will show you how to make the necessary customizations.
The last two examples will help you out. All you will need to do is
read through the source code of the document. There is no need to
read through the source of the CSS file because they show you the
changed CSS on that page. Just apply those changes to your CSS
SpryMenuBarVertical.css document where the tag matches. If there is
no matching tag you will need to just copy and paste the entire
portion but I don't think that is the case with your menu. Also
your entries will be Menubar 8 & 9 in the source code, but to
find the matching code in your css document just replace the
MenuBar8 or 9 with MenuBarVertical.
If you have not done a lot of work with CSS before I would
highly recommend reading this tutorial before going through any of
the above steps:
http://www.w3schools.com/css/

Similar Messages

  • JProgressBar Color Help Needed

    Greetings,
    I am attempting to find the simplest way to set the color of the text that represents the percent done in a task on a determinate progress bar. This is the font color of the element enabled by using the method "aProgBar".setStringPainted(true) command. I have found the setForeground and Background Colors. Which changed the bg of the bar or the color of the rectangle being built. But I have been unsuccesful at getting the text color to change.
    I have attempted to use some examples of customizing the defaultUi settings. However I stopped the attempt after it became a bit to long winded in its code. Plus I'm not really sure but it sounds like if I change the UIDefaults it would be a global change so every progress bar would now look the same. In this case I could do that due to the fact that I only have 2 bars in the application and it would be alright. However I am confident that there is a way to customize I single instance of this. I just dont know how to do it.
    I am a middleware developer that rarely gets the chance to use Swing so I always find myself having to learn from scratch almost everything each time I do it. Any advice on training or books that might help me retain or improve my development time would also be appreceated. In general are there any basics that I should study that would allow me to understand core principles throughout awt/Swing. Ie "here is the framwork that runs throughout Awt or Swing that controls Look and feel of most components and it's name is _________".
    Anyhow thanks in advance.
    B.

    Michael,
    Thanks for your reply as well. This solution works and works simply. I do believe I just change all instances of JProgress to now show the same custom colors. Which is ok by me.
    The key phrase in this solution is the phrase "prior to construction". I simply set it in a static init block and went from there. You might be able to do something right prior to creating a new instance to keep this effecting only one instance. I have not tried.
    Thanks agian for providing a single line solution and the proper level of detail in order to get it to work.

  • Change submenu text color

    How would I go about changing the text color of the submenu items without changing the text color of the main menu items?

    Add the following style rule to your document
    ul.MenuBarHorizontal ul a {
        color: red;
    changing the colour to suit.

  • 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

  • AppleScript Text Coloring Help

    Okay, so in AppleScript Studio I made an application that is really just a text editor. Now I would like to make a script that would run whenever the contents of a text view changed, and what I want the script to do is every time it sees a certain word in the text view, change the color of only that word and leave the rest of the text alone, but it also changes the color of the word if that word is used more than once.
    i tried
    if text view "text" of scroll view "text" of window "window" contains "the" then
    set selection of text view "text" of scroll view "text" of window "window" to "the"
    set color of selection to "red"
    end if
    It gives me several errors, I don't really know if they are relevant to the solution of my problem, but if they are I can post them.
    Please help, I have tried to do this in so many different ways and nothing has worked.
    Message was edited by: Unreality

    bump

  • JButton Text Color help......

    Hey,
    I have tried everything that does not work to change the color of the text on a JButton I have in a JPanel. Does anyone know how to do this. I need the actual text on the button to be a different color than black..This is an application so I am not using public void paint( Graphics g);
    buttons[1] = new JButton("Open");
    buttons[1].addActionListener(this);
    That is a sample of my button creation code..I just need to change the word "Open"s color...

    http://java.sun.com/docs/books/tutorial/uiswing/components/html.html
    Run the HtmlDemo app as available from that page.
    Regards,
    lutha

  • Change spry submenu background color only?

    Is there a way to change the background or background color
    on the spry horizontal or vertical menus without changing the main
    menus?

    Also, whether you are using a vertical or horizontal menu you
    can find the necessary tag within CSS. Adobe as done a fairly good
    job on commenting exactly what is going on.
    I worked on a project for Alabama Marriage & Family using
    horizontal menus. You can take a look at my navigation and see how
    I structured my CSS. Each sub-menu actually has different CSS
    properties so it made it a little more difficult.
    http://www.alabamamarriage.org/new/Templates/achmiTemplateA.dwt.php

  • Need to add superscript for text field--HELP NEEDED.

    Hi Friends,
    Is there any way to implement superscript and subscript text in Crystal?  For example, I would like to superscript the portion (1) of the following string:
    "Buy(1) or Sell(1)"
    The only way I have found to do this is to put the "235" in a separate text field that uses a smaller font size, and overlay it into the gap that I intentionally left in the larger text field.  For display and printing purposes, this works OK, but if a report containing these strings is exported to Excel, the text fields are exported as separate cells, which makes the exported report look funny.
    I can create this string in Word, then cut and paste it into a text field in Crystal (which initially seems to work), but as soon as I click off the field, all the characters in it are converted to the same font size.
    If this can't be done in the current version of Crystal, are there any plans for it to be implemented in future versions?

    hello all,
    the text interpretation for html or rtf in fields will not render superscript or subscript. the basic rule is that whatever you can format directly in a crystal reports text object, that's what you can have interpreted.
    look up "text interpretation html" in kbase for a full list.
    one option is to turn html passthrough on the server in question if this is a huge deal for you...if you want instructions on how to turn html passthrough on, they are located in the webelements user guide at
    http://diamond.businessobjects.com/node/255
    after doing so, you'd drop the database field into a formula and any html in the database field would be interpreted.

  • Apple needs to make! edit text color in finder settings

    http://i811.photobucket.com/albums/zz34/screen7shots/Screenshot2010-07-04at12572 3AM.png
    u tell me whats wrong with this pic.
    i cant read the text, please make option to have diff. text color options

    You need to direct the request to the Apple feedback site...
    http://www.apple.com/feedback
    This is not Apple but a user forum.
    Dave

  • 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.

  • Color management help needed for adobe CS5 and Epson printer 1400-Prints coming out too dark with re

    Color management help needed for adobe CS5 and Epson printer 1400-Prints coming out too dark with reddish cast and loss of detail
    System: Windows 7
    Adobe CS5
    Printer: Epson Stylus Photo 1400
    Paper: Inkjet matte presentation paper with slight luster
    Installed latest patch for Adobe CS5
    Epson driver up to date
    After reading solutions online and trying them for my settings for 2 days I am still unable to print what I am seeing on my screen in Adobe CS5. I calibrated my monitor, but am not sure once calibration is saved if I somehow use this setting in Photoshop’s color management.
    The files I am printing are photographs of dogs with lots of detail  I digitally painted with my Wacom tablet in Photoshop CS5 and then printed with Epson Stylus 1400 on inkjet paper 20lb with slight luster.
    My Printed images lose a lot of the detail & come out way to dark with a reddish cast and loss of detail when I used these settings in the printing window:
    Color Handling: Photoshop manages color, Color management -ICM, OFF no color adjustment.
    When I change to these settings in printer window: Color Handling:  Printer manages color.  Color management- Color Controls, 1.8 Gamma and choose Epson Standard it prints lighter, but with reddish cast and very little detail and this is the best setting I have used so far.
    Based on what I have read on line, I think the issue is mainly to do with what controls are set in the Photoshop Color Settings window and the Epson Printer preferences. I have screen images attached of these windows and would appreciate knowing what you recommend I enter for each choice.
    Also I am confused as to what ICM color management system to use with this printer and CS5:
    What is the best ICM to use with PS CS5 & the Epson 1400 printer? Should I use the same ICM for both?
    Do I embed the ICM I choose into the new files I create? 
    Do I view all files in the CS5 workspace in this default ICM?
    Do I set my monitor setting to the same ICM?
    If new file opens in CS5 workspace and it has a different embedded profile than my workspace, do I convert it?
    Do I set my printer, Monitor and PS CS5 color settings to the same ICM?
    Is using the same ICM for all devices what is called a consistent workflow?
    I appreciate any and all advice that can be sent my way on this complicated issue. Thank you in advance for your time and kind help.

    It may be possible to figure out by watching a Dr.Brown video on the subject of color printing. Adobe tv
    I hope this may help...............

  • Help - Need to save group text - story of daughter's life

    Hello and thank you in advance.  This may be a very dumb question, but I can't seem to find an easy solution in the research I have done.
    I have used a group text since the birth of my daughter to update family members on her life.  This group text is now basically the story of her life with pictures, things she has done, funny things she has said... I don't want to lose any of that.  However, my iPhone 4S 64G is now maxed on storage due to this group text.  I need to save this somehow, but don't know how to go about it.  I have backed up my phone many times, but now that I need to delete the text to gain storage capacity.  I don't want it to override the backup next time with the deletion.  I need to keep the history.
    Any suggestions on how I can go about that?
    I have purchased a program called DiskAid, but have not had time to see if it will suit my needs.
    Thank you,
    A mommy desperately in need of help!

    Hi Maggie,
    I would try the software decipher text message. It will let you save your text messages to your computer so that you can safely archive all the sms conversations between you and your family. 

  • About Java 2 opaque font color question, help needed!

    About Java 2 opaque font color question, help needed!
    I was trying to test opaque font (the string has a foreground color and a background color), but i can't find the method for doing that.
    i can change foreground by Graphics2D.setPaint(Color.black).
    Anybody know how to change the background of the string?
    Thanks!

    Hi. The way I'd do it would be to use the font metrics to find the length of a string and draw a rectangle and then drawstring over the rectangle. If you want an example, I can post it although I suspect theres a better way.

  • I udate my os to 10.6.7 and since then my Pages have color problems. The text is not visible (white on white background) it does'nt help to change the text color nor background color. Pls help

    I udate my os to 10.6.7 and since then my Pages have color problems. The text is not visible (white on white background) it does'nt help to change the text color nor background color. I just download the recent trail version of Iworks and install it. The first document I opened it was ok. When I open the second one the problem appear again and stayed. Pls help

    This behavior was described many times.
    In every occurrence,the operating system was an uncompleted one resulting of the use of Software Update to update the operating system to 10.6.2, 10.6.3, 10.6.4, 10.6.5, 10.6.6, 10.6.7.
    In such cases, the solace was to apply a combo updater.
    As you are using 10.6.7, download and apply the combo 10.6.7 :
    http://support.apple.com/kb/DL1361
    After that, run Software Update which will urge you to apply :
    Snow Leopard Font Update
    Yvan KOENIG (VALLAURIS, France) dimanche 29 mai 2011 21:15:58
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.7
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • HELP!Can't change text color photoshop 3d

    Hi everyone!
    I am having a problem with Photoshop CC and the 3d text extrusion. I've never been able to change the color of my text using the Color Picker or changing the text color by going into the "Edit Source" feature and manually changing it. Neither of these have any effect on my text color. The only way I've found to change my text color is by selecting the Diffuse color under my Front Inflation Materials.
    The screenshots below will show my settings and problems.
    The first step is creating the 3d Extrusion text layer. I have selected below the word Beach in a dark grey.
    The next step is after the 3d Extrusion layer is made, I am trying to change the color of my 3d text to a red. So I'm highlighting my text layer, going to the 3d Text Color picker and selecting red. The box above shows the red that I've selected, and below the little thumbnail also shows red. My problem is that after I press "Ok", the small red box below next to text reverts back to the original dark grey and doesn't change.
    The 3rd step and the other way I'm trying to get my text color to change is by clicking on the "Edit Source" button, going into the .psb, manually changing my text color to red, saving and closing the window. The text color still does not show my changes. It remains the original dark grey color that I originally had. Now, if I go back into "Edit Source" my text is red, but it won't show the changes on the 3d layer.
    Am I doing something wrong, or is there something I'm missing? Thank you guys in advance.
    -Terry

    I'm with you XM Just got Steve Caplin's book on 3d Photoshop and he says you can easily change the color as shown in  that video —although I am getting different color picker. note the properties panel (on right) the color swatch shows pink once I click OK it reverts back to original color

Maybe you are looking for