Hi,
When printing a web page, we’d like no images to be displayed in preview or printed (except for the logo). I’ve copied print.css into the child-theme/css folder and have tried to set display none on the img styles, but it’s not working. Any suggestions? Thanks.
Hey Gallop_Web!
Try adding this to your quick css.
@media print {
img { display: none !important; }
}
Best regards,
Elliott