Facebook status bar


/ Published in: CSS
Save to your folder(s)

Se que es poco... pero es lo unico que me gusta de facebook.
Chome OK; IE OK; Firefox OK;


Copy this code and paste it in your HTML
  1. body {
  2. }
  3.  
  4. /* Floating status bar */
  5.  
  6. #footer2 {
  7. display: none;
  8. }
  9. html > body #footer2
  10. {
  11. display: block;
  12. position: fixed;
  13. text-align: center;
  14. bottom: 0;
  15. left: 8;
  16. width: 97%;
  17. color: #999999;
  18. clear: both;
  19. height: 24px;
  20. border-top-style: solid;
  21. border-top-width: 1px;
  22. border-top-color: #b5b6b5;
  23. background-repeat: repeat-x;
  24. border-right-style: solid;
  25. border-left-style: solid;
  26. border-right-width: 1px;
  27. border-left-width: 1px;
  28. border-right-color: #b5b6b5;
  29. border-left-color: #b5b6b5;
  30. background-color: #e7e7e7;
  31. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.