I am trying to ignore the website title in print mode
, follwing how to hide element in print mode, I have tried:
<title class="hidden-print">site title..</title>
And CSS:
@media print{
.hidden-print {
display: none !important;
}
}
But still the title is visable in print mode
.
BTW - can I hide the date next to the title in print mode?