
RussellReal
-
Posts
1,773 -
Joined
-
Last visited
Posts posted by RussellReal
-
-
last resort.. iframe.. set up an iframe 100% tall 100% wide.. then put the footer on the bottom of the page.. and the iframe will scroll correctly
-
<body style="margin-bottom: 20px; overflow: hidden;"> <div style="position: fixed; bottom: 0;">Footer Text</div> <div style="overflow: scroll; width: 100%; height: 100%; display: block;"> content content content </div> </body>
-
try containing the content in a div.. and making the div overflow: scroll.. and the body overflow: hidden; so that the scroll pane only shows up to the right of the div containing the content.
-
.footer {
position: fixed;
bottom: 0;
height: 20px; /* set height of the footer */
}
body {
padding-bottom: 20px; /* set this to the height of the footer */
}
Need help with HTML to PDF with footer
in PHP Coding Help
Posted
maybe pdfs don't support positioning from css.. put it in a table..