How to change the color for the af:messages by skins ?

Hello All
How i can change the text color for the af:messages by skins,i want change the color for the messages paragraph not for message header
Because i know how to change the message header color text by
.AFErrorTextForeground:alias
color: Red;
Error:
1. You Must Select etc...
2. Hello All
i want to change the color nor for the header (Error) ,i want change it for the messages 1 and 2 and its text.
Regards
Mohammad Weshah
)

Hi Frank
Unfortunately it dose not work.
Any another options for this issue .
Regards
Mohd.Weshah

Similar Messages

  • How to define new colors for the form?(Finish)

    Hello! Everyone!
    I want to define new colors for the new form.
    But I don't find where I can define it.
    How to define new color for the form?
    Thanks in advance!

    You have to set the Canvas color or as I said earlier you need to use one of the available color schemas on the OAS or Builder runtime.
    If you want to use user defined colors in the builder, then you need to create a new color palette and use it.
    I personally haven't tried it, but there is a section in the online help that describes how to do this.
    Tony

  • How to change a color for a row in ALV grid display

    Hi,
       how to change a color for a row in ALV grid display based on a condition.Any sample code plz

    Hello Ramya,
    Did you check in [SCN|How to color a row of  alv grid]
    Thanks!

  • My Macbook air 11" suddenly lost the color for the back button and some of the other buttons in Safari

    Can anyone help me my Macbook air 11' has lost the color for the back and forward button in Safari as well as the battery and wifi connections

    Hey Maha08,
    Thanks for the question. Let’s try resetting your computers PRAM/NVRAM:
    About NVRAM and PRAM
    http://support.apple.com/kb/HT1379
    Thanks,
    Matt M.

  • Changing hyperlink colors for the navigation bar

    hello all i am trying to figure out how to change the color of the links that are the top of my page in the navigation bar. i know how to do it with the ones in my text- but i cannot figure out how to do so for the ones at the top of each page in the navigation bar.
    any help would be much appreciated!

    Welcome to the Apple Discussions. Here's a link to a post by Cyclosaurus, the resident java script expert, about changing the font, etc. in the navbar with java script and a HTML snippet.. Don't know if includes color also.
    http://discussions.apple.com/thread.jspa?messageID=8600361#8600361
    OT

  • How to change highlight color for menus?

    What controls the highlight color used for Firefox menus? ... like Find, Print and About ... the main menus.
    I used the Stratiform Plug-in to change my font color to blue and now it's exactly the same as the highlight color ... so highlighting makes the entry's text invisible.
    I want my highlight color to be YELLOW only, regardless of any theme I might use.

    Good idea ... but (in XP) the color for Selected Items only affects Windows menu entries. It looks like some other setting affects the Firefox ones. I've attached a couple of captures to show what I'm seeing.
    Thanks for trying.

  • Cannot change multiple colors for the life of me

    Hi there-
    I am VERY new to photoshop and have been trying to change just two colors in this stupid picture now for about five days. I realize this is rudimentary probably for most users.
    I have searched extensively online and experimented using the color replacement tool and the "replace color" adjustment under image.  I will attempt to attach the before image and the after image I have been able to come up with.
    Essentially, I just want to replace the red and green with orange and black.  The orange I have is a very specific pantone (I have both RGB and CMYK numbers that I'd like to use).  If possible, I'd like to keep the shading....I think this is the biggest problem.  Colors are not uniform.
    Anyways, if this is going to take me a long time that is fine, I just don't know how to do it and have all the edges and shading look correct.  I cannot find a tutorial anywhere online that even shows how to clean up an image after you have changed its color so it looks professional.  I am going nuts.  This is for a job application and if you know how to do this and can help me - please!  Help!

    The orange I have is a very specific pantone (I have both RGB and CMYK numbers that I'd like to use).
    Doesn't mean anything in relation to spot colors. That's the part you  seriously must understand - either you  want to print it prodfessionally and a spot color is mandatory or it isn't. Process color CMYK is also used in professional print, but requires to work with color management. RGB is just for on-screen, web or printing on your home printer. Each of the methods will require a different way of shifting/ remapping the colors. For RGB and process CMYK, a gradient map adjustment layer might work, including of course converting to CMYK for the latter and dealing with color management. If it's just for home printing on unmanged printers like your personal inkjet, anything from hue shifting to selectiove color corrections will do. For spot colors you can forget these "dumb" methods and will have to learn how to create selections, manage channels and work with Dutone/ tritone/ multichannel modes.
    Mylenium

  • How to change Apple Id for the cloud

    Currently my Apple ID is an email address which I have been using for decades.  In the near future the email server will be decommissioned and I will no longer be able to use it.  In preparation of the change over I want to change my current email address to an icloud email address (@icloud.com).  I have gone into the site to Manage Apple ID to change the email address but it won't let me as I get an error message that Apple ID must not use a domain owned by Apple.  How can I change my Apple ID and Primary eMail Address to an @cloud.com account without losing all the info already on my current icloud?

    First save any photo stream photos that you want to keep on your device by opening the photo stream album, tapping Edit, tap the photos, tap Share, tap Save to Camera Roll.  If you are syncing Notes with iCloud, email them to yourself as you will have to recreate these after changing accounts.  Finally, if you are syncing any iWork documents with iCloud go to the settings for these apps and turn iCloud sycing to Off.
    Then go to Settings>iCloud, tap Delete Account, choose Keep on My iPad when prompted.  (This will only delete the account from your device, not from iCloud.  If your daughter is keeping the existing account her devices will not be effected by this.)  Then sign back in with your new ID to create a new iCloud account, turn on your iCloud data syncing, choose Merge when prompted to upload the data to the new account.  Then recreate any Notes from the emails sent earlier and turn on iCloud syncing with iWork again, if appropriate.
    existing iCloud old email address with the old account.  If you still want to access it on your iPad, you'll have to go to Settings>Mail,Contacts,Calendars>Add Account>iCloud and sign in with the old account ID.  This email will be fetch only, not push.
    Once your iPad has migrated to the new account, if you also want to move your Mac to this account go to System Preferences>iCloud, sign out, then sign in with the new ID.

  • Changing a color for the whole Application

    Hi,
    Is there a way to change the color, default purple of swing to some other color(say green) for the whole application without using themes? Is it possible through UIManager.put()?
    Regards
    Sridhar

    Thanks Michael,
    I just modified your code to fit my needs.
    import java.awt.*;
    import javax.swing.*;
    import java.util.Enumeration;
    class ApplicationColor
      public ApplicationColor()
        setApplicationColor(new Color(88, 140, 165));
        JFrame frame = new JFrame();
        frame.setLocation(400,300);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        JPanel jp = new JPanel(new BorderLayout());
        String[] temp = {"abc","123"};
        JComboBox cbo = new JComboBox(temp);
        JButton btn = new JButton("I'm a button");
        jp.add(new JLabel("I'm a label"),BorderLayout.NORTH);
        jp.add(cbo,BorderLayout.CENTER);
        jp.add(btn,BorderLayout.SOUTH);
        frame.getContentPane().add(jp);
        frame.pack();
        frame.setVisible(true);
      public void setApplicationColor(Color color)
        Enumeration enum = UIManager.getDefaults().keys();
        while(enum.hasMoreElements())
          Object key = enum.nextElement();
          Object value = UIManager.get(key);
          Color jfcBlue = new Color(204, 204, 255);
          Color jfcBlue1 = new Color(153, 153, 204);
          if (value instanceof Color)
               if(value.equals(jfcBlue) || value.equals(jfcBlue1)){     
                    UIManager.put(key, color);
      public static void main(String[] args){new ApplicationColor();}
    }Sridhar

  • 10g express, how to change port number for the database home page

    10g express uses port 8080 for its http listener. However this number has been used by Tomcat on my computer. How can I chang the port number for the 10g home page?
    Regards
    jl

    Andy, thank you very much, I have been able to changed the port number following your advice.
    I hope you do not mind I ask a further questions along this line:
    I installed 10 express db on 2 computers. One with Tomcat and the other without. Following your advice, I successfully changed the port number on the one without Tomcat.
    On the one with Tomcat, I believe it was because I installed the 10g express while the Tomcat was running, I can neither go to the 10g's home page (page cannot be displyed), nor logon to the database from sqlplus (ora-12560: TNS:protocal error) even after I shut down the Tomcat. By checking with 'netstat -an', it is known that the http listerner is not listerning.
    Can I change some configuration file to solve this problem? Or do I have to reinstall 10 ex? I prefer the 1st aproach of changing config file, even it is not as easy as reinstallation.
    Thanks
    jl

  • How to change Alt text for the Popup Key LOV Image in Apex  3.2.1.00.10

    we are using Application Express version is 3.2.1.00.10
    There is an icon to click on to popup the lov search box, the alt text for that image is currently "popup Lov"
    would it be possible to change the text to something more meaningfull e.g. "Lookup Person name" or "search Directory for Person names" .
    I have tried by updaing them
    from
    Shared Components>Templates> Popup List of Values Template > Popup Icon Attr --> width="13" height="13" alt="Popup Lov"
    (under Popup List of Values)
    to
    alt="#CURRENT_ITEM_NAME#"
    it didn't work.
    your respone will help getting accessability sign off

    Venu,
    Try adding title = "Lookup Person name" to the Image Attributes of your icon or button.
    Jeff

  • How to set the color to the particular row in a report

    Hi
    I have a report in which I have an edit link(I changed the id as edit link)..When I click that link, all the details(the whole row details) will be appearing on the items nearer to the report to save the changes....
    I want to set the color for the particular row when a link is clicked and the color should not be changed until I save the changes in items...After saving the changes, the report should come in the normal color...this is my requirement..i refered many forums regarding this...But could not find solution....If anyone knows,please help me...
    Fazila

    Here is how I would implement
    Create renderer
    Add SkinnableContainer element and create a skin for this container namely SkinnableContainerSkin
    find the fill section in the skin
    add bitmap fill to the fill section and give the source of the image which you are planning to use(Hopefully this is a direct way of doing, may be you need to hack this a little to get it to work)
    I've never tried this, but should help you give some idea.

  • Is it possible to change the color of the text in one specific field?

    If I want to make someone's mobile number show up as the primary contact, is it possible to make the text for that number a different color or make it bold? I can't seem to find a way to do it.
    Thanks.

    Make a Shape > Inspector > Graphic > Tinted Image Fill > Scale to fit > browse to image > click on the color patch to change the color to what you want
    or
    Drag in an image > overlay it with a Shape > select the color for the shape and change its Opacity
    Shapes may have Gradient and Advanced Gradient (multiple colors) fills both linear and radial. Both are in the Graphic Inspector as is Opacity.
    Peter

  • Possible to change the colors of the templates? Or not?

    Regarding the style templates in iWeb '06:
    I notice that each template family has a certain color. Modern is white, others are wheat colored, others light pastel green and blue. One of them is black and uses a white colored font.
    Question:
    Is the color for each template style there to stay or is it changeable? I see that column size, box side, and font size, style and color are changeable but am suspecting that the color for the style of the page is not. Correct?
    So this means that, say, if I want to change the Modern style template to be RED on one page, then I would have to paste a solid red photo on top of it and use that photo as a base upon which to add other things? Or what?
    — Lorna in Southern California

    Well, lot of it has to do with the browser. Once the
    browser background image is in the cache, it helps a
    great deal; Firefox loads it pretty quickly; Safari
    will not; Opera is 'middle-of-the-road'... (And I
    don't even want to get into Internet Explorer!). If
    your site is targeted towards the same group of
    people, say a family site for example, and your pages
    become established in their browser caches, then it's
    not a problem. But if new people are visiting
    frequently then the chances are they may never even
    see your browser image. Again, this applies when
    hosting with .Mac. I haven't had this problem
    hosting to a remote server. .Mac is just plain slow
    to load.
    And this becomes particularly exacerbated if the
    design of the page is predicated on the browser image
    you have chosen....again, the design possibilities
    are endless as you can build upon your favorite
    photo, but you really need a fast server to maximize
    the potential.
    --Ap
    Dear Ap -- I must say that I have not understood what you wrote because I lack familiarity with some of the topics/concepts/terms that you mentioned. The browser issue went over my head, although I do understand about caches (I think). What I take away from what you said is that I had better not mess around with the clever procedures described for changing page color because the downside is worse than the advantage. I might take advantage of the clever techniques later on when I actually know what's going on. I am not at the Clever Techie stage yet.
    — Lorna in Southern California

  • Change of colors for actual day in ical

    Is there any possibilty to change the color for the day into another one - the light blue looks nice but pale. 

    OK... got it... I use Microsoft Exchange set up by a 3rd party so i guess that is what the e-mail one is. I still use Outlook but eventually want to simplify. Right now i go back and forth between Outlook and iCal because Outlook still seems better to me. But hoping to have an open mind and find out how to use iCal more effectively. But i wonder if the local calenders are synced with the e-mail account. Is there anyway to move and/or combine the local calendars with my e-mail one so i have it all under "one roof" which means i can access all of it on my iphone, ipad, and computer and not have them appear as if thy are seperate?
    Thanks.

Maybe you are looking for

  • Intrastat report generation

    Hi Experts, I am facing a problem with VX99 T code .this T code is related "Foreign trade: Cockpit" where we are supposed to generate the INTRASTAT report for the  data arrivals (purchase orders) in FRANCE. as of now in the intrastat reporting the da

  • ITunes deleted all the music on my ipod - help!

    I purchased a fourth generation black and white screen 20GB ipod that had some music on it. I've been listening to the music for about a week without bothering to connect up to my computer. Today I installed the software that came with the ipod and u

  • Internal table Logic need

    Hi , I have one Internal table it_marc contains the MATNR and one more final internal table it_final. I want to read the all MATNR from IT_FINAL by using IT_MARC which contains the same MATNR. I mean all the MATNRs even dupliacates also. regards, Aja

  • I have lost the address bar with word "bookmark" that opens bookmarks. How do I get it back?

    please advise how i get bookmark on home page enabling me to open bookmarks?

  • Right Mouse Button Context Menu

    Hi There, I'm currently involved in developing an application with a pretentious user interface. As acquainted from real event driven dev. platforms I wonder if LabVIEW is also able to make the application display a context menu when users press mous