Hello,
Is there an easy way to modify the print.css file to force it to print a single column view (like a mobile view) of the website? Currently, it prints the two-column view, which doesn’t look great.
Also, is there a way to force it to not print the videos? I tried this code, but it didn’t work, so assume my code is wrong :-)
/* Remove Videos*/
.avia-video .avia-video-16-9{
display: none;
}
Hey Jennifer!
Try this out.
.flex_column { width: 100% !important; }
Your code for hiding the videos should be working. Try adding a !important to it like so.
.avia_video, .avia-video, .avia-video * { display: none !important; }
Cheers!
Elliott