We use cookies to make HubSpot's community a better place. Cookies help to provide a more personalized experience and relevant advertising for you, and web analytics for us. To learn more, and to see a full list of cookies we use, check out our Cookie Policy (baked goods not included).
Mar 6, 2022 10:20 AM
Hello there. We're so new to this beta feature and we need help 🙂
Do you think it is possible to make the custom quote in landscape mode; both the quote itself and downloadable pdf, too?
May 12, 2022 6:00 AM
Have you tried adjusting the print CSS styles with something like this? I haven't tried this in an actual HubSpot quote but something like this should work.
@media print {
/* sets printed page landscape and no margin so color bleeds to edge */
@page {
size: landscape;
}
}
Here is a Codepen example you can experiment with: https://codepen.io/JacobLett/pen/dydpXLx
Try printing this live page: https://cdpn.io/pen/debug/dydpXLx
Sources
https://stackoverflow.com/questions/39356258/force-landscape-orientation-in-css