Color not Changing, So -

May I hope that me reporting this problem helps to make Apple act?
How weird of Pages v5.5.  I select text of which to change color, I select a color in the palette, but the color stays the-same.  :-(
So I closed & I re-opened _just_ that file.  Colors then work as they-should.  :-)  How strange, yes?

The NI installer does not have that level of flexibility. I would suggest looking into using a third-party installer. I use Inno Setup (http://www.jrsoftware.org/isinfo.php), which is free, and has a quick start pack download, but there's plenty of others out there.

Similar Messages

  • Color not changing on Selected Menu tab

    I'm creating a custom css and in doing so have been trying to change the text color of the selected menu tab. I've added it to my stylesheet but it is not changing upon running it. If I change the menu tab specifically via the properties of the tab, it will change. Is 'color' something we can change?
    Here is a snipet of my css:
    .af|menuTabs::selected {color:red;
    white-space:nowrap;
    font-family:Arial,Helvetica,Geneva,sans-serif;
    font-size:200%;
    background-color:white;
    font-weight:bold;
    text-decoration:none;
    Thanks,
    Lisa

A: Color not changing on Selected Menu tab

Your '.' before af|menuTabs is wrong.
It's just "af|menuTabs::selected" not ".af|menuTabs::selected".
Also, you need to use the ::selected-link pseudo-element to style the color of the text.
/* Make the selected tab bold */
af|menuTabs::selected-link
font-weight: bold;
font-size: 14pt;
color: green;
}

Your '.' before af|menuTabs is wrong.
It's just "af|menuTabs::selected" not ".af|menuTabs::selected".
Also, you need to use the ::selected-link pseudo-element to style the color of the text.
/* Make the selected tab bold */
af|menuTabs::selected-link
font-weight: bold;
font-size: 14pt;
color: green;
}

  • Why is the label color not changing when my file is updated?

    I would like the label color to change to white when a file has been updated/changed. Since upgrading to 10.7.2 the file color stays the same. Is there a setting I am missing that will allow the file to go back to white when updated?
    Thanks for any input...

    As far as I know, this is not standard functionality in the Mac OS.  Granted this, some third party application, or a script of something, was making this happen for you. Somehow the system update broke it. If you can figure out what software was giving you this feature, maybe you can update it or re-install it.
    charlie

  • Change Color in Spcolor File but Color Not Changed in Site - SP 2013

    I have changed the color in the spcolor file that is associated with the theme selected for my site, but when I save it and upload it to the site again, the color does not change on the site. Is there another way colors can be changed that would override
    the spcolor file?

    Hi Tracey,
    Please download the orginal spcolor file for particular composed look/theme from that site collection themem gallery, then change the color value with Notepad application, then upload it back to theme gallery to overrride spcolor file, check out and check
    in this file, then see if the custom color could be changed for that particular composed look for your site, please try this in a test site collection firstly.
    Also you can try creating a new custom composed look with custom spcolor for your site per the following articles, see if it could work.
    http://www.learningsharepoint.com/2013/06/03/create-custom-theme-in-sharepoint-2013-step-by-step-tutorial/
    http://bniaulin.wordpress.com/2012/12/16/step-by-step-create-a-sharepoint-2013-composed-look/
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Daniel Yang
    TechNet Community Support

  • Hover color not changing

    http://www.jdcdemo.com/seark/test.html
    I alledgedly set up the style for the links to change background color on the top menu. For some reason which I have not been able to plumb, that ain't happenin'  Can someone who knows more that I tell me where I went astray?
    Thanks,
    Joe

    lol, here is yoru selector for hover:
    #nav1 li a:hover {
    It's empty!
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Link Color not changing for Visited Pages - How do I set the Color?

    In earlier versions of Safari, the user could select the color used to display links that have already been visited. I can't find that option in Preferences anymore. Some visited links do show a different color, some don't. Is it just random? How do I set the color in Safari 4.0.4 and activate the behavior?

    HI,
    I think you change visited pages link colors using Google preferences.
    http://www.googleguide.com/preferences.html
    Carolyn

  • Label color not changing color

    hi,
    i'm having some problems trying to set the color or a jlabel, but it's not working. here is the code:
    import javax.swing.*;
    import java.awt.*;
    import javax.swing.text.*;
    import java.awt.event.*;
    public class PaperTest extends DefaultStyledDocument{
         int maxLen;       
         public static void main(String args[]) {
              JFrame paper = new JFrame();
              GridLayout gd = new GridLayout(3,1);
              paper.getContentPane().setLayout(gd);
                 paper.addWindowListener(new WindowAdapter() {
                  public void windowClosing(WindowEvent e) {
                       System.exit(0);          
             JLabel header = new JLabel("Header");
             JLabel footer = new JLabel("Footer");
             header.setBackground(Color.BLUE);          //  Set the color here
             footer.setBackground(Color.WHITE);       //  Set the color here
              JTextPane tp = new JTextPane();
              StyledDocument doc = (StyledDocument)tp.getDocument();
              tp.setDocument(new PaperTest(11));
              tp.setBackground(Color.RED);
         //     tp.setFont(new java.awt.Font("Serif", 0, 24));
              tp.setForeground(Color.WHITE);
              paper.getContentPane().add(header);
              paper.getContentPane().add(tp);
              paper.getContentPane().add(footer);
              paper.setSize(100,100);
             paper.setVisible(true);
         public void insertString(int offset,String str, AttributeSet a) throws javax.swing.text.BadLocationException {
             if( getLength() + str.length() >= maxLen )
                  return;     
             super.insertString(offset, str, a);   
         public PaperTest(int maxLen) {     
                 super();     
                 this.maxLen = maxLen;               //  Set the max length (chars) allowed in Note
    }Any ideas?
    Thanks.

    Hi,
    header.setOpaque(true); // <--- important
    footer..setOpaque(true);
    header.setBackground(Color.BLUE);          // Set the colorhere
    footer.setBackground(Color.WHITE);
    A label is normally transparent and displays it's container's color, unless you set it opaque.
    HTH

  • BackGround Color not Changing???

    Here is a section of my code.
    I am trying to make the label Black and the panel holding it, grey.
    I have written this way but the label remains grey.
    What is the matter and how do i deal with?
    TitledBorder titled2=BorderFactory.createTitledBorder("");
        titled2=BorderFactory.createTitledBorder(titled2,"Calculator",
        TitledBorder.CENTER,TitledBorder.TOP);
        //TitledBorder titled2=BorderFactory.createTitledBorder()
        F1=new Font("TimesRoman",Font.BOLD,36);
        calculator2= new JLabel();
        calculator2.setFont(F1);
        calculator2.setMinimumSize(new Dimension(220,110));
        calculator2.setPreferredSize(new Dimension(220,110));
        calculator2.setMaximumSize(new Dimension(220,110));
        //calculator2.setBorder(BorderFactory.createLineBorder(Color.black));
        calculator2.setBorder(titled2);
        calculator2.setBackground(Color.black);
        //calculator2.setBackground(Color.blue);
        //calculator2.setForeground(Color.black);
        Right1=new JPanel();
        //Right1.setBackground(Color.cyan);
        Right1.setMinimumSize(new Dimension(225,110));
        Right1.setPreferredSize(new Dimension(225,110));
        Right1.setMaximumSize(new Dimension(225,110));
        Right1.setLayout(new BoxLayout(Right1,BoxLayout.Y_AXIS));
        calculator2.setAlignmentX (Component.LEFT_ALIGNMENT);
        Right1.add(calculator2);
        //scrollPane2.setAlignmentX (Component.LEFT_ALIGNMENT);
        //Right1.add(scrollPane2);

    call:
    label.setOpaque(true);
    before setting background.

  • Hitting F11 in the form does not change the colour to blue

    Hi All,
    Hitting F11 in the form does not change the colour of the queryable fields to blue. Those fields remain white in color. The query functionality is working properly. The problem is only with the color not changing to blue. Is there any form property that needs to be checked? Other forms in this instance are working as expected.
    Thanks in Advance

    F11 is not generally thought of as the key to make fields blue, is it? Are you using E-Business Suite? If so you should probably ask this question in the apps Forum: General EBS Discussion

  • I try to insert some images on a website but the images are not in the right color mode. I do not know what to do? and also I have 1200 images to insert so I can not change one after one. So I need to set up an action, but I donot know how to do it... Tha

    I try to insert some images on a website but the images are not in the right color mode. I do not know what to do? and also I have 1200 images to insert so I can not change one after one. So I need to set up an action, but I donot know how to do it... Thanks

    What is the problem specifiaclly?
    If the images are intended for web use I would recommend converting them to sRGB which could be done with Edit > Convert to Profile or with File > Save for Web, but as including a Save step in Actions and applying them as Batch can sometimes cause problems I would go with regular converting.
    You could also try Image Processor Pro.
    Scripts Page

  • Is there a way to disallow web pages to modify foreground color of elements if background of those elements was not changed as well (and vice versa)?

    I have very sensible defaults for my display; i.e. I have dark GTK scheme (dark gray background, light gray text) that suits me way more when working on my computer while it's dark around. I, however, like looking at web pages as how they were mean to be seen. Unfortunately, most of web designers don't think about anyone having non-default colors set up.
    Example one ( http://www.cedok.cz ):
    This site's CSS style has "color: rgb(45, 45, 45);" for the whole <body> but for <select> elements there is no "background-color" set. This means there is a select box rendered with dark gray background and dark gray foreground (text color). This is pretty badly readable (obviously).
    To mention one particular element from this site: e.g. <select id="ctl00_ContentPlaceHolderLevySloupec_HledaniMultiTab1_HledaniZajezdu1_ddlTypZajezdu">
    Example two ( https://support.mozilla.org/en-US/questions/new/desktop/customize/form ):
    On this page (where I'm currently filling in this question) the <textarea id="id_content"> has "background: ... rgb(255, 255, 255);" set, but with my default font color, this textarea is rendered as light gray text on a white background. Again, pretty unreadable (and eye-hurting).
    I can provide screenshots and more reasoning if needed.
    I'm asking if there is (or might be) an option (even disabled by default) or at least an add-on which would keep default colors unless both foreground and background colors were specified. I think this might make Firefox very usable for many people which like to have their default colors configured.
    In case you won't be able to help me by fixing this, could you redirect me to the right place where I could get this requested in a way that might be really possible to happen (bugzilla?).
    Thank you very much in advance.

    Thanks for the reply, but I'm sorry, no. I don't want any addon that customizes colors, I want to use default colors and only prohibit changing them unless both background and foreground colors are changed.
    I have made no color changes WRT to Firefox *only*, I just changed the default for the whole toolkit (gtk in this case). The thing I need is to disable changing *only one* property out of two ({back,fore}ground). Whenever the second one gets set as well, this new setting (both of them) may get reflected, but not before that. It'd be nice to keep this when changing the colors back (deleting the style), but that's not necessary.
    I hope that's understandable, feel free to ask for if that's not the case.
    To express what I mean a bit more precisely, see the attached image. In that image there are four textareas (one of the elements that gets affected by this). First one is a default one (which I want to have if the page has nothing set), the second one is nicely modified to fit for example to a blue-ish page (this one I like as well).
    Second row of textareas shows how the final element looks like if the page has only one of these elements set up. First one changes background without changing font color, the second one vice versa. Both of them are very badly readable, especially with low lighting around.
    This is consequently the same case when it comes to default page background which I cannot set at all, because too many pages have only "color:" set without changed background and that is completely messed up then. Going to extremes, I might mention all color-related modifications (see how ugly the borders look when the background is changed and nothing is done to these borders, their size and color is kept default), but I understand that's too much.

  • Visited links not changing color on iPad Safari or other browsers

    Hi,
    On my iPad, when I visite a site via an hyperlink and then go back to the initial page, the color of that link is not changing anymore like it is on my MacBook. For example, in Google search, the visited links don't turn violet and remains blue instead. This is the case in Google search, Yahoo but not with Bing. The problem occurs on all my iPad web browsers (Safari, Atomic Web...).
    Is it a bug or a config thing that I can fix myself ? Anybody have any idea or did find a solution to this same problem ?
    Thank you,
    Daniel

    Well, I'm a mixed bag. After wasting time and missing the point earlier, thinking that this was about the Google app, today I finally suss to the fact that the discussion's a tually about in fhe browser ...
    Anyway, I take a look and, sure enough, the first one I try does pop into a violet color when returning to the results page. I thought it distinct enough to easily notice, and couldn't remember seeing it before (use the app most of the time).
    Unfortunately, that was rthe one and only time I saw that happen over the next ten minutes of running searches on multiple topics. All subsequent cycles showed the exacrt same shade of blue on return, and this includes tests run in the middle of and following such steps as clearing the app (cache, cookies history), force quitting the app, and restarting the iPad.
    Nothing made any difference. That first time was the one and only time, so far, that I saw the color change.
    Also tried a Reset. No change. I guess if it's really supposed to work then a Restore might do it but .... I think not.
    Message was edited by: Michael Morgan1

  • Issue in Enter Query mode (F11) is not changing color to blue in oracle apps custom form 10g

    Experts,
    I have created a custom form , everything is working fine but when i pressed on the oracle apps custom form ( F11)  then its not changing the form color to blue.
    I have already done below setup but nothing is working fine :-
    1.APP_STANDARD.EVENT('WHEN-NEW-RECORD-INSTANCE'); at your block level Trigger.
    2.Execution Hierarchy Property to "Before" or "After" at block level trigger.
    Could anyone help on this.

    please compile the CUSTOM form and retest the issue
    $ frmcmp_batch.sh module=<form name>.fmb userid=apps/<apps password> output_file=$CUSTOM_TOP/forms/US/<form name>.fmx module_type=form compile_all=special
    AppsMasti
    shairng is Caring

  • Visited link color is not changing when there is no page redirection

    Visited link color is not changing when i just open a popup on clicking the hyperlink.. whereas visited link color gets changed when i redirect to a new page on clicking the hyperlink
    I want to have my visited link color to change even if i show a popup on clicking the hyperlink
    This works fine with IE..

    Hi,
    Have a look at the user status table TSOCM_STAT_PROP and see if there are any unwanted PROCESS_TYPE <> STSMA combinations.
    For your process type there should only be one kind of status schema assigned.

  • Visited Sites do not Change Color

    Since the recent Safari upgrade, the sites I have visited do not change color.  For example, if I do a Google search, click the first link and then either use the back button or the refresh button in the Google search field, the site I just visited is not displayed in a different color.  This is happening on other sites as well but not all of them.  Project Gutenberg works as I expected.
    Any suggestions on how to fix this?  It makes searching more difficult since I now mentally have to keep track of which sites I've visited.  I realize this problem has cropped up before, but the answers are from several years (and versions) ago.
    Thank you in advance for any help you can give me,
    Frank

    You can use code in userContent.css or use the Stylish extension to override the page colors.
    I use code like this:
    <pre><nowiki>a:visited {color:#e08!important;background-color:#eee}
    a:visited * {color:#e08!important;outline:1px dotted red!important;outline-offset:-1px}
    a:visited img {background-color:transparent}
    </nowiki></pre>
    *Stylish: https://addons.mozilla.org/firefox/addon/stylish/
    *http://userstyles.org/help/stylish_firefox
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the <b>chrome</b> folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration

  • Maybe you are looking for

    • ERROR:NameNotFoundException: Object not found in lookup of MYDB

      NW 7.0 SP3 I have defined a datasource MYDB by VA,and it tests OK. I wonder about how to use it in J2EE project or in WebDynpro Project. I created a J2EE project ,in the Web Model ,i new a class Test: public static Connection myconn(){          Conte

    • Stop reader from launching when I create a PDF with PDFWriter

      I've been using PDFWriter from an old (licensed) version of Adobe 4.0 in conjunction with AutoCAD and other sotware for several years (the full version is still installed on my machine), but yesterday afternoon, every time I created a PDF using it (a

    • Disabling Controls in the Full Featured User Interface

      Hi Ppl, I do not want few controls (variables view, stack view) to be displayed in my full featured User Interface. What is the best way to do this. Are there configuration parameters(UserInterface.xml) that could make these controls  in visible. Or

    • XML simple code help

      Hello Everyone, I am learning XML and I'm trying to make a simple code that will display three different messages on a separate line. I already have the code but there is something that does not let it work. Please if somebody can take a quick look a

    • Generating Wizard layout for updating record

      Is there a way of using JHeadstart to generate a wizard to be used for updating records (and not for inserting) ? I want to be able to use a table-form layout, but have the update of the record via the form to be presented in a wizard layout. Cheers,