Weather by You!
Templates and Projects support => Html Templates => Topic started by: avoorpool on May 26, 2012, 05:40:37 PM
-
Hi Jacques,
I'm adding some new pages to the template, and to make it easier I've copied/paste others and will enter a different text/information.
With 2 pages I have an issue and have tried numerous things but still remain with a "gap" at the bottom of the page.
Do you have an idea of how to solve this?
Thanks,
Arthur
-
Hi Arthur,
Your problem is simple... your bottom margin!
For DIV you've created, you are using this to center your pages:
<div style="margin: 10px 100px;">
That translating to: side margins 100px, top and bottom to 10px.
But the bottom margin create this gap! Then, instead use this:
<div style="margin: 10px 100px 0px 100px">
This will solve your problem.
Best Regards,
Jacques