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

Similar Messages

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

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

    I am a beginner, so please bare with me...   I added background color to a new project, placed the image and saved.  When I export the saved image as a jpeg, the background color disappears.  Why is this?

    what did you do to add background colour?

  • 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

  • Can anybody say why In the layer menu the background color is white when opening a layer mask, and why does it automatically turns black by simply opening the layer mask properties menu? The vector mask is white anyway.

    Can anybody say why In the layer menu, the background color is white when opening a layer mask, and why does it automatically turns black by simply opening the layer mask properties menu? The vector mask is white anyway.

    Topic or subject titles should be clear, pertinent and concise so that individual users can tell at a glance if they can help or not.
    That field is not for attempting to fit your entire question in there.
    Please keep this in mind next time you post.  Thank you.
    A lot more information about your hardware and software is needed.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CC", but something like CC2014.v.2.2) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    a screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • How to change background color in photoshop cs3

    how to change background color in photoshop cs3
    Please help me...

    Background for what? You need to explain better and be more specific.
    Mylenium

  • Why does the background color change?

    Hello world...
    I have a problem: when I load an external .swf into my current stage, its background color becomes like the one of current stage. Why?
    Please, help me.
    Emiliano.

    It's because there actually is no background inside Flass. That colored area (stage) you place your items on is just there to help you see them.
    For your problem, just place a colored rectangle on the bottom most layer and you'll be good.

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

  • Why is the background color not applied in one case?

    Hi,
    I'm using RH 7 and WebHelp.
    I apply a TableHeading style to the first row of my tables. The TableHeading style is supposed to fill the cells of the first row with a background color of blue, and the text is in white. It works fine except for one table. I think TableHeading style was not applied in the Word document when I imported this topic. I tried to apply the TableHeading style to the first row, and it says it is applied in the HTML. But, the background blue does not fill the cells.
    Here is what I am trying to achieve:
    Here is my problem table:
    I can see in the HTML that the background color is not present in the code. Here is the code for the example that is correct:
    <p class=TableHeading>Chapter</td>
    <td style="border-left: none; border-right: solid #000000 1.0px; border-top: solid #000000 1.0px; border-bottom: solid #000000 1.0px;
              width: 279.4pt; padding: 0in 5.4pt 0in 5.4pt; background-color: #003399;"
    bgcolor=#003399 width=279.4pt>
    <p class=TableHeading>Description</td></tr>
    <tr><td style="x-cell-content-align: top; border-left: solid #000000 1.0px; border-right: solid #000000 1.0px; border-top: none;
                       border-bottom: solid #000000 1.0px; width: 182.85pt; padding: 0in 5.4pt 0in 5.4pt;
                       padding-left: 0px; padding-top: 0px; padding-right: 0px;
                       padding-bottom: 0px;" valign=top width=182.9pt>
    Here is the code for my problem table:
    <p class=TableHeading>Activity</td>
    <td style="border-left: none; border-right: solid #000000 1.0px; border-top: solid #000000 1.0px; border-bottom: solid #000000 1.0px;
              width: 168.0pt; padding: 0in 5.4pt 0in 5.4pt;" width=168pt>
    <p class=TableHeading>Keyboard Shortcut</td></tr>
    <tr style="x-cell-content-align: center;" valign=middle>
    <td style="width: 374px; x-cell-content-align: top; border-left: solid #000000 1.0px; border-right: solid #000000 1.0px;
              border-top: none; border-bottom: solid #000000 1.0px; padding: 0in 5.4pt 0in 5.4pt;
              padding-left: 0px; padding-top: 0px; padding-right: 0px;
              padding-bottom: 0px;" valign=top width=374px>
    Here is the code from the CSS:
    p.TableHeading {
    background-color: #003399;
    punctuation-wrap: simple;
    text-autospace: none;
    font-size: 10.0pt;
    font-weight: bold;
    color: #ffffff;
    font-family: Verdana, sans-serif;
    margin-left: 3pt;
    margin-right: 3.0pt;
    line-height: 120%;
    margin-top: 0pt;
    margin-bottom: 0pt;
    LI.p-TableHeading {
    punctuation-wrap: simple;
    text-autospace: none;
    font-size: 10.0pt;
    font-weight: bold;
    color: #ffffff;
    font-family: Verdana, sans-serif;
    line-height: 120%;
    Any suggestions?
    Thanks,
    Julie
     I don't understand why the TableHeading style is not applying the background color for the one table. I'm guessing I could just add it to the code using the HTML editor. However, I wasn't sure if that was the best way to fix this problem or if I would create another problem.

    Hi Willam,
    Thanks for your answer, and I will go ahead and add the background color to the problem table.
    However, I am still puzzled as to why the background color is applied to the cells in the other tables and not the problem table. I'm not sure what I did to cause the problem - how I applied the TableHeading to the table cell in one case and not the other. Any ideas how I can avoid this problem?
    I will not use the Word documents going forward and will only make changes with the RH editor.
    Thanks again,
    Julie

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

  • Flash CS3 debugger window background color

    Is there any way to get Flash CS3 to use the same background
    color from your actionscript settings in the debugger? It's always
    light gray--I like to use a black background for my actionscript,
    but now I'm probably going to have to change to gray since it
    appears the debugger ALWAYS uses a gray background regardless of
    your settings? (My text is white and I can't see it against the
    debugger background)
    Is there any way to change this?

    if you're wanting to look at the contents of variables,
    unlike the AS2 debugger, the movie needs to be paused, for example
    at a breakpoint. Once the movie's paused variables will appear in
    the 'Variables' window.

  • Why can't I change the background color of my UIView in IB?

    I have a rootController which controls several other ***ViewController's and I have been doing the usual thing by changing the background color in IB.  However, for one controller, I cannot change it's background color from the default no matter what I do.
    To be clear, each new controller created has been done in the same manner using the UIViewController subclass with nib file.
    I have cleaned the project and deleted the app from my iPhone countless times and still no change.
    Any suggestions will be greatly appreciated.
    Thanks!

    @ KT
    I'm replying to myself because I cannot see your post ??????
    From my email- KT said:
    "Typically, when a same-only different controller acts up like this, the first thing to do is to rewire - sounds like you've gone down that path tho.
    Can you duplicate one of the cooperative controllers, add it to the mix and see if things change there?"
    I've tried all of that several times.  I have no idea.  Maybe some sleep will help it and me.
    Thanks for your comments and suggestions.
    Edit
    As soon as I posted this - your post appeared.  Again??????

  • Where is background color stored in CS3 Bridge?

    I would like to change the background color of the Bridge interface to match my desktop and Photoshop (both of which are currently #C0C0C0, or (192,192,192). I can go into Edit/Preferences/General, and play with the User Interface Brightness and Image Backdrop sliders and eyeball it, but I'm looking for something a little more precise.
    Is the color saved in an XML file somewhere? (I looked in Adobe Bridge Panel Preferences.xml, which seemed like the most likely candidate, but did not find anything that looked like it.)
    Any thoughts?
    Thanks,
    Lynn Grant
    Cross Design Group LLC

    Hi
    I think there is a bug in the first release of Forms 6i,
    where the prompts got the same backgroung color of the
    related item (in fact, it must have no back color,
    because it has no "background color" property).
    Try applying a patch over it.
    I update all my works from developer 2000 to developer 6i (forms 6.0). All my screens are now irregular becoz, the text field prompt background color property is not present in forms 6i. Can you help me how to solve this prob.
    (one more solution i found is, can do the prompt as separate canvas object, but is there any way to set the background color for prompt entered in text field.)
    Thank you
    Raj

Maybe you are looking for

  • Problem to connect with OPC Server opc.sinumerik.machineswitch using DS_Open

    Hi, I want to connect to an Siemens OPC server type opc.sinumerik.machineswitch using DS_Open calls (CVI 6.0) to read few tags. Running my client software (as well as the NI- sample test client) locally on the same computer as the server the connecti

  • Why won't my virtual shutter open?

    My virtual shutter on my iPhone 4S has suddenly stopped opening. It won't allow me to take video or pictures. I have done several hard resets and have stopped all processes and cleared all settings.(pretty much everything any forum has told me to do)

  • [SOLVED] sendmail installation

    Hi, i'm new in linux, and I see in many logs in the /var/log directory the error about the send mail /USR/SBIN/CROND[5475]: (CRON) EXEC FAILED (/usr/sbin/sendmail): No such file or directory what is exactly? that linux cannot send email when an error

  • NATPMP

    With an update to Airport Base Station 5.7 I got a new addon that makes me very curious. If you open up the config window and go to 'Options for this Basestation' a new window pops up. There I can mark a new field called 'activate NATPMP' under this

  • Unable to connect on FaceTime

    sorry for my english but I'm italian, FaceTime when I call a cell phone does not connect, but when a phone call attempts to the Mac does not ring (osx lion), what can i do?