Reputation: 542
On my website, I have a background some sections and a header. The header and the background are moved ~70px away from top! My site: http://www.scrumplex.ga/
Upvotes: 0
Views: 704
Reputation: 2448
There is div containing iframe just before header.
which has inline-style style="position: fixed; z-index: -99; width: 100%; height: 100%;
If you really need to set it to fix then add top:0
in same style. like this.
style="position: fixed; z-index: -99; width: 100%; height: 100%; top:0;
See if it works for you.!
Upvotes: 1
Reputation: 5315
The issue is that your <p class="p-white">
has a 21.333px
margin on the top and bottom. Override that in your CSS, and that white area should go away:
p.p-white {
margin-top: 0;
}
Upvotes: 2