Advertisement
Samp-Pawn

Who To Remove Page Element

May 23rd, 2012
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. How to remove a page element?
  2. <html>
  3. <head>
  4. <style type="text/css">
  5. html{
  6. margin:0;
  7. padding:0;
  8. }
  9. body {
  10. margin:$pageMargins;
  11. padding:0;
  12. }
  13. </style>
  14.  
  15. </head>
  16. <body>
  17. <div id="first-page-header" style="position:fixed;left:0.5in;top:0.5in;right:0.5in;height:1in;">my header text</div>
  18. <div id="remaining-pages-header" style="position:fixed;left:0.5in;top:0.5in;right:0.5in;height:1in;">my header text</div>
  19. my page content here
  20. <script type="text/javascript">
  21. //print();
  22. </script>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement