Having trouble with this issue. I've attempted to adjust the margins and padding of the text and cells, but have not been successful in resolving it yet. This problem only seems to occur in Chrome
Let's take a look at some code. Here is the main print.css file:
@page
{
size: size 21cm 29.5cm portrait;
margin: 1.3cm;
}
/*-----------------------------------------------------------------------------------------------------------------------------------------------------*/
/* -- Page Layout
/*-----------------------------------------------------------------------------------------------------------------------------------------------------*/
body { padding: 0px; margin: 0px; }
div.OuterShell { width: 100%; border: none !important; padding: 0px; margin: 0px; }
div.InnerShell { width: 100%; border: none !important; padding: 0px; margin: 0px; }
... (omitted for brevity) ...
.SkillsTable ul { list-style:none; margin:0 0 0 5px !important; }
The page also utilizes another print CSS sheet called paperwork. Here is its content:
... (content continues)