Hi, my problem was to decrease the space between the navbar and the following content. So i think your problem is to increase the space.
I solved my problem with this code in the custom-css:
#content {
margin-top: 0px !important;
}
#site-navigation {
margin-bottom: 0px !important;
}
So try instead of 0px a higher number of pixels (eg. like 10px) and see what will happen. This may fix your problem.
Greetz