0

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!

I haz kode
  • 1,587
  • 3
  • 19
  • 39

3 Answers3

0

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

R.K.Bhardwaj
  • 2,168
  • 1
  • 14
  • 24
0

The blank space just above the footer is being shown as a part of the <div class="main-wrapper"> in the developer tools of the browser. Try including this

margin: 0;
padding-bottom: 0;

to the wrapper <div> and the last <div> in the wrapper <div>

Chirag Bhansali
  • 1,900
  • 1
  • 15
  • 22
0

There is extra padding at bottom and extra P tag after template-wrapper-22 ID tag.

enter image description here

main.css line number 120

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

enter image description here

Paolo Forgia
  • 6,572
  • 8
  • 46
  • 58