How can I not display the day of the week title tag on month view when printing. I’ve tried to add a display none in the printing stylesheet for the thead and th.title but can’t get it to work.
Just to be clear when I print month view it looks like this.
Sunday (sunday) Monday (monday) etc.
I want to eliminate the second (sunday) and (monday)
I definitely might be able to help you with this. My goal would be to craft some CSS in the regular view that hides those elements, then you could slip it into the print style sheet. But to do that I’ll need to be able to see your theme in my browser. Do you have a live link to a page with this problem?
body .tribe-events-calendar thead tr, body .tribe-events-calendar thead th { display: none; }
When I do a print preview with that in place the table header is hidden. If you put that inside your print stylesheet it should hide those only on print. If that does not work though, what happens if you put it in your regular stylesheet? Do they disappear as expected?