Background Color Bleed-through in Safari 8.0

Ever since upgrading to Yosemite and the new Safari, the desktop wallpaper color bleeds through the bookmarks area. It looks like a small degree of translucency. For a redesign of software that was suppose to be "clean" looking, this is very distracting and makes it look really ugly. Is there any way to prevent this, maybe a preference I may be over-looking?

Great, thanks!
I never went into Accessibility as I thought that was for people with certain challenges. Apparently, I'm challenged as well.

Similar Messages

  • CS3 Background Color Bleeds Through, why?

    I've searched the forum and haven't found an answer. I know
    this maybe an amateur question but I just can't seem to figure out
    a solution.
    Disclaimer: I'm new to CSS at what I know about div tag I
    learned from an online tutorial.
    When I insert the div tag and specify an infinite background,
    the background bleeds through eh boxes that hold my text.
    I select the entire page in DW and
    insert a a div tag;
    -wrap around selection
    -ID : layout
    -New CSS Style
    Background;I set the back ground color by sampling the color
    that I brought in with my sliced image from PS.
    Box; width 100% height 100%. Margin: same for all; auto.
    and this is the result:
    romapielarska.com
    here is the code
    <html>
    <head>
    <title>test</title>
    <meta http-equiv="Content-Type" content="text/html;
    charset=ISO-8859-1">
    <style type="text/css">
    <!--
    body,td,th {
    font-family: Florencesans Exp;
    font-size: 12px;
    color: #CCCCCC;
    #layout {
    background-color: #F5F4EC;
    margin: auto;
    height: 100%;
    width: 100%;
    -->
    </style>
    </head>
    <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0"
    marginwidth="0" marginheight="0">
    <!-- ImageReady Slices (test.psd) -->
    <div id="layout">
    <div id="layout">
    <div>
    <table id="Table_01" width="1276" height="916" border="0"
    cellpadding="0" cellspacing="0">
    <tr>
    <td rowspan="6">
    <img src="images/index_01.gif" width="136" height="916"
    alt=""></td>
    <td colspan="9">
    <img src="images/index_02.gif" width="1004" height="101"
    alt=""></td>
    <td rowspan="6">
    <img src="images/index_03.gif" width="136" height="916"
    alt=""></td>
    </tr>
    <tr>
    <td colspan="9">
    <img src="images/index_04.jpg" width="1004" height="640"
    alt=""></td>
    </tr>
    <tr>
    <td colspan="9">
    <img src="images/index_05.gif" width="1004" height="61"
    alt=""></td>
    </tr>
    <tr>
    <td rowspan="2">
    <img src="images/index_06.gif" width="162" height="31"
    alt=""></td>
    <td><div
    align="center">PORTRAITS</div></td>
    <td rowspan="2">
    <img src="images/index_08.gif" width="54" height="31"
    alt=""></td>
    <td>EVENTS</td>
    <td rowspan="2">
    <img src="images/index_10.gif" width="50" height="31"
    alt=""></td>
    <td><div align="center">PEOPLE &amp;
    PALCES</div></td>
    <td rowspan="2">
    <img src="images/index_12.gif" width="52" height="31"
    alt=""></td>
    <td><div align="center">CONTACT THE
    STUDIO</div></td>
    <td rowspan="2">
    <img src="images/index_14.gif" width="174" height="31"
    alt=""></td>
    </tr>
    <tr>
    <td>
    <img src="images/index_15.gif" width="101" height="12"
    alt=""></td>
    <td>
    <img src="images/index_16.gif" width="69" height="12"
    alt=""></td>
    <td>
    <img src="images/index_17.gif" width="170" height="12"
    alt=""></td>
    <td>
    <img src="images/index_18.gif" width="172" height="12"
    alt=""></td>
    </tr>
    <tr>
    <td colspan="9">
    <img src="images/index_19.gif" width="1004" height="83"
    alt=""></td>
    </tr>
    </table>
    </div>
    </div>
    </div>
    <!-- End ImageReady Slices -->
    </body>
    </html>

    body,td,th {
    font-family: Florencesans Exp;
    font-size: 12px;
    color: #CCCCCC;
    Be aware that this font is definitely NOT websafe. Most
    people will see
    Times/Times New Roman in its place. Your safe choices are -
    http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html
    <div id="layout">
    <div id="layout">
    <div>
    Be aware that you cannot use a given ID more than once on any
    page. As a
    result, this markup is invalid. Any what is the reason for
    the three nested
    divs anyhow?
    Your page layout -
    <div id="layout">
    <div id="layout">
    <div>
    <table id="Table_01" width="1276" height="916" border="0"
    cellpadding="0" cellspacing="0">
    is functionally identical to using just this -
    <table id="Table_01" width="1276" height="916" border="0"
    cellpadding="0" cellspacing="0">
    Why use the divs at all?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Roma Pie" <[email protected]> wrote in
    message
    news:[email protected]...
    > I've searched the forum and haven't found an answer. I
    know this maybe an
    > amateur question but I just can't seem to figure out a
    solution.
    >
    > Disclaimer: I'm new to CSS at what I know about div tag
    I learned from an
    > online tutorial.
    >
    > When I insert the div tag and specify an infinite
    background, the
    > background
    > bleeds through eh boxes that hold my text.
    >
    > I select the entire page in DW and
    > insert a a div tag;
    > -wrap around selection
    > -ID : layout
    > -New CSS Style
    > Background;I set the back ground color by sampling the
    color that I
    > brought in
    > with my sliced image from PS.
    > Box; width 100% height 100%. Margin: same for all; auto.
    >
    > and this is the result:
    >
    > romapielarska.com
    >
    > here is the code
    >
    > <html>
    > <head>
    > <title>test</title>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=ISO-8859-1">
    > <style type="text/css">
    > <!--
    > body,td,th {
    > font-family: Florencesans Exp;
    > font-size: 12px;
    > color: #CCCCCC;
    > }
    > #layout {
    > background-color: #F5F4EC;
    > margin: auto;
    > height: 100%;
    > width: 100%;
    > }
    > -->
    > </style>
    > </head>
    > <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0"
    marginwidth="0"
    > marginheight="0">
    > <!-- ImageReady Slices (test.psd) -->
    > <div id="layout">
    > <div id="layout">
    > <div>
    > <table id="Table_01" width="1276" height="916"
    border="0"
    > cellpadding="0" cellspacing="0">
    > <tr>
    > <td rowspan="6">
    > <img src="images/index_01.gif" width="136"
    height="916"
    > alt=""></td>
    > <td colspan="9">
    > <img src="images/index_02.gif" width="1004"
    height="101"
    > alt=""></td>
    > <td rowspan="6">
    > <img src="images/index_03.gif" width="136"
    height="916"
    > alt=""></td>
    > </tr>
    > <tr>
    > <td colspan="9">
    > <img src="images/index_04.jpg" width="1004"
    height="640"
    > alt=""></td>
    > </tr>
    > <tr>
    > <td colspan="9">
    > <img src="images/index_05.gif" width="1004"
    height="61"
    > alt=""></td>
    > </tr>
    > <tr>
    > <td rowspan="2">
    > <img src="images/index_06.gif" width="162"
    height="31"
    > alt=""></td>
    > <td><div
    align="center">PORTRAITS</div></td>
    > <td rowspan="2">
    > <img src="images/index_08.gif" width="54" height="31"
    > alt=""></td>
    > <td>EVENTS</td>
    > <td rowspan="2">
    > <img src="images/index_10.gif" width="50" height="31"
    > alt=""></td>
    > <td><div align="center">PEOPLE &amp;
    PALCES</div></td>
    > <td rowspan="2">
    > <img src="images/index_12.gif" width="52" height="31"
    > alt=""></td>
    > <td><div align="center">CONTACT THE
    STUDIO</div></td>
    > <td rowspan="2">
    > <img src="images/index_14.gif" width="174"
    height="31"
    > alt=""></td>
    > </tr>
    > <tr>
    > <td>
    > <img src="images/index_15.gif" width="101"
    height="12"
    > alt=""></td>
    > <td>
    > <img src="images/index_16.gif" width="69" height="12"
    > alt=""></td>
    > <td>
    > <img src="images/index_17.gif" width="170"
    height="12"
    > alt=""></td>
    > <td>
    > <img src="images/index_18.gif" width="172"
    height="12"
    > alt=""></td>
    > </tr>
    > <tr>
    > <td colspan="9">
    > <img src="images/index_19.gif" width="1004"
    height="83"
    > alt=""></td>
    > </tr>
    > </table>
    > </div>
    > </div>
    > </div>
    > <!-- End ImageReady Slices -->
    > </body>
    > </html>
    >
    >

  • Background color shows through table color in firefox

    Hello,
    I am new to Dreamweaver and i am using CS3 and doing the cafe
    townsend tutorial. I make the background color balck and the table
    color a brick red, but in firefox the background color is showing
    through the table color, but in safari it shows up okay. can anyone
    help? i am on a mac.
    code below
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8" />
    <title>Café Townsend</title>
    <style type="text/css">
    <!--
    body {
    background-color: #000000;
    -->
    </style>
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    function MM_CheckFlashVersion(reqVerStr,msg){
    with(navigator){
    var isIE = (appVersion.indexOf("MSIE") != -1 &&
    userAgent.indexOf("Opera") == -1);
    var isWin = (appVersion.toLowerCase().indexOf("win") != -1);
    if (!isIE || !isWin){
    var flashVer = -1;
    if (plugins && plugins.length > 0){
    var desc = plugins["Shockwave Flash"] ? plugins["Shockwave
    Flash"].description : "";
    desc = plugins["Shockwave Flash 2.0"] ? plugins["Shockwave
    Flash 2.0"].description : desc;
    if (desc == "") flashVer = -1;
    else{
    var descArr = desc.split(" ");
    var tempArrMajor = descArr[2].split(".");
    var verMajor = tempArrMajor[0];
    var tempArrMinor = (descArr[3] != "") ?
    descArr[3].split("r") : descArr[4].split("r");
    var verMinor = (tempArrMinor[1] > 0) ? tempArrMinor[1] :
    0;
    flashVer = parseFloat(verMajor + "." + verMinor);
    // WebTV has Flash Player 4 or lower -- too low for video
    else if (userAgent.toLowerCase().indexOf("webtv") != -1)
    flashVer = 4.0;
    var verArr = reqVerStr.split(",");
    var reqVer = parseFloat(verArr[0] + "." + verArr[2]);
    if (flashVer < reqVer){
    if (confirm(msg))
    window.location = "
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash";
    </script>
    </head>
    <body onload="MM_CheckFlashVersion('9,0,28,0','Content on
    this page requires a newer version of Adobe Flash Player. Do you
    want to download it now?');">
    <table width="700" border="0" cellspacing="0"
    cellpadding="0">
    <tr>
    <td height="90"><img
    src="images/banner_graphic.jpg" alt="" name="banner_graphic"
    width="700" height="92" id="banner_graphic"
    style="background-color: #993300" /></td>
    </tr>
    <tr>
    <td height="166" align="center"
    valign="middle"><script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','700','height','150','src','flash_fma','quality','high','pluginspage','http://www.adob e.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','flash_fma'
    ); //end AC code
    </script><noscript><object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
    width="700" height="150">
    <param name="movie" value="flash_fma.swf" />
    <param name="quality" value="high" />
    <embed src="flash_fma.swf" quality="high" pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="700"
    height="150"></embed>
    </object></noscript></td>
    </tr>
    <tr>
    <td height="24"><img
    src="images/body_main_header.gif" width="700" height="25"
    /></td>
    </tr>
    </table>
    <table width="700" border="0" cellspacing="0"
    cellpadding="0">
    <tr>
    <td width="140" bgcolor="993300"> </td>
    <td width="230" align="center" valign="top"
    bgcolor="F7EEDF"><p>
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0','widt h','202','height','186','id','FLVPlayer','src','FLVPlayer_Progressive','flashvars','&MM_Co mponentVersion=1&skinName=Halo_Skin_2&streamName=cafe_townsend_home&autoPlay=false&autoRew ind=false','quality','high','scale','noscale','name','FLVPlayer','salign','lt','pluginspag e','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash',' movie','FLVPlayer_Progressive'
    ); //end AC code
    </script><noscript><object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"
    width="202" height="186" id="FLVPlayer">
    <param name="movie" value="FLVPlayer_Progressive.swf"
    />
    <param name="salign" value="lt" />
    <param name="quality" value="high" />
    <param name="scale" value="noscale" />
    <param name="FlashVars"
    value="&MM_ComponentVersion=1&skinName=Halo_Skin_2&streamName=cafe_townsend_home&autoPlay =false&autoRewind=false"
    />
    <embed src="FLVPlayer_Progressive.swf"
    flashvars="&MM_ComponentVersion=1&skinName=Halo_Skin_2&streamName=cafe_townsend_home&auto Play=false&autoRewind=false"
    quality="high" scale="noscale" width="202" height="186"
    name="FLVPlayer" salign="LT" type="application/x-shockwave-flash"
    pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    />
    </object></noscript>
    </p>
    <p><img
    src="completed_files/images/street_sign.jpg" width="202"
    height="136" /></p></td>
    <td width="330" bgcolor="F7EEDF"> </td>
    </tr>
    </table>
    <table width="700" border="0" cellspacing="0"
    cellpadding="0">
    <tr>
    <td height="24"><img
    src="images/body_main_footer.gif" width="700" height="25"
    /></td>
    </tr>
    </table>
    </body>
    </html>

    On a quick look, I think it's a css specifity problem.
    If you take the background color style out of the table and
    create a style in the head of the doc
    (like you did for the body), the color does show up.
    You need to give the outer table an ID and create the
    following style and add it just below the body
    style
    .maintable { background-color: #993300; }
    So the top of your document looks like this:
    <style type="text/css">
    <!--
    body {
    background-color: #000000;
    #maintable { background-color: #993300; }
    -->
    </style>
    This is what the outertable line should look like:
    <table id="maintable" width="700" border="0"
    cellspacing="0" cellpadding="0">
    PS: There also appears to be a syntax error with the flash
    script, which may cause some issues, but
    I can't help you with that sorry :-)
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    Book: Ultimate CSS Reference (aff link) |
    http://www.sitepoint.com/launch/005dfd4/3/133
    http://twitter.com/nadiap
    "grafix89" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello,
    >
    > I am new to Dreamweaver and i am using CS3 and doing the
    cafe townsend
    > tutorial. I make the background color balck and the
    table color a brick red,
    > but in firefox the background color is showing through
    the table color, but in
    > safari it shows up okay. can anyone help? i am on a mac.
    >
    > code below
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8" />
    > <title>Caf? Townsend</title>
    > <style type="text/css">
    > <!--
    > body {
    > background-color: #000000;
    > }
    > -->
    > </style>
    > <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    > <script type="text/javascript">
    > function MM_CheckFlashVersion(reqVerStr,msg){
    > with(navigator){
    > var isIE = (appVersion.indexOf("MSIE") != -1 &&
    > userAgent.indexOf("Opera") == -1);
    > var isWin = (appVersion.toLowerCase().indexOf("win") !=
    -1);
    > if (!isIE || !isWin){
    > var flashVer = -1;
    > if (plugins && plugins.length > 0){
    > var desc = plugins["Shockwave Flash"] ?
    plugins["Shockwave
    > Flash"].description : "";
    > desc = plugins["Shockwave Flash 2.0"] ?
    plugins["Shockwave Flash
    > 2.0"].description : desc;
    > if (desc == "") flashVer = -1;
    > else{
    > var descArr = desc.split(" ");
    > var tempArrMajor = descArr[2].split(".");
    > var verMajor = tempArrMajor[0];
    > var tempArrMinor = (descArr[3] != "") ?
    descArr[3].split("r") :
    > descArr[4].split("r");
    > var verMinor = (tempArrMinor[1] > 0) ?
    tempArrMinor[1] : 0;
    > flashVer = parseFloat(verMajor + "." + verMinor);
    > }
    > }
    > // WebTV has Flash Player 4 or lower -- too low for
    video
    > else if (userAgent.toLowerCase().indexOf("webtv") != -1)
    flashVer = 4.0;
    >
    > var verArr = reqVerStr.split(",");
    > var reqVer = parseFloat(verArr[0] + "." + verArr[2]);
    >
    > if (flashVer < reqVer){
    > if (confirm(msg))
    > window.location =
    > "
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveF
    > lash";
    > }
    > }
    > }
    > }
    > </script>
    > </head>
    >
    > <body
    onload="MM_CheckFlashVersion('9,0,28,0','Content on this page
    requires a
    > newer version of Adobe Flash Player. Do you want to
    download it now?');">
    > <table width="700" border="0" cellspacing="0"
    cellpadding="0">
    > <tr>
    > <td height="90"><img
    src="images/banner_graphic.jpg" alt=""
    > name="banner_graphic" width="700" height="92"
    id="banner_graphic"
    > style="background-color: #993300" /></td>
    > </tr>
    > <tr>
    > <td height="166" align="center"
    valign="middle"><script
    > type="text/javascript">
    > AC_FL_RunContent(
    > 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#
    >
    version=9,0,28,0','width','700','height','150','src','flash_fma','quality','high
    > ','pluginspage','
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Ve
    > rsion=ShockwaveFlash','movie','flash_fma' ); //end AC
    code
    > </script><noscript><object
    > classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    > codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
    > rsion=9,0,28,0" width="700" height="150">
    > <param name="movie" value="flash_fma.swf" />
    > <param name="quality" value="high" />
    > <embed src="flash_fma.swf" quality="high"
    > pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Versio
    > n=ShockwaveFlash" type="application/x-shockwave-flash"
    width="700"
    > height="150"></embed>
    > </object></noscript></td>
    > </tr>
    > <tr>
    > <td height="24"><img
    src="images/body_main_header.gif" width="700"
    > height="25" /></td>
    > </tr>
    > </table>
    > <table width="700" border="0" cellspacing="0"
    cellpadding="0">
    > <tr>
    > <td width="140"
    bgcolor="993300"> </td>
    > <td width="230" align="center" valign="top"
    bgcolor="F7EEDF"><p>
    > <script type="text/javascript">
    > AC_FL_RunContent(
    > 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#
    >
    version=7,0,0,0','width','202','height','186','id','FLVPlayer','src','FLVPlayer_
    >
    Progressive','flashvars','&MM_ComponentVersion=1&skinName=Halo_Skin_2&streamName
    >
    =cafe_townsend_home&autoPlay=false&autoRewind=false','quality','high','scale','n
    > oscale','name','FLVPlayer','salign','lt','pluginspage','
    http://www.adobe.com/sho
    >
    ckwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','FLVPlayer_
    > Progressive' ); //end AC code
    > </script><noscript><object
    > classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    > codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
    > rsion=7,0,0,0" width="202" height="186"
    id="FLVPlayer">
    > <param name="movie" value="FLVPlayer_Progressive.swf"
    />
    > <param name="salign" value="lt" />
    > <param name="quality" value="high" />
    > <param name="scale" value="noscale" />
    > <param name="FlashVars"
    >
    value="&MM_ComponentVersion=1&skinName=Halo_Skin_2&streamName=cafe_townsend_home
    > &autoPlay=false&autoRewind=false" />
    > <embed src="FLVPlayer_Progressive.swf"
    >
    flashvars="&MM_ComponentVersion=1&skinName=Halo_Skin_2&streamName=cafe_townsend_
    > home&autoPlay=false&autoRewind=false"
    quality="high" scale="noscale"
    > width="202" height="186" name="FLVPlayer" salign="LT"
    > type="application/x-shockwave-flash"
    > pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Versio
    > n=ShockwaveFlash" />
    > </object></noscript>
    > </p>
    > <p><img
    src="completed_files/images/street_sign.jpg" width="202"
    > height="136" /></p></td>
    > <td width="330"
    bgcolor="F7EEDF"> </td>
    > </tr>
    > </table>
    > <table width="700" border="0" cellspacing="0"
    cellpadding="0">
    > <tr>
    > <td height="24"><img
    src="images/body_main_footer.gif" width="700"
    > height="25" /></td>
    > </tr>
    > </table>
    > </body>
    > </html>
    >
    >

  • Blocks/lines of background color show through embedded SWF

    When I place a swf object in Muse, I've found that blocks and lines of the background color will appear and disappear around the edges of animated elements. I've confirmed this is not an issue with the SWF as they play normally if embedded using dreamweaver or exported with an html wrapper from flash. It would be greatly appreciated if anyone knows how to fix this, as I have a much easier time arranging page elements in Muse instead of Dreamweaver.
    Thanks,
    Chris

    When I place a swf object in Muse, I've found that blocks and lines of the background color will appear and disappear around the edges of animated elements. I've confirmed this is not an issue with the SWF as they play normally if embedded using dreamweaver or exported with an html wrapper from flash. It would be greatly appreciated if anyone knows how to fix this, as I have a much easier time arranging page elements in Muse instead of Dreamweaver.
    Thanks,
    Chris

  • Background color on Safari

    I need to have a clear (tranparent) background so that the background image shows through. Everything I read says the default background color is transparent (which I thought). All is fine on IE and Firefox. However, on Safari the background is white. Adding background-color: transparent; does not help either, it stays white. Any help would be greatly appreciated.
    test link: www.weblinkstudio.com/tj/

    Hi Toby
    Welcome to Apple Discussions
    Open System Preferences via the Apple Menu in the upper left corner of your screen. Go to "Universal Access">Seeing. There, change the display setting from "black on white" to "white on black". This affects all applications and panels. There, you can also "increase the contrast" to suit your viewing requirements.

  • Background -color of a template page through skinning

    Hi All,
    I designed a Template page using webcenter portal application .In that I added some Images .
    Now I want to get good look and feel for that template using skinning .By default in the application we have portal-skin.css.
    So I want to apply background -color to that template page.But the color should be shaded with more than one color.So how can I
    get it through skinning.Could anyone help me on this.
    Thanks
    keerthi

    Hi Jiri,
    Thanks for your quick reply .
    I have seen the link which you gave .But they had mentioned like this to apply for background.
    background: -webkit-linear-gradient(left, grey, grey 30%, white 30%, white);
    But in my skin.css file i have not found this property -webkit-linear-gradient.
    And another syntax is of like this:
    div#content {background: url("./gray.png") repeat-y, white; background-size: 30%;}
    Here there are uploading color as a image .But actually i am not following this way .
    Could we have any other approach for this.
    Thanks
    keerthi.

  • Change Safari background color

    Hello everyone,
    I've some trouble with my eyes and therefor I like to change the backgroud color of the browsing tabs. I use Firefox now but is this also possible with Safari?
    Thank you!

    Hi,
    If you still need help with this...
    Not sure if Safari can be modified to change the background color of tabs but open System Preferences then select Universal Access.
    Select the Seeing tab. Under Display select: *White on black*
    You can use the slider for contrast.
    Maybe that will help.
    Carolyn

  • My screen background color is off-white & this color comes through on the print page. Page Setup/Print Background is set off. How do I fix this? Problem first popped up with version 6, still there with version 8.0.1

    File/Page Setup/Format & Options/Options/Print Background (colors & images): Check box set off.
    This setting does not work as my screen background color still comes through on the print preview & the print page.
    Is this because the newer Firefox versions have blocked my graphics driver version?

    See [https://bugzilla.mozilla.org/show_bug.cgi?id=683139 Bug 683139] – Using the 'High Contrast Black' 'Accessibility Option' in Win XP results in the screen colours being printed.
    <i>(please do not comment in bug reports)</i>

  • Why are my masked layers bleeding through the background layer?

    Hi All,
    I'm working on a composite images using multipal layers and masks to create a collage. For some reason, I'm getting unwanted parts of layered images bleeding through  the background layer.
    I've trying using inverted masks which stop the 'bleed' but then I am unable to see it under the transparent background layer to edit it. Clipping mask doesn't seem to be helping either.
    I've done this sort of thing many times and have not had this happen. I seem to have forgotten a step. I'm using Photoshop CC, btw.
    What am I doing wrong? Ideas?
    Thanks!

    Good day!
    Could you please post a screenshot with the Layers Panel visible?
    Are you sure you paint with black and white?
    When you view the Layer Mask by alt-clocking its icon in the Layers Panel and measure the area that is to be hidden is it truly 100% black?
    (Resetting fore- and background colour by hitting the key D can also be helpful.)
    Regards,
    Pfaffenbichler

  • Viewing Safari webpages in different background colors

    Hi all,
    I was wondering if there was a way to change the color I view safari webpages, i.e. if I could view the background color of a webpage in yellow rather than white?
    Many thanks.

    Sure as I tell you that you can't, someone will tell you how.
    But to my knowledge, that isn't doable, as Safari reads the HTML of the page in question. If it doesn't say "yellow" in the page's coding...it won't be yellow.
    Doc

  • Problem with cfdocument and background colors with table borders

    i am having a great deal of difficulty with cfdocument
    rendering my tables with cells that have background colors. the
    background colors seem to bleed through the table border. a picture
    at 100% magnification can be seen at
    http://www.vitad.com/cfdoc.jpg
    and at 1600% magnification at:
    http://www.vitad.com/cfdoc2.jpg.
    i am attaching sample code of the what generated the pdf in the
    pictures. btw, i am running cfmx 7 with hot fix 2.

    Hi fresher4flex,
    Since you are using the item Renderer for the DataGrid Column try to apply the styles dynamically to the background of your itemRenderer by making using of the rollOver and rollOut events.
    Thanks,
    Bhasker

  • How to set background color for a JFrame

    Hi,
    i am new to swing programming. I have created a JFrame called framehelp and i placed some labels in the frame.
    I have set the background color as yellow for the frame ie by setBackground(new java.awt.Color(255, 255, 204));
    But after compiling the program i am still getting the background color of frame as gray.
    How can i change the background color of frame as lightish yellow.
    I have used NETBEANS to generate this code and i am posting the code..
    Kindly help me
    Thanks in adavance
    public class framehelp extends javax.swing.JFrame {
        /** Creates new form framehelp */
        public framehelp() {
            initComponents();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        private void initComponents() {
            jLabel1 = new javax.swing.JLabel();
            jLabel2 = new javax.swing.JLabel();
            jLabel3 = new javax.swing.JLabel();
            jLabel4 = new javax.swing.JLabel();
            jLabel5 = new javax.swing.JLabel();
            jLabel6 = new javax.swing.JLabel();
            jLabel8 = new javax.swing.JLabel();
            jLabel9 = new javax.swing.JLabel();
            jLabel10 = new javax.swing.JLabel();
            jLabel11 = new javax.swing.JLabel();
            jLabel12 = new javax.swing.JLabel();
            jLabel13 = new javax.swing.JLabel();
            jLabel7 = new javax.swing.JLabel();
            jLabel14 = new javax.swing.JLabel();
            jLabel15 = new javax.swing.JLabel();
            jLabel16 = new javax.swing.JLabel();
            jLabel17 = new javax.swing.JLabel();
            jLabel18 = new javax.swing.JLabel();
            jLabel19 = new javax.swing.JLabel();
            jLabel20 = new javax.swing.JLabel();
            jLabel21 = new javax.swing.JLabel();
            jLabel22 = new javax.swing.JLabel();
            jLabel23 = new javax.swing.JLabel();
            jLabel24 = new javax.swing.JLabel();
            jLabel25 = new javax.swing.JLabel();
            jLabel26 = new javax.swing.JLabel();
            jLabel27 = new javax.swing.JLabel();
            jLabel28 = new javax.swing.JLabel();
            jLabel29 = new javax.swing.JLabel();
            jLabel30 = new javax.swing.JLabel();
            jLabel31 = new javax.swing.JLabel();
            jLabel32 = new javax.swing.JLabel();
            jLabel33 = new javax.swing.JLabel();
            getContentPane().setLayout(null);
            setBackground(new java.awt.Color(255, 255, 204));
            setForeground(new java.awt.Color(204, 204, 204));
            addWindowListener(new java.awt.event.WindowAdapter() {
                public void windowClosing(java.awt.event.WindowEvent evt) {
                    exitForm(evt);
            jLabel1.setText("The CAME framework software measurement process evaluation is used to determine the Level of  measurement in the ITarea. This measurementprocess evaluation is ");
            getContentPane().add(jLabel1);
            jLabel1.setBounds(40, 50, 41, 16);
            jLabel2.setText("performed individually for software coomponents ie SoftwareProduct, SoftwareProcess and SoftwareResource.");
            getContentPane().add(jLabel2);
            jLabel2.setBounds(40, 70, 41, 16);
            jLabel3.setText("Below we describe the steps which will guide through the measurement process evaluation. There are two types of evaluation considerd here, General evaluation");
            getContentPane().add(jLabel3);
            jLabel3.setBounds(40, 100, 913, 16);
            jLabel4.setText("and Evaluation with respect to a standard. The measurement intensions considerd by varoius measurement standards will be used in our tool based method.  ");
            getContentPane().add(jLabel4);
            jLabel4.setBounds(40, 120, 893, 16);
            jLabel5.setText("Information about the measurement standards can be found at     www.iso.org ,    www.ieee.org.");
            getContentPane().add(jLabel5);
            jLabel5.setBounds(40, 140, 542, 16);
            jLabel6.setText("Steps to calculate the MetricsLevel");
            getContentPane().add(jLabel6);
            jLabel6.setBounds(40, 190, 199, 16);
            jLabel8.setText("2 )  The opened frame consists of several  metrics and measures, evaluation level buttons, result textfields and selection choice lists. To calculate");
            getContentPane().add(jLabel8);
            jLabel8.setBounds(70, 240, 41, 16);
            jLabel9.setText("general Metricslevel without any standard, select general from Measurement standard choice list. then select Both from scaleType choice list and finally select metrics ");
            getContentPane().add(jLabel9);
            jLabel9.setBounds(90, 260, 949, 16);
            jLabel10.setText(" and measures from the frame and press MetricsLevel Button. The metricslevel for the selected metrics will be displayed in textfield1.");
            getContentPane().add(jLabel10);
            jLabel10.setBounds(90, 280, 756, 16);
            jLabel11.setText("3 ) To determine MetricsLevel with respect to a standard select a standard from MeasurementStandard choice list, select Both from ScaleType choice list and finally ");
            getContentPane().add(jLabel11);
            jLabel11.setBounds(70, 300, 933, 16);
            jLabel12.setText("select darkened metrics and measures and press MetricsLevel Button. The Metrics Level for the selected Metrics and standard will be diplayed in textfield1.");
            getContentPane().add(jLabel12);
            jLabel12.setBounds(90, 320, 883, 16);
            jLabel13.setText("4 ) Repeat steps 1 2, 3  for ProcessMeasurementEvaluation and ResourceMeasurementEvaluation menu items from the select menu.");
            getContentPane().add(jLabel13);
            jLabel13.setBounds(70, 340, 751, 16);
            jLabel7.setText("1 ) Select ProductMeasurementEvaluation menu item from the select menu,a frame called CAME framework software product measurement evaluation will be opened. ");
            getContentPane().add(jLabel7);
            jLabel7.setBounds(70, 220, 946, 16);
            jLabel14.setText("Steps to calculate MeasurementLevel");
            getContentPane().add(jLabel14);
            jLabel14.setBounds(50, 390, 214, 16);
            jLabel15.setText("1 ) Select ProductMeasurementEvaluation menu item from the select menu,a frame called CAME framework software product measurement evaluation will be opened.");
            getContentPane().add(jLabel15);
            jLabel15.setBounds(80, 420, 943, 16);
            jLabel16.setText("2 ) The opened frame consists of several  metrics and measures, evaluation level buttons, result textfields and selection choice lists. To calculate");
            getContentPane().add(jLabel16);
            jLabel16.setBounds(80, 450, 822, 16);
            jLabel17.setText("general Measurementlevel without any standard, select general from Measurement standard choice list. then select Quantitative measures from scaleType choice list ");
            getContentPane().add(jLabel17);
            jLabel17.setBounds(100, 470, 943, 16);
            jLabel18.setText("and finally select metrics and measures from the frame and press MeasurementLevel Button. The MeasurementLevel for the selected metrics will be displayed in textfield2.");
            getContentPane().add(jLabel18);
            jLabel18.setBounds(100, 490, 973, 20);
            jLabel19.setText("3 ) To determine MeasurementLevel with respect to a standard select a standard from MeasurementStandard choice list, select Quantitative measures from ScaleType choice list");
            getContentPane().add(jLabel19);
            jLabel19.setBounds(80, 510, 1009, 16);
            jLabel20.setText("and finally select darkened metrics and measures and press MeasurementLevel Button. The MeasurementLevel  will be diplayed in textfield2.");
            getContentPane().add(jLabel20);
            jLabel20.setBounds(100, 530, 799, 16);
            jLabel21.setText("4 )Repeat steps 1 2, 3  for ProcessMeasurementEvaluation and ResourceMeasurementEvaluation menu items from the select menu.");
            getContentPane().add(jLabel21);
            jLabel21.setBounds(80, 550, 748, 16);
            jLabel22.setText("Steps to calculate MeasurementProcessLevel");
            getContentPane().add(jLabel22);
            jLabel22.setBounds(50, 600, 262, 16);
            jLabel23.setText("1 ) Select ProductMeasurementEvaluation menu item from the select menu,a frame called CAME framework software product measurement evaluation will be opened.");
            getContentPane().add(jLabel23);
            jLabel23.setBounds(80, 630, 943, 16);
            jLabel24.setText("2 )The opened frame consists of several  metrics and measures, evaluation level buttons, result textfields and selection choice lists. To calculate");
            getContentPane().add(jLabel24);
            jLabel24.setBounds(80, 650, 819, 16);
            jLabel25.setText("general MeasurementProcesslevel without any standard, select general from Measurement standard choice list. then select Quantitative measures from scaleType ");
            getContentPane().add(jLabel25);
            jLabel25.setBounds(100, 670, 930, 16);
            jLabel26.setText("choice list, enter migrated metrics if any in textfield  below migrated metrics label and finally select metrics measures from the frame and press ");
            getContentPane().add(jLabel26);
            jLabel26.setBounds(100, 690, 818, 16);
            jLabel27.setText("MeasurementProcessLevel Button. The MeasurementProcessLevel for the selected metrics will be displayed in textfield3.");
            getContentPane().add(jLabel27);
            jLabel27.setBounds(100, 710, 691, 16);
            jLabel28.setText("3 ) To determine MeasurementProcessLevel with respect to a standard select a standard from MeasurementStandard choice list, select Quantitative measures from ");
            getContentPane().add(jLabel28);
            jLabel28.setBounds(80, 740, 937, 16);
            jLabel29.setText("from ScaleType choice list, enter migrated metrics if any in textfield below migrated metrics and finally select darkened metrics and measures and press  ");
            getContentPane().add(jLabel29);
            jLabel29.setBounds(100, 760, 873, 16);
            jLabel30.setText("MeasurementProcessLevel Button. The MeasurementprocessLevel for the selected metrics will be displayed in textfield3");
            getContentPane().add(jLabel30);
            jLabel30.setBounds(100, 780, 687, 16);
            jLabel31.setText("4 ) Repeat steps 1,2,3 for ProcessMeasurementEvaluation and ResourceMeasurementEvaluation menuitems.");
            getContentPane().add(jLabel31);
            jLabel31.setBounds(80, 800, 618, 16);
            jLabel32.setText("Steps to calculate MeasuredSoftwareProcessLevl");
            getContentPane().add(jLabel32);
            jLabel32.setBounds(60, 830, 285, 16);
            jLabel33.setText("1 ) Follow the same steps as MetricsLevel calcualtion but select metrics and measures covered by CAME Tools only.");
            getContentPane().add(jLabel33);
            jLabel33.setBounds(90, 860, 657, 16);
            java.awt.Dimension screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize();
            setBounds((screenSize.width-1100)/2, (screenSize.height-940)/2, 1100, 940);
        /** Exit the Application */
        private void exitForm(java.awt.event.WindowEvent evt) {
            System.exit(0);
         * @param args the command line arguments
        public static void main(String args[]) {
            new framehelp().show();
        // Variables declaration - do not modify
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel10;
        private javax.swing.JLabel jLabel11;
        private javax.swing.JLabel jLabel12;
        private javax.swing.JLabel jLabel13;
        private javax.swing.JLabel jLabel14;
        private javax.swing.JLabel jLabel15;
        private javax.swing.JLabel jLabel16;
        private javax.swing.JLabel jLabel17;
        private javax.swing.JLabel jLabel18;
        private javax.swing.JLabel jLabel19;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JLabel jLabel20;
        private javax.swing.JLabel jLabel21;
        private javax.swing.JLabel jLabel22;
        private javax.swing.JLabel jLabel23;
        private javax.swing.JLabel jLabel24;
        private javax.swing.JLabel jLabel25;
        private javax.swing.JLabel jLabel26;
        private javax.swing.JLabel jLabel27;
        private javax.swing.JLabel jLabel28;
        private javax.swing.JLabel jLabel29;
        private javax.swing.JLabel jLabel3;
        private javax.swing.JLabel jLabel30;
        private javax.swing.JLabel jLabel31;
        private javax.swing.JLabel jLabel32;
        private javax.swing.JLabel jLabel33;
        private javax.swing.JLabel jLabel4;
        private javax.swing.JLabel jLabel5;
        private javax.swing.JLabel jLabel6;
        private javax.swing.JLabel jLabel7;
        private javax.swing.JLabel jLabel8;
        private javax.swing.JLabel jLabel9;
        // End of variables declaration
    }

    1. When you post code, post a minimal example. Did we have to scroll through
    all those bloody labels.
    2. Can't say much for the quality of code NetBeans generates.
    3. To answer your question (sorry, I don't have an autographed copy of the photo):
    import java.awt.*;
    import java.net.*;
    import javax.swing.*;
    public class Example {
        public static void main(String[] args) throws MalformedURLException {
            final JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            Container cp = f.getContentPane();
            cp.setBackground(new Color(0xff, 0xff, 0xee));
            cp.add(new JLabel("set the color on the content pane, not the frame"), BorderLayout.SOUTH);
            URL url = new URL("http://today.java.net/jag/bio/JagHeadshot-small.jpg");
            cp.add(new JLabel(new ImageIcon(url)));
            f.pack();
            SwingUtilities.invokeLater(new Runnable(){
                public void run() {
                    f.setLocationRelativeTo(null);
                    f.setVisible(true);
    }

  • How to preserve a background color, when generating a PDF file

    I am trying to create a PDF file from some application. Please note that the picture in this application has the black background. So I invoke a Print command and set a printer as "Adobe PDF". As a result, I have generated
     a brilliant PDF file of my picture, but on the WHITE background. When selecting the Adobe PDF printer, I have looked through all its settings ( in the Adobe PDF settings, I have found several tabs: General, Images, Fonts, Color, Advanced, PDF/X), none of them generated the original background color. 
    So how can a generate a PDF file, having the original background color (black, in my case) ?
    Oleg

    Now I feel that the background definition in the Adobe PDF printer and the background definition in the application the Adobe PDF printer is invoked from -- two different things. So I guess how can I define the black background in the Adobe PDF printer? I cannot find such settings.

  • An applescript to change the background color for all finder windows

    I'll start off by telling you what I am trying to achieve, then show you what I've tried.
    I have a macbook with several HDD's attached. what I want is for each of those hdd to have a specific finder window background color. so no matter where I am in that hdd the background color will always be the same. so for instance if I set the background color of hdd 2 to blue then as long as I see a blue background I know that I'm within hdd 2.
    I've tried setting up an applescript to do this but can only get it to change the open finder window, and none of the subfolders have their backgrounds changed.
    here is what I have so far:
    tell application "Finder"
    tell the icon view options of the front Finder window
    set the background color to {52942, 54484, 31097}
    end tell
    end tell
    so how do I get this to apply to all subfolders without opening each one and running the script.
    thanks in advance for any and all help with this

    According to this article:
    http://docs.info.apple.com/article.html?path=AppleScript/2.1/en/as2039.html
    it seems that the various options can only be set while the window is open and in icon view.
    Rather than manually opening the window of every single folder on the hard drive, it should be possible to write a script to open every folder in sequence, make sure it is in icon view, change its background, then close its window. I have never been any good at the "actions within actions" procedure needed for folders within folders, so maybe someone else with the necessary knowledge and experience might be able to assist in this regard. Such a script would probably take a few minutes to complete while it ran through "every folder of every folder", but it sure would be quicker to have the process automated than to do it by hand - computers are really good at repetitive tasks (as long as the instructions are accurate, of course!).
    On the other hand, you might like to try the following:
    open a few windows in icon view, choose Show View Options in the View menu (I'm in System 10.4), click the radio button All Windows, click the Color radio button under Background, then choose your color. It might achieve what you are trying to do.

  • E book" it tells me that the bI have prepared a photobook, made a pdf and when I press "buy the book is missing photos on one ore more pages. The book does not miss any photos or text, all layouts are ok, the background color is ok. Can anybody help me?

    I have prepared a photo book, made a pdf and when I press "buy thhe book" it tells me that the book is missing photos on one ore more pages. The book does not miss any photos or text, all layouts are ok, the background color is ok. Can anybody help me?

    You are missing one or more photos - youprobably have a page background that requires a photo which is behind a page with photos on it - all pages must either have a photo or be a color - if you have a gray background it requires a photo - look through the book carefully and be sure to look at the background on any full page photos - you will find one or more missing photos
    LN

Maybe you are looking for

  • To implement video conference in my website

    Hi, I want to implement an interactive Video conference in my website. I am Beginner in PHP, MYSQL and FLASH. It would be great if any one could give me answers and solutions for below questions: 1. Any list of webhosting sites which can support vide

  • Bug with ios 5.0.1

    A few bugs i have with IOS 5.0.1 The batery is run out very fast The music dosent oregnized the ipod stuck when I am lestning to music

  • Mobileme help

    Hello, I acquired in September 2010 a contract MobileMe for an Iphone 3Gs in order to keep all my contacts and notes on MobileMe. If I had any problems with my IPhone, it enables me not to loose any data. On my Iphone, I received an error message whe

  • Port forwarding in Solaris 8

    Hi, I am new to Solaris and am trying to set up a simple port forwarding from port 80 to 8080. I know how to do this in Linux: iptables -t nat -I PREROUTING -p tcp dport 80 -j REDIRECT to-port 8080 but cannot find a way to do this in Solaris. I have

  • HELP! Need to DL Flash Professional CS5.5

    I was going to download Flash Professional CS5.5 on my new computer since my old one has broken, but it turns out my Flash Professional CS5.5 disk is damaged. I have the serial number and everything. I was planning on downloading the trial and upgrad