In the CSS code, I have specified two background images within a 'body' tag.
#body
{
background: url("image1.jpeg"), url("image2.png");
background-repeat: no-repeat, no-repeat;
}
But now, I need to remove only "image1" from a specific page while keeping "image2".
Here is what I tried...
#container #PageName #body
{
background-image:none;
}
Unfortunately, this removes both images. Is there a way to achieve this using CSS alone?
Thank you for any help!
** UPDATE **
Thanks to everyone who provided solutions. Adjusting the approach is appreciated. Thanks again!