The colors are not showing up correctly on my site like they do in photoshop and explorer.

Why don't the colors show up correctly in Firefox? They are exactly the same color yet firefox shows them as slightly different. I checked them in Photoshop. Same hexadecimal, same RGB. It looks correct in Internet Explorer but does not in firefox. The color is: hexadecimal: #0FCFF3, RGB: 15,207,243.

This can be caused by a problem with the color profile for your display monitor or color profiles embedded in images.<br />
Try to disable color management to test if it is caused by a problem with color management.<br />
You can set the gfx.color_management.mode pref to 0 on the about:config page to disable Color Management.<br />
You need to close and restart Firefox to make the change effective.
See:
* http://kb.mozillazine.org/gfx.color_management.mode
*http://kb.mozillazine.org/about:config

Similar Messages

  • Cell background colors are not showing in preview - help? - DW4

    Hi,
    I created a horizontal table for my menu bar, and gave each cell a different color by creating a separate class for each with background image - image is a block of color created in Photoshop. In design mode they look they way I want, but in preview (Safari) the colors don't show up at all - the whole area is gray, and all I see is the text for each cell. Can someone tell me what I'm doing wrong? Alternatively, is there a better way I can set this up to have different colors for each button?
    Thank you!

    Here is the HTML code, and the CSS code for the menu bar follows: 
         ul.MenuBarHorizontal           
    ></style><style type="text/css"><!body {     background-color: #FFF;     font-family: Arial, Helvetica, sans-serif;}-->
        h1.  
         ul.MenuBarVertical          
    [about | MS_about.html]
    [fiction | MS_fiction.html]
    [dramatic work | MS_dramaticwork.html]
    [arts | MS_arts.html]
    [contact | MS_contact.html]
    [blog | MS_blog.html]
    <!-- end #header ><div id="mainContent"><p> </p><table width="950" border="0" cellspacing="10" cellpadding="12">        <tr>          <td width="106"><p> </p></td>          <td width="766"><p> </p>            <p>Miriam Seidel is a writer, critic and curator whose work is informed by her background in art, music and dance. </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p></td>        </tr>        <tr>          <td colspan="2" bgcolor="#CCCCCC"><p>c Miriam Seidel 2011 all rights reserved</p></td>        </tr>    </table><script type="text/javascript"><!var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", );var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", );var MenuBar3 = new Spry.Widget.MenuBar("MenuBar3", );//></script></body>     <! end #mainContent --></div></html> 
    CSS CODE:
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */ 
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding /ul.MenuBarHorizontal/ Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html /ul.MenuBarActive{     z-index: 1000;     font-family: Arial, Helvetica, sans-serif;     font-size: medium;     color: #FFF;     background-color: #FFCC99;     background-repeat: no-repeat;     left: auto;     top: auto;     right: auto;     bottom: auto;}/ Menu item containers, position children relative to this container and are a fixed width /ul.MenuBarHorizontal li/ Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) /ul.MenuBarHorizontal ul/ Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item /ul.MenuBarHorizontal ul.MenuBarSubmenuVisible/ Menu item containers are same fixed width as parent /ul.MenuBarHorizontal ul li/ Submenus should appear slightly overlapping to the right (95%) and up (-5%) /ul.MenuBarHorizontal ul ul/ Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible 
    /* Submenu containers have borders on all sides /ul.MenuBarHorizontal ul/ Menu items are a light gray block with padding and no text decoration /ul.MenuBarHorizontal a/ Menu items that have mouse over or focus have a blue background and white text /ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus{     background-color: #6C9;     color: #999;     font-family: Arial, Helvetica, sans-serif;     font-size: medium;     font-style: normal;     line-height: normal;     font-weight: normal;     font-variant: normal;     text-decoration: none;     text-align: center;     vertical-align: middle;     height: 50px;     width: 115px;}/ Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible{     background-color: #FFCC99;     color: #FFF;     font-family: Arial, Helvetica, sans-serif;     text-decoration: none;     font-size: medium;}
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) /ul.MenuBarHorizontal a.MenuBarItemSubmenu{     background-image: url(SpryMenuBarDown.gif);     background-repeat: no-repeat;     background-position: 95% 50%;     text-align: center;}/ Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) /ul.MenuBarHorizontal ul a.MenuBarItemSubmenu{     background-image: url(SpryMenuBarRight.gif);     background-repeat: no-repeat;     background-position: 95% 50%;}/ Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) /ul.MenuBarHorizontal a.MenuBarItemSubmenuHover{     background-image: url(SpryMenuBarDownHover.gif);     background-repeat: no-repeat;     background-position: 95% 50%;}/ Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover{     background-image: url(SpryMenuBarRightHover.gif);     background-repeat: no-repeat;     background-position: 95% 50%;}
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe /ul.MenuBarHorizontal iframe/ 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; 
    Date: Mon, 20 Jun 2011 15:30:46 -0600
    From: [email protected]
    To: [email protected]
    Subject: Re: cell background colors are not showing in preview - help? - DW4 
    NEED to see the code.
    Otherwise it's like dialing a random phone number, and asking whoever answers, where you left your keys.
    >

  • True colors are not showing on some photos.

    True colors are not showing on some photos. Today a black sweatshirt displayed as blue. Is there an adjustment?

    Reload the webpage while bypassing the cache using '''one''' of the following steps:
    *Hold down the ''Shift'' key and click the ''Reload'' button with a left click.
    OR
    *Press ''Ctrl'' + ''F5'' or ''Ctrl'' + ''Shift'' + ''R'' (Windows and Linux)
    *Press ''Command'' + ''Shift'' + ''R'' (Mac)
    Let us know if this solves the issues you are having.

  • When i print out a color photo the colors are not accurate

    I have a new envy110 series CQ811A. I have a windows 7 64-bit laptop. There are no error messages and the Envy works great but when i print a picture off of a web site the colors are not accurate and i mean none of them. i have returned one printer already but this one is doing the same thing. i really like this printer but if it won't print the colors correctly  i don't know what i will do. I also have a HP C4280 All In One Photo Smart and whatever is printed off the colors are great it just is not wireless. I have tried everything and nothing helps. Is there a solution

    Hi easyneez5!
       Sorry to hear it's not printing web pages so well.
     I do have a suggestion, that may or may not align with the way your are used to printing web pages; HP has a new and improved application for printing web page content; HP Smart Print.
       It's supported on IE (most versions) and can do some neat tricks: http://www8.hp.com/us/en/partner/microsoft/bing-bar-for-hp/smart-print.html
      There are also other potential 'tweaks' you can try in the [Printing Preferences] / [Advanced]: Image Color Managment; You might try setting it from 'ICM Handled by Host System' (default) to 'ICM Handled by Printer' or even 'ICM Disabled'.
       Again, this is merely a potential way to check to see if this helps get those colors right; and remember your settings before you change them.
      Hope this helps
    Regards,
    HardCopy (I am employed by HP) [If this was helpful, please mark this 'Solved' or 'Accept as Solution' so others can find this too]
    How to Give Kudos | How to mark as Solved

  • I have a new iPad air and all of my photos from the cloud are not showing up on my new iPad air. How do I get all my photos to show up?

    Hi, I have a new iPad air, all of the photos from the cloud are not showing up. What do I need to do to get all my photos from the cloud onto my new iPad air? Thanks!!

    Reset your device: hold down the home button along with the sleep/wake button until the screen goes black and you see the Apple, then let go. (No data loss)

  • The apps are not showing

    iphone is just newly and ios 5.0.1
    i jailbroek and got cydia
    then added the link to install INSTALLOUS
    suddenly, the apps are not showing :S what should i do!! we did not download any apps!!!!!!!!!
    pls help meeeeeeee t
    thank for advancing

    i got them r back phew lol
    oh really? i dunno that :/ anyways its fine now :)
    thank you

  • My films in the cloud are not showing on my iPhone. It's only showing my music videos

    My purchased films in the cloud are not showing on my iphone5. All it's showing are my music videos.
    Please help

    If you go into iTunes > Preferences (command-comma) and select the Store tab on the popup, is the 'show iTunes in the cloud Purchases' tickbox ticked ? If not then tick it, if it is then try unticking it, exiting the popup, and then going back in and re-ticking it

  • Color space-creating a book in My publisher-.when I look at the share book pre print the colors are all dulled out. I work in pro photo rgb in LR and PS -.My Pub is sRGB-.where is the problem?

    Color space…creating a book in My publisher….when I look at the share book pre print the colors are all dulled out. I work in pro photo rgb in LR and PS ….My Pub is sRGB….where is the problem?

    I finally got to my references. This had to do with "soft proofing" on screen in Photoshop.
    So this may not help you at all. Re: Strange sRGB soft-proofing behavior  So go ahead and leave that setting at Basic.
    However there is a Color Management forum that you also go to and see if anyone has answers for your particular problem.
    Here is the link: Color management
    I hope they can help you out.
    Gene

  • I have "Explicit" song tags in iTunes, but they (the tags, not the songs) are not showing up on my iPhone.

    Hi,
    I recently found a way to add the "EXPLICIT" tag to songs in my iTunes Library (using Subler), and just presumed that the tags were not showing up in my iPhone Music because the phone simply did not have the function to display them.
    However, after updating to iOS 7, and seeing every song I have ever purchased, I noticed that the iPhone can indeed show whether songs are explicit or not (by marking them with a letter 'E').
    Therefore I am just wondering why I can see whether songs are explicit on my Mac, yet not on my iPhone. I have tried removing the songs from my iTunes Library, syncing to remove them from my phone, re-adding them to my Library, and then re-syncing to put them back onto my phone, and the explicit tag still does not show up.
    Please can you help me resolve this.
    Thanks

    If you are syncing your contacts from your PC with iCloud, they are not transferred to your phone using iTunes.  They are synced to your phone using iCloud, either over wifi or your cellular data network.
    First go to icloud.com with your computer browser, sign into your account and open Contacts there to confirm that your contacts appear.  If they do, go to Settings>iCloud on your phone, sign into your account and turn Contact on.  Assuming your phone is either connected to wifi or your cellular data network, the contacts should then download from iCloud to your phone.

  • I have "Explicit" songs tags in iTunes, but they (the tags, not the songs) are not showing up on my iPhone Music.

    Hi,
    I recently found a way to add the "EXPLICIT" tag to songs in my iTunes Library (using Subler), and just presumed that the tags were not showing up in my iPhone Music because the phone simply did not have the function to display them.
    However, in iOS 7, and seeing every song I have ever purchased, I noticed that the iPhone can indeed show whether songs are explicit or not (by marking them with a letter 'E').
    Therefore I am just wondering why I can see whether songs are explicit on my Mac, yet not on my iPhone. I have tried removing the songs from my iTunes Library, syncing to remove them from my phone, re-adding them to my Library, and then re-syncing to put them back onto my phone, and the explicit tag still does not show up.
    Please can you help me resolve this.
    Thanks
    iphone 5s - ios 7

    If you buy them as a Ringtone, then Itunes should automatically put them in Tones. It is a huge hassle and takes time most of us don't have to waste, when we purchased them as Tones and Apple told me they would automatically show up in Tones if purchased from Itunes Store. NOT!  And we shouldn't have to google to find the answer. They should make that clear on Itunes store.  Very disappoiinted in the Itunes upgrades that have caused so many problems.

  • Some of the images are not showing up on my Blogger blog even though the HTML is there. They do show up in Opera.

    Here is the link to the blog post -
    http://happyholidays-blog.blogspot.com/2010/09/welcome-to-trick-or-treat-street.html
    Three days ago I went to a post from last year and an image was gone. The code was there but not the image.
    It doesn't get rid of all the images just certain ones and they are consistently gone. It is not a random deletion of images.
    I have had images not show up on other blogger sites.

    See http://kb.mozillazine.org/Images_or_animations_do_not_load
    It is possible that you clicked "Block Images" in the right click context menu while trying to save an image.
    Check the image exceptions: Tools > Options > Content: Load Images: Exceptions<br />
    See [[Options window - Content panel]]
    *A way to see which images are blocked is to click the favicon (<i>Site Identification</i> icon) on the left side of the location bar.
    *A click on the "More Information" button will open the Security tab of the "Page Info" window (also accessible via "Tools > Page Info").
    *Open the <i>Media</i> tab of the "Page Info" window.
    *Select the first image and scroll down though the list with the Down arrow key.
    *If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.

  • Some of the apps are not showing in the launchpad only the names are not the icon

    Some of the apps icons are not showing in launchpad. Only their names are showings

    So what version of Premiere Pro are we talking about here?
    Describe what "cant select" and "cant increase" means. 
    We cant see what you are doing or with what  or where!
    These arent things that get "broken".

  • The icons are not showing up

    Hello Everyone
    After upgrading to lion on my MBP, My itunes apps are not showing their picture/logo. When I click on one it says "The App could not be used because the original file could not be found. Would you like to locate it?" Now they are all shouwing up on my iphone but lots are missing in itunes.
    Thanks
    Why atl

    Go to Settings>General>About>Version.
    you can identify your model iPod here:
    Identifying iPod models
    A 1G (original) can go to 3.1.3
    A 2G to 4.2.1
    A 3G to 5.1.1
    A 4G and later to the current 6.1.3

  • The templates are not showing up after I select them???

    the templates on pages are not showing up after I select them....unless I highlight the entire page and select a particular colour.  That leaves all the colours in the photo off.  Any help would be so very helpful.   

    CeraG - It will help to answer if you supply your system version, pages version and if you lately have done anything to the computer (installing, uninstalling etc)
    I think you have forgotten to do a Software update or it could also be a font problem but more info from you is needed!

  • I'm editing a video in imovie '08 and adding iphotos to the movie, but some of the photos are not showing. Help

    I'm editing the video of a presentation one of my clients has delivered, I'm adding the  slides of the presentation in as photos from iphoto, the problem is that some of the photos are now showing up in the video even though they have been added. Also where photo number 7 should be it is showing photo number 12? I really need to sort this out and need help. How do I get the photos to show and show properly in the right place?
    Thank you in advance

    I've got a list of things to look at and tryout to see if we can narrow down what's happening. Try any one in any particular order see if the problem keeps happening.
    1. What format are the original photos in?
    Are the all the same?
    If they are different, do some work and others do not?
    File formats that are “raw” may be a problem.
    File size may also be a problem if they are very large files.
    2. Duplicate the project in the Project Library
    Try dragging a photo into that copy of the project
    Any differences? If you can import photos into the Duplicate, try copying then pasting into the original and see if the image shows up.
    3. Duplicate a picture inside of iPhoto
    If you want to have a particular picture and can find it within iPhoto try making a duplicate.
    Does it show up in the Photo browser? And can you drag that duplicated picture into the project? What do you see, what result do you get?
    4. Clean the iMovie cache
    Quit out of iMovie. Then go to your Movies Folder > iMovie Events >  Project folder name
    Drag the folder "iMovie Thumbnails" to your trash. Then open the folder "iMovie Cache" and drag the file "Cache.plist" to the trash.
    This should regenerate any cached thumbnails for the project, may be helpful.
    5. Try tossing out the iMovie preferences
    Quit iMovie.
    Open a Finder window to your user's Home folder>Library >Preferences folder. Find the file named "com.apple.iMovie.plist" or "com.apple.iMovieAppl.plist" and move it to the trash.
    Try opening iMovie again, then opening the project and dragging a photo from the Photo Browser into the Project timeline.

Maybe you are looking for

  • OBIEE 11G error while installation at the configuration setting(ASinstance)

    Hi Experts, I am trying to Install OBIEE 11G on Windows on Local PC.But getting the following error . "Exception in thread "AWT-EventQueue-0" java.lang.OutOfMemoryError: PermGen space" at the configuration step of ASinstance. I have set the virtual m

  • Web Page only works with IE on Windows machine?

    I am an MD working at a local hospital which uses McKesson’s Horizon WP Physician Portal to allow access to medical information over the web. It does not work in any of my Mac browsers (Safari, Camino, Firefox, Netscape, IE) and they say they are not

  • Access from database

    Is it possible to access iFS API packages from within java stored procedures placed in non-ifs schemas? We want to trigger automatic creation of directories and users according to changes made in the database. Thanks in advance, Mikhail Schelkin

  • Safari history and shortcut problems

    I'm using Safari ver3.2.1 and it was running fine until a few days ago. Now, nothing is saved under "History" and some of the shortcuts, mainly the "Back" and "Forward", doesn't work at all. I tried to reset Safari to see if that will help, but that

  • Flash drives and iphoto

    I'm trying to make copies of my picturs on a cd/dvd, but the discs are not large enough. Has anyone been able to copy them onto a flash drive? Thanks