Comments

Olafski's picture

I don't know any module to achieve your request. If you're able to add CSS to your Backdrop site, e.g. via a (sub) theme or via the CSS Injector module, you could add styles like the following:

@media print {
  header, footer, .l-messages, .l-sidebar, nav.tabs {
    display: none;
  }

Olafski's picture

In my last comment, the second closing curly bracket was missing. Here's the complete CSS:

 


@media print {
  header, footer, .l-messages, .l-sidebar, nav.tabs {
    display: none;
  }
}