Site logo

Archived topic

Print across the entire page

7 replies · Started by Rui on May 1, 2020

Viewing posts 1–8 of 8

Hi!

When I try a print preview of any post on my site (such as the url provided for admins) it does not occupy the entire page, as I wish.

I am using the following print style:


@media print {

	.side-header,
	.sidebar,
	.main-navigation,
	.widget-area,
	.adsbygoogle,
	.footer-widgets {
		display: none !important;
	}

	body {
		background: #fff !important;
		color: #000;
	}

}

What I need to do for the content to be printed span across the entire width of the page?

Thank you all!

What if you add this to your media query?:

.content-area {
    width: 100%;
}

Wow! It's much better now. Thank you!

You're welcome :)

This archived topic is closed to new replies.