At the moment there is a lot of white space above my navigation bar on https://www.stimagz.com/
I managed to remove some white space at the bottom of the navigation bar using this code I found online:
header.site-header {height: 150px !important;}
@media only screen and (max-width: 768px){
header.site-header {height: 150px !important;}
.header-logo .lazyload__image-wrapper {max-width: 110px !important; }
header.site-header .header-logo { margin: 15px auto !important; }
header.site-header .site-header–text-links, header.site-header .site-header–text-links p {margin-bottom: 0px !important;}
}
But if I reduce the padding anymore than this then the navigation bar doesn’t move upward with it and it crops into the first actual section.
So I’m wondering what code determines how to move the actual navigation bar upwards? Not just affect the padding around it?
Thank you so much!