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 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!
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
and it will look like something like this
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>
There is extra padding at bottom and extra P tag after template-wrapper-22 ID tag.
main.css line number 120
body .normal-page, body .portfolio, body .blog {
z-index: 100000;
position: relative;
padding-top: 30px;
/* padding-bottom: 30px; */
}