Preventing tags from printing
-
Hi, I have hidden tags for my postings, but the tags appear when printed. Any suggestions for preventing tags from printing?
The blog I need help with is: (visible only to logged in users)
-
I’m assuming you’re already comfortable overriding some of the theme’s CSS, and that is how you got the tags to display: none in the first place. Therefore, you should be able to use this to hide the print tags:
@media print { .tag-links { display: none; } } -
- The topic ‘Preventing tags from printing’ is closed to new replies.