Printing in Landscape?

I don’t know if this is Wappler related or not but it appears that all my sites done in Wappler cannot be printed in landscape mode from Google Chrome. Sites done in Dreamweaver print out in landscape no problem. But on my Wappler sites the option to print in landscape is just not there in Chrome?

Even the showcase sites cannot be printed in landscape in Chrome? Is it perhaps something in BS4 that locks orientation?

It was indeed a BS4 issue. Adding the following CSS style to the page corrected the issue.

@page {
  size: auto;
}
1 Like