Background image doesn't work
-
I have a (main) table with a background image in which are cells that contain (internal) tables with their own background images. The main table's background image shows up just fine, but the internal ones down't show up at all. Here's the code:
.LogoTable
{
font-family:arial;
font-weight:bold;
font-size:12px;
color:#FFFFFF;
background-color:transparent;
background-attachment:fixed;
background-image:url(pcplus_logo_2.png);
background-repeat:no-repeat;
background-position:right top;
}
.LogoLinks
{
display:block;
clear:left;
float:right;
position:static;
margin-top:96px;
margin-bottom:2px;
text-align:right;
z-index:100;
}\[span class="LogoLinks"\] Welcome so and so to this web site \[a style="color:#FFFF00;" href="blah.html"\]**Logoff** \[/a\] \[a style="color:#FFFF00;" href="blah.html"\]**Support** \[/a\] \[a style="color:#FFFF00;" href="blah.html"\]**Help** \[/a\] \[/span\]
Can't nested tables each have their own background image?
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 -
I have a (main) table with a background image in which are cells that contain (internal) tables with their own background images. The main table's background image shows up just fine, but the internal ones down't show up at all. Here's the code:
.LogoTable
{
font-family:arial;
font-weight:bold;
font-size:12px;
color:#FFFFFF;
background-color:transparent;
background-attachment:fixed;
background-image:url(pcplus_logo_2.png);
background-repeat:no-repeat;
background-position:right top;
}
.LogoLinks
{
display:block;
clear:left;
float:right;
position:static;
margin-top:96px;
margin-bottom:2px;
text-align:right;
z-index:100;
}\[span class="LogoLinks"\] Welcome so and so to this web site \[a style="color:#FFFF00;" href="blah.html"\]**Logoff** \[/a\] \[a style="color:#FFFF00;" href="blah.html"\]**Support** \[/a\] \[a style="color:#FFFF00;" href="blah.html"\]**Help** \[/a\] \[/span\]
Can't nested tables each have their own background image?
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001Is the path correct? Vasudevan Deepak Kumar Personal Homepage namespace LavanyaDeepak
Personal Weblog
The World of Deepak and Lavanya
ViewPoint 24x7 -
I have a (main) table with a background image in which are cells that contain (internal) tables with their own background images. The main table's background image shows up just fine, but the internal ones down't show up at all. Here's the code:
.LogoTable
{
font-family:arial;
font-weight:bold;
font-size:12px;
color:#FFFFFF;
background-color:transparent;
background-attachment:fixed;
background-image:url(pcplus_logo_2.png);
background-repeat:no-repeat;
background-position:right top;
}
.LogoLinks
{
display:block;
clear:left;
float:right;
position:static;
margin-top:96px;
margin-bottom:2px;
text-align:right;
z-index:100;
}\[span class="LogoLinks"\] Welcome so and so to this web site \[a style="color:#FFFF00;" href="blah.html"\]**Logoff** \[/a\] \[a style="color:#FFFF00;" href="blah.html"\]**Support** \[/a\] \[a style="color:#FFFF00;" href="blah.html"\]**Help** \[/a\] \[/span\]
Can't nested tables each have their own background image?
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001In the style tag the statement background-image:url(pcplus_logo_2.png); shoudl be modified like background-image:url('pcplus_logo_2.png'); Try It.