IWeb text colors not as specified

I've got a site that works fine in almost every regard, save one. The text colors do not seem to stay for certain menu items. I've created a navigation menu of six words: home, projects, about, and so on.
http://www.christopherosolin.com/COD/Southpaw01.html
On this page, the word "project" should be a yellow color, and it is. But when clicking the "next" button to take you to this page:
http://www.christopherosolin.com/COD/Southpaw02.html
the word project should still be yellow, but goes back to white. In iWeb I've formatted the text the same way on both pages, yet this consistently happens on each subsequent page. I've gone back and tried reformatting, but nothing changes.

Thanks for the reply. I've done every permutation possible to work this out, and none seem to help. But, what I just did fixed it. I rebuilt from scratch the navigation menu and that seems to have fixed it. That menu had been in use since iWeb 06 and I think there must have been some ghosts in the machine. New menus rebuilt the same way, but now work as expected.

Similar Messages

  • How can i change bookmarks text colors, not toolbar text color.

    I know how to change color of toolbar text but still want to change the text color of bookmarks.

    You can experiment with code like this in the userChrome.css file.
    *http://kb.mozillazine.org/userChrome.css
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #personal-bookmarks .bookmark-item > .toolbarbutton-text {color:#000!important; background-color:-moz-dialog!important}
    </nowiki></pre>
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration

  • Iweb text hyperlinks not working

    ive used iweb to upload my bands website and am not a serious web developer so it worked great but i cant figure out why the hyperlinks i used on the text go straight to the apple site and the ones i used on the buttons and images i made work fine but the text links dont  if somebody knows whats up with that and has a minute the site is at audioresistance.net

    When you create a hyperlink the default URL is an Apple one.  Reselect the text and go to the Inspector/Hyperlink/Hyperlink pane and reenter the url you want to use:
    Then check the Makc hyiperlinks active box and test the link before going on to the next link.
    OT

  • Table css column-header text color not working

    When setting
    -fx-text-fill: red;
    in a css table, it does not change the header to tex to red. Is there another value? .table-view .column-header {                                                                                                                                                                                                                                                                                                                   

    You have to override the following from the caspian.css:
    .table-view .column-header  {
        -fx-text-fill: -fx-selection-bar-text;
        /* TODO: for some reason, this doesn't scale. */
        -fx-font-size: 1.083333em; /* 13pt - 1 more than the default font */
        -fx-size: 25;
        -fx-border-style: solid;
        -fx-border-color:
              Inner border: we have different colours along the top, right, bottom and left.
              Refer to RT-12298 for the spec.
            derive(-fx-base, 80%)
            linear-gradient(to bottom, derive(-fx-base,80%) 20%, derive(-fx-base,-10%) 90%)
            derive(-fx-base, 10%)
            linear-gradient(to bottom, derive(-fx-base,80%) 20%, derive(-fx-base,-10%) 90%),
            /* Outer border: */
            transparent -fx-table-header-border-color -fx-table-header-border-color transparent;
        -fx-border-insets: 0 1 1 0, 0 0 0 0;
        -fx-border-width: 0.083333em, 0.083333em;
    .table-view .column-header-background {
        -fx-background-color: -fx-body-color;
        -fx-padding: 0;
    }

  • Flash chat alternate text colors

    Anybody know how to alternate text colors in a Chat  i tried to use css but it changes all the text colors not just each message. Anybody know or point me in the right direction?

    Hi Mate,
    Send the Color value from
    As3     ---->> FMS Asc (color).
    As3  << ----- FMS
    Ex:
    Flash
    ns.call(privateMsg ,#00000,null)
    ASC
    newClient.privateMsg = function(color){
        application.list[user].call("privateMsg2",color);

  • How to change font size & color of text inside note and callout annotation using code ?

    Hi,
    I want to set different font size & color for the text inside note and callout annotations. And for this, I am setting properties using the DS attribute while creating annotations (see below code).
    //"font: Helvetica,sans-serif 12.0pt;font-stretch:Normal; text-align:left; color:#rrggbb";
    sprintf(buf,
    "%s %2.1f%s%s%s%s;" , "font: Helvetica,sans-serif", float(g_fontSize),"pt; font-stretch:Normal; text-align:left; color:#", str[0], str[1], str[2]);CosDictPutKeyString (cosAnnot,
    "DS",CosNewString (cosDoc, false, buf, strlen(buf)));PDAnnotNotifyDidChange(pdAnnot, ASAtomFromString(
    "DS"), 0);
    But this doesn't work when I just wrire text after creating annotation.
    And suprisingly it works fine when I click first outside of the annotaion and then double click to write text inside annoatation.
    Is this bug of Adobe ? if not then please let me know the fix.
    Regards,
    Arvind

    Hi
    Is there any way(eg. preference) by which we can change default color & font size for annotation?
    Regards,
    Arvind

  • Graphics.drawImage not using specified background color

    Thanks to everyone in advance -
    I have created an image resizing class, with a crop method. The cropping works great, the issue that I am having is the background color that i specify in the drawImage function of Graphics is not working correctly, it defaults to black as the background regardless of what I supply (in this case Color.WHITE). Also, the overlaying image or top most image (comes from a file) is being inverted(i think it is) or otherwise discolored. Here is the code below that I am working with:
    Thanks,
    Sam
                   public void Crop(int Height, int Width, int SourceX, int SourceY) throws Exception {
                        //output height and width
                        int OutputWidth = this.OutputImage.getWidth();
                        int OutputHeight = this.OutputImage.getHeight();
                        //create output streams
                        ByteArrayOutputStream MyByteArrayOutputStream = new ByteArrayOutputStream();
                        MemoryCacheImageOutputStream MyMemoryCacheImageOutputStream = new MemoryCacheImageOutputStream(MyByteArrayOutputStream);
                        //Create a new  BufferedImage
                        BufferedImage NewImage = new BufferedImage(Width, Height, BufferedImage.TYPE_INT_ARGB);
                        Graphics MyGraphics = NewImage.createGraphics();
                        MyGraphics.drawImage(this.OutputImage, -SourceX, -SourceY, OutputWidth, OutputHeight, Color.WHITE, null);
                        // Get Writer and set compression
                        Iterator MyIterator = ImageIO.getImageWritersByFormatName("PNG");
                        if(MyIterator.hasNext()) {
                             //get image writer
                             ImageWriter MyImageWriter = (ImageWriter)MyIterator.next();
                             //get params
                             ImageWriteParam MyImageWriteParam = MyImageWriter.getDefaultWriteParam();
                             //set outputstream
                             MyImageWriter.setOutput(MyMemoryCacheImageOutputStream);
                             //create new ioimage
                             IIOImage MyIIOImage = new IIOImage(NewImage, null, null);
                             //write new image
                             MyImageWriter.write(null, MyIIOImage, MyImageWriteParam);
                        //convert output stream back to inputstream
                        ByteArrayInputStream MyByteArrayInputStream = new ByteArrayInputStream(MyByteArrayOutputStream.toByteArray());
                        MemoryCacheImageInputStream MyMemoryCacheImageInputStream = new MemoryCacheImageInputStream(MyByteArrayInputStream);
                        //resassign as a buffered image
                        this.OutputImage = ImageIO.read(MyMemoryCacheImageInputStream);
                   }

    Thanks for all your help!
    Here is the solution, notice the clear rect:
                   public void Crop(int Height, int Width, int SourceX, int SourceY) throws Exception {
                        //output height and width
                        int OutputWidth = this.OutputImage.getWidth();
                        int OutputHeight = this.OutputImage.getHeight();
                        //Create a new BufferedImage
                        BufferedImage NewImage = new BufferedImage(Width, Height, BufferedImage.TYPE_INT_RGB);
                        //create new grapics
                        Graphics2D MyGraphics = NewImage.createGraphics();
                        //set background
                        MyGraphics.setBackground(Color.decode(this.BackgroundColor));
                        //clear rect
                        MyGraphics.clearRect(0, 0, Width, Height);
                        //draw image
                        MyGraphics.drawImage(this.OutputImage, -SourceX, -SourceY, OutputWidth, OutputHeight, null, null);
                        //dispose graphics
                        MyGraphics.dispose();
                        //resassign as a buffered image
                        this.OutputImage = NewImage;
                   }

  • IWeb photos color do not match with the same posted on the internet

    Hello,
    my question is about the quality of the images posted by iWeb on the internet.
    Yesterday, I sucessfully published a simple page with two images, and the color of them was faded compared to the images showing on the iWeb application.
    I used the 'Adjust' panel to increase the color, and after published again, but althought the images were more expressive, they still did not match the equivalent in iWeb application, continued not so vivid.
    What might that be?
    More or less a month ago, I also published images and the colors matched perfectly with the material seen in the iWeb application.

    I have placed two comparison examples in my file sharing folder.
    Maybe it might help explain what I am experiencing. The differences may be subtle but they exist.
    For my file sharing the address is
    http://homepage.mac.com/hito_/Menu4.html
    Maybe this might help.
    These images were transported from iPhoto

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

  • CYMK slider color not staying put when trying to color match editable text

    Hello-
    I'm having trouble with Acropbat Pro and color matching. I tried the magnifying glass for the editable text box I created, but the color is slightly off. I used command 3 to open up the CYMK slider. I adjusted the slider to the color I do want (the CYMK color in the document made in Illustrator), hit "ok", but the color reverts to something else!!! I recheck  the text color and sure enough the CYMK slider bar changed to something a little different. Why is this????
    Ex: I click on text in the editable box, then another color option, adjust the CYMK slider to 0, 58, 28, 0 and then click ok to exit out of the color choices box. The text then changes to different color again!!! I click back on the color and somehow the CYMK slider is 3,56,28,0???? Why is this??? I'm so frustrated I can't figure out how to match this document and make it stay!!!
    Thanks!!!
    Lisa V

    Here is an example on an editable text art document:
    Baseball Party Invitation Editable Text Invitation by printmagic
    This is what I mean. I am bringing in an art document and creating a personalized name area. I am trying to match the text to a color on the document but the magnifying glass is off. And when I go into "other color" I am given a number of color picker options including a slider. I am given a CYMK slider if I click command 3 on the grayscale slider. I change the CYMK color slider to what I want but the document switches it.

  • Q:How to set the inactive 'sub-tab' text color?

    On portal.oracle.com I created my own Page Style (changed the
    color scheme) from the default and then added 'sub-tabs' to the
    Group Docs tab. Now when you click on Group Docs you see four
    'sub-tabs' underneath it. The problem I am having is that on the
    inactive tabs the text is not what I set when I created the Page
    Style. It appears to be reverting to color of the original Style
    which was created for my Portal. Any suggestions?

    do it like this
    g.setColor(255,255,255);//this will set the color for the canvas
    g.fillRect(0,0,ht,wd);//this will fill the rect(screen) with the above color,actually this will be BG color for ur app..ht,wd are the height and width of ur canvas...
    now specify color for the text
    g.setColor(r,g,b);//this color shud ofcourse be diff frm the color set for BG
    now draw the string
    g.drawString("xxx", 0, 0, ....);

  • IWeb hyperlink color change: have already tried posted suggestions

    I am beyond frustrated right now. Please help me get my program to do what it was clearly designed to do! I will be thrilled if I am just making a simple error.
    I have tried the following to change hyperlink text color:
    a. disabled hyperlinks, selected the hyperlink (both by clicking in and by clicking near--both get blue box around it), then highlighting text, clicking on "T" in inspector, changing font color there, re-enabling hyperlinks. NO COLOR CHANGE.
    b. downloading a program that is supposed to do it for you. NO COLOR CHANGE.
    c. with navigation bar (not my main concern), tried creating my own text box, with own links. When it was just text, I changed the color with font change at bottom of iWeb. As soon as I created hyperlinks, they turned to black and wouldn't change. NO COLOR CHANGE>

    Yes delete it and redo it using the new way. It is sometimes a lot faster and easier to get rid of a difficulty than trying to find out where it goes wrong.
    I think it is part of the way it was formatted initially but I can't say for sure why it is not right. You can copy paste the style from another page or if this link is on another page you can copy paste it.
    Mireille

  • Acrobat Professional 8 Text Color Problem

    I have a question regarding Text Field Tool In Acrobat 8. I've tried a couple different things and nothing seems to work, I've looked through a bunch of questions on the forum and couldn't find exactly what I'm looking for - if anyone can help I'd be greatly appreciative!
    I'm a designer and I'm trying to change the text color in an editable field for a client. The way I've designed the entire flier is for the text to be a specific color blue (C100 M45 Y0 K37 or R0 G58 B111 (- I know you can't ad a PMS color)) and I'd like to keep the editable field the same color.
    I've tried both the "Properties" (Apple-E) and I've tried "right-clicking" --> Properties --> "Apperance" --> "Other text color" and here's where I think the problem lies. I can't pull down any menus within the "Colors" Palette? I can move the Gray Scale Slider (but can't change to a RGB or CMYK slider?). I can pick from the "Apple" List, the Image Spectrum, Color Wheel or a crayon color. It looks like these are all prepicked colors and I can't add my own. I know I can't do a PMS color but I thought I'd be able to specify a specific CMYK or an RGB color? Is this just not possible or am I doing something wrong? Please help, thanks!!!

    HI. I've run into this same problem - not being able to change color modes to define a new color swatch in the color palette in acrobat 8/9. One way that I've been able to work around it is to open TextEdit, pressing command-t to show the fonts palette and then pressing the Text Color button within the fonts palette. This will cause the color palette (the same one used by Acrobat I believe) to open. From there, the pulldown menus are accessible, allowing me to create a CMYK swatch. Once I enter the proper percentages for the desired color, I can drag the main color swatch to the swatches section at the bottom of the color palette. Once the swatch is there, it will be available in Acrobat as well.
    Another thing that I've noticed is that when using the color palette in Acrobat, if you choose a swatch that was defined using the CMYK slider from the swatch section, the color palette interface will change to the CMYK slider interface, allowing you to alter the color in Acrobat. This seems to be the quickest way to bypass the non-responsive color palette dropdown menus.

  • Is there any way to set text color of a (NS)Button in IB?

    as the title reads.. is there? i'm using xcode 4.6

    If you are asking about the actual text color then yes it is possible but not so simple.
    If you look at the class definition for NSButton youwill see two methods
    – setAttributedAlternateTitle:
    – setAttributedTitle:
    These will allow you to specify an attributed string as the button label and in the attributed string you can set the  string attributes such as color.
    If you are just looking to change the background color or somehtingalong those lines that can be done right in NSButton.

  • Text Color in disabled text field

    Hi,
    In our application, The default rendered text in disabled fields is not visible properly. In order to improve the visibility we applied different color using content style for those fields.
    We did see the change in the fields after applying content-style. But it is a painful job to apply the content-style for each input field.
    Is there a way to configure default text color in ADF which is applicable for all the disabled fields in the application?
    We also tried the option of setting the color using css in following manner:
    af|inputText::content{color:#333333;}
    But this didn't have any impact on the text color.
    Please let us know if we can achieve this through a single point fix in the code.
    Thanks
    Ravi

    Hi Dimitar,
    The :rtl is a special case, as is :ltr and :alias. These are always placed at the end and are purely for the engine, they do not generate any style class on the DOM whereas other peudo classes generate a p_AF<state> class on the MAIN DOM element, which is why you must place the class on them. For example:
    af|inputText:disabled::content becomes
    In the CSS: af_inputText.p_AFDisabled af_inputText_content
    In the HTML <span class="af_inputText p_AFDisabled"><input class="af_inputText_content">
    Regards,
    ~ Simon

Maybe you are looking for

  • How to write to mounted disc image

    I need to add a file to a disc image I created, but it always comes up no write no matter what I do. Anyone know a good tip to do this? Thanks.

  • FI ERROR Gb001. Internal program error process_leaf 2 value 12

    there is some sort of validation and substitution that is used by FI consultant. After that whenever i enter amount in FG60 and press enter the error comes.Please share the solution. Affected transaction - FB60 Message code - GB001

  • Auto batch determination from PO to Delivery

    Hi, I have created a PO and entered the Batch manually.  While creating the delivery for the PO the batch is automatically determining.  But the delivery doc has imcompletion because of batch determination check error noticed.  After I deleted the ba

  • Using Find in TM

    How stupid is this question? I have my Mail program open, open TM, comes up, now I want to find an old email. Using command>F nothing happens. How do I get the search box? thanks

  • Consolidation at Entity Currency

    Hi, This may be silly question, but I am confused lately and can't seem to figure out the Value dimension in HFM. I am consolidating a parent at <Entity Currency> and I see "OK" for all levels after it is done. I was doing some checks and when I chan