BS"D
I’m trying to implement a printer friendly option for the user. I looked it up on the Webflow forum and then on Stack Overflow. I got the following answer there:
You can use CSS @media types.
<p> this should be part of the printed page </p>
<div id="navigation_bar_that_should_not_be printed" class="noprint">.....</div>
A simplistic style sheet for the above would be:
@media screen
{
/* whatever styles you have for display */
}
@media print
{
.noprint { display: none; }
}
In the above, the
with the class=“noprint” will be displayed on screen as usual, but it will not be printed.
How do I implement something like this in webflow?
Thanks