Search code examples
htmlcssparallax

Remove blank gap between parallax boxes


I have a problem on my website weeral.it

There are a blank gap between the two parallax section and between parallax section and the footer.

Is there a way to resolve this problem? Many thanks!


Solution

  • some find and replace work need into your main.css

    find

    body .normal-page, body .portfolio, body .blog {
      padding-bottom: 30px;
      padding-top: 30px;
      position: relative;
      z-index: 100000;
    }
    

    replace

    body .normal-page, body .portfolio, body .blog {
      padding-top: 30px;
      position: relative;
      z-index: 100000;
    }
    

    need to remove this padding-bottom: 30px; Then into your HTML remove the

    tag http://prntscr.com/fp31er

    and it will look like something like this

    enter image description here