Your Ad Here

Posted By

indianocean on 06/04/07


Tagged

textmate template background footer


Versions (?)

Who likes this?

2 people have marked this snippet as a favorite

basicmagic
awolffing


Template with footer and fixed-position text on footer


 / Published in: HTML
 

Footer contains background image. Text is placed on the footer which will be static in position to the footer when changing browser window size.

The footer itself is static in position, doesn't move when resized. For moving footer use this: http://snipplr.com/view/3073/template-with-footer-fixed-to-viewport-working-in-safari-too/

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3.  
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  6. <title>Lorem ipsum dolor sit amet</title>
  7.  
  8. <style type="text/css" media="screen">
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. body{
  14. }
  15. #container{
  16. margin-left: auto;
  17. margin-right: auto;
  18. width: 400px;
  19. }
  20. #footer{
  21. margin-top: 350px;
  22. background: #F7941D url(background2.jpg) repeat-x scroll center top;
  23. height: 198px;
  24. }
  25. #infooter{
  26. width: 600px;
  27. color: green;
  28. margin:0pt auto;
  29. }
  30. </style>
  31.  
  32. </head>
  33. <div id="container">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</div>
  34. <div id="footer">
  35. <div id="infooter">I do not move on the background pic when scrolling</div>
  36. </div>
  37. </body>
  38. </html>

Report this snippet  

You need to login to post a comment.