We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 39929
    • 113 Posts
    Greetings.

    I'm new in webdesign, deadline is hunting me. Can anybody help me fixing this footer or body issue?.

    http://assumptiondavao.edu.ph/acd/index.php?id=8&galAlbum=4

    Thank you in advance.
      • 6629
      • 60 Posts
      You have to clear the floating elements in #home_whole.

      A quick'n'dirty solution would be to add a clear-div in your container:
      <div id="home_whole">
          <div class="cellOne"> [...] </div>
          <div class="cellTwo_imageitem cellTwo"> [...] </div>
          <div style="clear: both"></div>
      </div>


      Another solution is the CSS clearfix.

      After adding this to your CSS, you simply add the class "clearfix" to #home_whole to clear the contained floats.
      <div id="home_whole" class="clearfix"> [...] </div>
        • 39929
        • 113 Posts
        :C you saved my life. thank you..