Having some trouble printing an invoice I created using HTML and Bootstrap CSS. The issue is that the content doesn't print in full width, even after changing the media from screen to all.
Check out how it looks on the web:
Here's how it appears when printed:
CSS Adjustments Made:
@media print {
* {
text-shadow: none !important;
color: #000 !important;
background: transparent !important;
box-shadow: none !important;
border-width: 0 0 0 0 !important;
}
HTML Link to Stylesheet:
<link rel="stylesheet" href="views/css/bootstrap.css" media="all">