Print stylesheet

Are there any options to create a print stylesheet within Webflow?

No, not at the moment. For now you can add custom code in your site settings:

<style>
  @media print {

    .header {
      display: none;
    }
    .navigation {
      display: none;
    }

  }
</style>

More info here: How To Set Up A Print Style Sheet — Smashing Magazine

This post has 1 year old, any news on media prints?

Since the print media query is utilized less often, it’s low on our priority list compared to some other highly requested features. I’ll let you know when we start working on it. :+1:

1 Like

Would be nice to see this.