How to stop Sticky Footer from covering content ...?

I use a sticky footer, but on multiple pages it overlays the content. Is there a way to prevent this, but keep it sticky?

I tried using min-height:in HTMLand body, but that didn't work.

CSS

html {
    background: black url(images/bg2.jpg) no-repeat 200px center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
}
body {
    margin: 0;
    height: 100%;
    padding-left: 40px;
    padding-top: 25px;
}
#container {
    min-height: 100%;
    position: relative;
    height: 100%;
    min-width: 900px;
    overflow: hidden;
}
#body {
    padding-bottom: 100px;
    float: left;
    background-color: rgba(0,0,0,0.7);
    width: 750px;
    height: 400px;
}
#footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 100px;
}

HTML:

<body>

<div id="container">

  <div id="header">
    <div class="logo">C</div>

     <ul class="main_nav">
       <li><a href="index.html">Home</a></li>
       <li><a href="about.html">About</a></li>
       <li><a href="music.html">Music</a></li>
       <li><a href="services.html">Services</a></li>
       <li><a href="gallery.html">Gallery</a></li>
       <li><a href="contact.html">Contact</a></li>
     </ul>
  </div>

  <div id="body">
   <div id="bio_wrapper">

   </div>
  </div>

  <div id="footer">
    <span class="footer_text">Copyright ยฉ 2013<br />All Rights Reserved.</span>
  </div>

</div>

</body>
+5
source share
4 answers

As Amit said, you should put a bottom bottom for your body and use min-height instead of height:

#body {
   min-height: 400px;
   margin-bottom: 100px;
   clear: both;
}

And you should remove height: 100% from<body>

Hope this helps!

+11
source

If your div body is closed before the start of the footer, use the margin-bottom property. Example if the page structure

<div id="body">
</div>
<div id="footer">
</div>

#body{
   margin-bottom: (height of your footer);
}

. , div. margin the margin div, .

+4

. (, , ). @media , ( ) , . , .

+1

In the last div before the footer, just add style = "height: 100%; padding-bottom: 0;" to rewrite common rules that you are likely to encounter.

0
source

All Articles