Tagged: ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #434929

    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;
    }
    
    #435579

    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

    • This reply was modified 9 years, 7 months ago by Elliott.
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.