The .head-wrap
(div around the header) has 40px of margin for the bottom. So you would need to remove that bottom margin and that would cover about half of that space. But you’ll need to only do this for the homepage, since that space is needed for all of your other pages. Add this code to do it –
.home .head-wrap {
margin: 0;
}
Next look around line 1151 or search for .slider-wide .wrap
and remove the padding like this –
.slider-wide .wrap {
margin: 0 auto 20px;
padding: 0;
}
….and that will remove all the space from in between the header and slider. Once you edit this, make sure and hit your reload button so it will clear your browser cache so the latest changes will show up.
Let me know if that works.