Rank: Advanced Member Groups: Member
Joined: 11/8/2015 Posts: 42
|
I am having issues with the Top Margin on Pages 2 and subsequent pages. When printing in Chrome, there is only the margin specified and the entire document has identical margins. When Using EO.PDF 17.2.14.0, the margin on page 2 and subsequent pages is larger. I will create a sample program and email it over.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,225
|
Hi,
We have looked into your test project, you need to either remove the extra margins you put in between your tables or make sure this margin appears at the bottom of a page, not at the top of the page.
The reason that you top margin is different on the first page and second page are different is very simple: you have different margins for them in your HTML. The root of the problem is the bottom margin you added to your table (through CSS class margin-bottom-50) is NOT included in the parent DIV, which is used to determine paging. Because it is not included in the DIV, the extra margin is placed at the beginning of the next page. So you will need to either remove this margin, or make sure this margin is included in the parent page break DIV.
Thanks!
|