Print CSS problem with Chrome/IE

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.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.