I saw this problem and this worked for me…
.example:before {
content: ‘’;
background:url(‘…/img/Logo.png’) no-repeat;
}
@media print {
.example:before {
content: url(‘…/img/Logo.png’);
}
}
Give me your feedback.
I saw this problem and this worked for me…
.example:before {
content: ‘’;
background:url(‘…/img/Logo.png’) no-repeat;
}
@media print {
.example:before {
content: url(‘…/img/Logo.png’);
}
}
Give me your feedback.