OK,
How do I make an image in a cell invisible without making all other images invisible in other cells? I tried: table, tr, td img{ visibility: hidden ;}
Didn't work.
I'm pretty green to css.
Thanks.
If the cell has an ID then you could do it like this:
Assuming your cell ID is "ImgCell" ( i.e. < td id="ImgCell">< img src="myImage.jpg" />< /td> )
Then in CSS you would have :
#ImgCell img {
display:none;
}
You can't really get aroungd the hard coding of images into the background like that.
What you could do is replace that image with a different one.
Copy the spacer.gif image and rename it to that same name in that folder.
DotNetNuke® is a registered trademark of DotNetNuke Corporation