sequel
sequel

Reputation: 196

Printing disfigures page

I have a PHP file which pulls information from database and the previous pages. It looks something like this:

PHP file

Whenever I try to print the page it prints out as this:

Print preview

At first I thought I could fix this using media queries, but I was wrong. Media queries didn't help me a bit.

My Question

How can I print the page (in Portrait view, preferably in an A4 page) without it being disfigured.

Thanks

Upvotes: 0

Views: 39

Answers (1)

sequel
sequel

Reputation: 196

Adding a print media query (@media print), as suggested by @Laiman solved the problem.

Now after print it looks like this:

enter image description here

Upvotes: 1

Related Questions