Guest User

Untitled

a guest
Aug 18th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. Sticky footer is not working and making my right column go crazy
  2. <body>
  3. <div id="wrapper">
  4. <div id="header">
  5. <div id="logo"></div>
  6. <div id="appoint">
  7. <ul>
  8. <li>info@company.com </li>
  9. </ul>
  10. </div><!--appoint div close-->
  11.  
  12. <div id="navi">
  13. </div><!--navigation div close-->
  14. </div><!--header div close-->
  15.  
  16. <div id="slidecontainer">
  17. </div> <!--closing tag for container-->
  18.  
  19. <div id="feature">
  20. <div id="featurewrap">
  21. </div> <!--feature wrap close-->
  22. </div> <!--feature div close-->
  23.  
  24. <div id="leftcol">
  25. </div><!--leftcolumn div close-->
  26.  
  27. <div id="rightcol">
  28. </div><!--right column div close-->
  29. </div><!--wrapper div close-->
  30.  
  31. <div id="footer_wrap">
  32. <div id="footer">
  33. <div id="footerleft">
  34. </div><!--footerleft div close-->
  35.  
  36. <div id="footerright">
  37. </div><!--footerright div close-->
  38. </div> <!--footer main div close-->
  39. </div><!--footer div close-->
  40.  
  41. <style type="text/css">
  42. * {
  43. margin: 0;
  44. }
  45.  
  46. html, body {
  47. height: 100%;
  48. }
  49.  
  50. #wrapper {
  51. min-height: 100%;
  52. height: auto !important;
  53. height: 100%;
  54. margin: 0 auto -(<FOOTER_HEIGHT>+<FOOTER_TOP&BOTTOM_MARGIN>)px;
  55. /* note the negative value */
  56. }
  57.  
  58. #footer_wrap, .push {
  59. height: <FOOTER_HEIGHT>px;
  60. }
  61. </style>
  62.  
  63. <div id="wrapper">
  64. <!-- What ever code is here -->
  65. <div class="push"></div><!-- this div MUST be last div before closing of "wrapper" -->
  66. </div>
  67.  
  68. <div id="footer_wrap">
  69. <!-- What ever code is here -->
  70. </div>
Add Comment
Please, Sign In to add comment