Roddyrick:
I didn’t take the time to dig into the problems, but it looks like you’ve got an element placed above your Google Map that is creating artificial whitespace.
ins#aswift_0_expand {
display: inline-table;
border: none;
height: 60px;
}
and
ins#aswift_0_anchor {
display: block;
border: none;
height: 60px;
}
Removing the height:60px from those two elements decreased the whitespace significantly.
Fernus:
From what I can see, edit this code to remove whitespace between the bottom of your menu and the top of the homepage images:
.site-header {
margin-bottom: 60px;
}
and
.site-header {
margin-bottom: 36px;
}
Removing the margin-bottom should decrease the whitespace.