• Hey guys,

    On the home page of my website (and for all subsequent pages) https://www.ininkk.com, I was wondering if anyone knew how to get rid of the white space inbetween the image gallery and where it says “Privacy Policy, FAQ, and Our Story”?

    I tried using the following code but it didn’t work for me:

    #wrap > div.container {
    padding-bottom: 0px;

    Any help would be greatly appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You have an empty block right above your copyright:

    <div class="container">
        <section id="footer" class="footer-group">
           <div class="row">  </div>
        </section>
        <div class="copyright">

    Try to get rid of that empty block in the markup code, or, if you can’t find where to do that, make it hidden with this CSS:

    #footer {
       display:none;
    }
    Thread Starter furoris

    (@furoris)

    Wonderful, this worked. Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove White Space above Footer?’ is closed to new replies.