Hello,
Is there a way to define a different logo for print? Our site uses a white logo on a dark background, so it is not visible when printed. We’d like to define our dark version of the logo for print. Thanks!
Hey Monica,
Try this code in the General Styling > Quick CSS field:
@media print {
.logo img {
display: none!important;
}
.logo {
background: url('https://kriesi.at/wp-content/themes/kriesi/images/logo.png') no-repeat!important;
width: 300px!important;
height: 100px!important;
}
}
Change the logo url to suit.
Best regards,
Mike