I recently implemented the ASP Net Sprites package to create CSS Sprites for my website.
While the sprites are working perfectly on the webpage, I've encountered an issue where the generated images do not show up when the page is printed.
Here's a snippet of the HTML code that is being generated:
<a href="/" id="siteLogo"><img class="getmecooking-logo-png" src="data:image/gif;base64,R0lGODlhAQABAIABAP///wAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /></a>
I have attempted to address this problem by adding the following code to my print.css stylesheet, but unfortunately, it did not solve the issue:
#siteLogo
{
visibility: visible;
}
Although the print.css file successfully formats other elements on the printed page, I am still unable to get the site logo image to display. Any suggestions on how to resolve this matter would be greatly appreciated.