Different colors in Safari

Hello,
why Safari shows different colors that Opera and Firefox?
Here is preview:
http://www.mikesweb.eu/pic.jpg
Thanx!

Hi big.mike,
Are you creating a web site? If so, which editor? Depending on which editor, you should have an option for Web Safe Colors. That way they will all the same shade of green.
Carolyn

Similar Messages

  • Different Colors in Safari & Explorer

    Hello there,
    First to get an answer to my question to "why the colors look different on Safari and Explorer" I thought I would browse through some posts here. I found out that .jpg files should have a color profile (sRGB) assigned to them so they look right on Safari as they do (automatically) in Explorer.
    Well, I went back and assigned a sRBG profile to the .psd file from which I was creating .jpg files for a website I am working on... But all to no avail. The images look darker and more saturated in Safari than in Explorer.
    Could anybody give me a clue as for what I am doing wrong? And what can I do to fix the problem?
    Thank you very much.
    iMac   Mac OS X (10.3.9)  

    Hi iBod,
    Thanks for offering your help. But I think I figured out how to fix it. Instead of an sRGB profile, I assigned a Generic RGB one, which helped in eliminating the overall darkness and color saturation of the .jpg images in Safari. Now the same jpeg looks the same both in Safari and Explorer.
    Yet I think Apple people should take this into account while improving next generations of Safari browsers.
    Cheers,
    nycgraphiste
    iMac   Mac OS X (10.3.9)  

  • Safari title bar has two different colors

    Ever since installing Mountain Lion, Safari's title bar is two different colors: behind the title of the page, and the bookmark bar are both dark grey:
    I deleted .plists and whatnot, and that didn't work.  Also, I created a new user profile, and the colors are correct.  Help!

    After doing some digging, I found this:
    https://discussions.apple.com/thread/4141536?start=0&tstart=0
    and this:
    https://discussions.apple.com/message/19038993#19038993
    Also, I enabled the debug menu in Safari and clicked "Use Buffered Windows," and this is the result:
    Compared to my girlfriend's computer (brand-spankin' new, right out of the box), this still isn't 100% correct, but it is close.
    Also, I checked console (after I unchecked "Use Buffered Windows"), and it says "Invalid unbuffered shadow parameters."  Does anyone know what that means or how to fix it?

  • Different color in different adobe applications!

    I noted a difference in color between Lightroom and Photoshop CS4.
    If I export the PSD file from Lightroom as .jpg with Adobe RGB profile and then open it in PS I get a different color than if I open the PSD file with same profile!
    Very strange indead.
    My system is calibrated, monitor and printer, and I get excellent results. I use Adobe RGB throughout. Color is set in Bridge Creative suite color setting. All proof colors are unchecked. The problem is that the files appear different and print different if different applications.
    It seams that Lightroom, Preview, Acrobat and Indesign, (even the small thumbnail in Finder) all share same color. (With minor noticeable difference).
    However Photoshop looks very different. More saturated.
    Can someone explain please?
    Screenshot with multiple open programs.
    Full size image: http://www.jonpall.com/CS4-color-comparison.jpg

    I don't use Lightroom, but on the Photoshop display side
    You need to determine how your apps deal with tagged and untagged images, especially what Default profile they apply-assume-assign when the profile is absent, stripped and/or ignored.
    If a thumbnail in OSX Finder shows the problem, that is a big clue because Finder thumbnails are not color managed (Finder is assuming Monitor RGB).
    I recommend going here
    www.gballard.net/photoshop/pdi_download/
    and downloading the iPhotoTESTfolder.zip
    That series contains tagged and untagged verisions of AppleRGB, AdobeRGB, sRGB, ProPhotoRGB.
    First, look at the image icons in finder (they are all over the place).
    Next, drag the download folder into Bridge and observe the thumbnail colors (Bridge assumes sRGB on untagged images)...
    +++++++
    If your problem apps are displaying color the same as image icons in Finder, then either your app is not colormanaged or the file does not contain an embedded profile.
    +++++++
    PS:
    OSX Safari is a great app for testing JPEG files because it will either read an embedded profile or it will apply the default monitor profile (exactly where I am pointing you to) -- just drag your icon into an open Safari window...

  • Background color in HTML widget is a totaly different color in IE than what

    Background color in HTML widget is a totaly different color in IE than what is shown in safari. http://web.mac.com/bmoody/Royalfest/5k.html .The scrolling text background is beige in safari and Firefox but blue in IE6. Any insite to what I can change or what the issue is other than microsoft would be greatly appreatiated

    Welcome to the Apple Discussions. Unfortunately this about says it all:
    The scrolling text background is beige in safari and Firefox but blue in IE6.
    You could try an image file of the color you want to have and see if it will be rendered any truer by IE. Be sure the file contains the sRGB color profile that most web sites use and it should render the same on all browsers except for possibly the brightness.
    OT

  • I have a question about the calendar on the ipad2. I have multiple calendars in different colors. Some of the events are filled in with color. Others are just listed with a colored dot in front of the event. Any ideas why events ar showing up differently?

    I have an ipad2 and my question is about the calendar. I set up multiple calendars with different colors. Some of the events show up in filled color. Others only show with a colored dot in front of the event. I can't figure out why some show up one way and others show up differently? Any thoughts?

    On mine the ones that show on a coloured background are all-day events, the ones with dots and just timed events.

  • Not able to color different rows with different colors in a column of table

    Hi,
    I am trying to to display different rows with different colors in a column of the table based on some decode condition.
    I have gone through the following threads :
    Can we colour the rows in the column of a table
    Changing Color of a value in a column
    This is what i have done :
    1.Added the following code to custom.xss(changed the name to Custom.xss as suggested in one of the above threads) --- in path ---- jdev\myhtml\OA_HTML\cabo\styles
    <style selector=".1">
    <includeStyle name="DefaultFontFamily"/>
    <property name="font-size">11pt</property>
    <property name="font-weight">Bolder</property>
    <property name="color">#008000</property>
    <property name="text-indent">3px</property>
    </style>
    <style selector=".2">
    <includeStyle name="DefaultFontFamily"/>
    <property name="font-size">11pt</property>
    <property name="font-weight">Bolder</property>
    <property name="color">#FFFF00</property>
    <property name="text-indent">3px</property>
    </style>
    2. Sql query of the VO is :
    select comments,role ,decode(role,'REQUESTER','1','2') Colorattr from xxat_sars_action_history where request_id = :1 and event_name = :2 and action_code <> 'PENDING'
    order by sequence_num desc
    3. Coded the following in the process request of the controller:
    OATableBean table = (OATableBean)webBean.findIndexedChildRecursive("CommentsTB");
    OAMessageStyledTextBean roleBN = (OAMessageStyledTextBean)webBean.findIndexedChildRecursive("role");
    OADataBoundValueViewObject cssjob = new OADataBoundValueViewObject(roleBN,"Colorattr");
    roleBN.setAttributeValue(oracle.cabo.ui.UIConstants.STYLE_CLASS_ATTR, cssjob);
    where 1 and 2 form the colors ( i have even tried with 'Red' and 'Yellow'...as it was not working replaced with 1 and 2)
    4.The query returns data fine with corresponding 1 and 2 values.
    But different colors are not getting reflecting on to the UI.
    I am testing this on my local jdev.
    Please do let me know if i am missing something.
    Thanks ,
    Sushma.

    Any Clues please.....
    Thanks,
    Sushma.

  • How to Create Excel File in Background processing with different colors

    HI All
    I am trying to create Excel file in background & send it to user through e-mail, this i could acheive using fucntion module SO_DOCUMENT_SEND_API1, but here my requirement is i want to put different colors to columns of excel & this should happen in Background processing,
    Initially i completed above requirement by using HTML type of document with attachment type 'ALI'  & formatted output using write statement & used colors, after that i took this o/p using save_list function module & then table compress...etc.
    but i don't know how to achieve same if we need o/p in excel as size of object of excel file is less than that of HTML
    I am thankfull to everybody who will help me.
    Regards
    Lokesh

    Lokesh,
    Iam also trying to populate my text file with colors as an attachment . If you know this please let me know.

  • Different colors for the aggregation in the report

    Hi
    In my BEx report I require to show the aggregation in different colors.
    That is suppose my report has 3 characteristics and 2 keyfigures. When the 'Result' appears for characteristic1 it should be shown in blue color(not specific) and when the result appears for characteristic2 it should be shown in red color and when result appears for characteristic3 it should be shown in green color and similarly.
    Has any one already implemented this?
    Please help..
    Thanks and Regards,
    Satya Raj Kumar.

    Hi,
    Many thanks for your reply.
    But this is not what I am looking for.
    I require the result rows in different colors.
    Suppose the result row is based on aggregation of Characteristic 3 then the result row should appear in blue color.
    Suppose the result row is based on aggregation of Characteristic 2 then the result row should appear in green color. and so on.
    Please help on this.
    Thanks and Regards,
    Satya Raj Kumar.

  • Different color text in text area???????

    hi,
    i am working on applet in which i want to show different color text in text area????????
    could any one help me

    I'm not sure it replies, we have developed an
    editorkit for the JEditorPane for colorizing a
    text with a property file describing a grammar. We
    provide in the packaging a trivial sample
    for coloring a java syntax in an applet.
    http://www.japisoft.com/syntaxcolor
    And of course it also requires that you buy it, and a.brillant forgot to mention that a.brillant has a financial interest in this product.

  • Different color text in one cell

    How do I set a color for a group of words within a cell leaving the rest of the words black?
    I can make all the text within a cell the same color but when I select the words I want to be a different color the color selector in the toolbar goes away and only fx, Cancel and Accept buttons are available.

    If it is simple text, not the result of a formula, select the words you want to change and select another color from the toolbar or the color panel. That is, unless I didn't understand your request. I don't know where you are seeing Accept, Cancel and Fx.

  • I need help with color pallette in iPhoto 11. I have created a book and would like to use a different color background than those given in "background." I have found the color palettes but can't seem to incorporate them into my backgrounds palette.

    I need help with color pallette in iPhoto 11. I have created a book and would like to use a different color background than those given in "background." I have found the color palettes but can't seem to incorporate them into my backgrounds palette.

    That is not a feature of iPhoto - suggest to Apple - iPhoto Menu ==> provide iPhoto feedback.
    Additionally I have no idea what you are saying here
    I have found the color palettes but can't seem to incorporate them into my backgrounds palette.
    And it always helps for you to dientify the version of iPhoto that you are using
    LN

  • I have imported three gmail accounts into mac's mail client.  can i do anything to distinguish between them?  e.g., can i have each one appear in the mail list in a different color?  I don't want to do it by sender, but by email account.

    i have imported three gmail accounts into mac's mail client.  can i do anything to distinguish between them?  e.g., can i have each one appear in the mail list in a different color?  I don't want to do it by sender, but by email account.

    Welcome to the Apple Community.
    Enter the details of her second account at system preferences> mail, contacts & calendars.

  • Using search pages (i.e. Google) how can I get a different color on a link (website) that I have previously visited? It used to work that way, but now every link is the same color.

    I use Firefox 4.0.1 & Windows 7 Home Premium Edition. In the Options/Contents/Color setting I have the "Allow Pages To Use Their Own Colors" box checked. I tried checking "Use System Colors" with 2 different colors selected for Unvisited Links & Visited Links, but it does not work, & in addition, the Use System Colors messes up my normal view(s). I just want to be able to differentiate between Visited & Unvisited Links. Thank you.

    Hi,
    Agree with Holger, I check on my Lync Windows Store app and can't find the meeting URL as well.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • DUAL MONITOR BUG: One Picture – One Monitor – Different Colors!

    There have been several threads discussing that Photoshop CS4 and OS 10.6. show wrong colors in dual monitor setups.
    The first one to prove this with a screen capture was jb510-LJ0JJQ in August 2009: http://forums.adobe.com/message/2207312#2207312
    Eight months and three OS updates later the problem is still there and makes professional work with more than one monitor a nuisance.
    Here's another actual example: A picture and its 100% identical copy showing different colors on one screen!
    Here's how to repeat it – try this at home ;-)
    1) In the finder make a copy of a rgb picture.
    2) Open one of the two identical pics in photoshop.
    3) Drag it to the other monitor.
    When releasing the mouse button you may see the bug already: the colors will "switch".
    4) To verify this go to system presets - monitors - and change the primary monitor (by dragging the menu bar to the other)
    5) Now open the identical copy you made in step 1) and see the difference!
    Here's a synopsis of suggested workarounds:
    1) disable open GL (which seem to makes no difference on my setup)
    2) click "desaturate monitor colors" but set desaturation to 0 (which prevents visual switching in step 3) (only if openGL is ON) but also leads to a wrong display in step 4+5
    3) make the hardware calibrated monitor your default monitor and strictly avoid changes or dragging pics to the other monitor (which seems to be the only reliable method)
    4) some guys even force both monitors to use the profile of their hardware-calibrated monitor (using color sync) to make sure they see what they should see on at least that one monitor. What a stone-age workaround for the the world's leading imaging program!
    Considering that reliable colors in professional (=multi monitor) settings should be the most basic function of photoshop this mayor malfunction should be solved with CS5! Otherwise we might have to live with it for some more years...
    Have Adobe and Apple realized this bug and on their agenda? Will it be gone with OS 10.6.3? Can anyone explain the reasons for this bad bug? Is there a "officially" recommended workaround?
    Thanks, regards,
    Eric

    There have been several threads dealing with this malfunction. But most faded out in silence or acceptance of the workarounds.
    http://forums.adobe.com/message/2207312#2207312
    http://forums.adobe.com/thread/521483
    http://forums.adobe.com/message/2272192#2272192
    http://forums.adobe.com/thread/311761?start=0&tstart=0
    http://forums.adobe.com/thread/618927?tstart=60
    http://forums.adobe.com/thread/603992?tstart=90
    http://www.wetcanvas.com/forums/showthread.php?t=552977
    http://www.hilfdirselbst.ch/gforum/gforum.cgi?post=368889?search_string=zwei%20monitor#368 889
    But man, this is no minor bug! Consistent colors are the by far most important basic function of photoshop. If you cannot rely on the colors in photoshop you can as well use "Preview" and "Word" for print production ;-)
    Carson, how did Apple react to your complaint? What do you mean with "they don't get it". Do they not see it? Or can't they get it right?
    Shall we open a thread at apple forums to point out that it's not the problem of a single user?

Maybe you are looking for

  • What Is, And Why do I need it: ExpressCard/34 Slot?

    In the very near future I will be obtaining a 17" MBP. That's just savvy, except for one minor detail. What is an ExpressCard/34 slot, why do I need one, why would it have been included in this particular size MBP and what can I shove in there?

  • IPhone no longer connecting to GoogleTalk

    All of a sudden my iPhone3G will not connect to GoogleTalk. I have re-downloaded the Google app, but same thing happens. It opens, then sits on "loading". Anyone have any ideas about this? Thanks!

  • I get the message "Can't open picture" when I double on a photo in iphoto

    when I double click on a photo in Iphoto, it states "it can't find the picture", but when I have the disk, it does it with no problem, is that a permission issue on the photo?  These are my wedding photos, so I have full permission by the photographe

  • How do I clear out cookies,  history.

    iMac continues to run slow (mainly Safari) and hangs up.

  • Badi for me21n,me22n,me23n

    HI experts,       CAn any one help me out infinding a badi for me21n,me22n,me23n, which triggered on every press of enter key or some other check, so that i could kept a validation for the header and item fields of the t.codes