Hello,
I am assuming that you mean the white space above the image and the top black bar with the Content menu link and search button.
If so, here is the css class that needs to be editted. There might be a few different places or methods to make the changes depending on how your theme is setup.
The css that is creating the extra space is the .content-area padding.
Right now there are two media queries where this padding is set. I can’t tell exactly where they are because firebug css inspector is getting odd line number/file locations that are sometimes indicative of caching. but you should be able to add the following code to your main style sheet and it should override the old code wherever it might be.
@media screen and (min-width: 846px) {
.content-area {padding-top: 0px !important;}
}
@media screen and (min-width: 673px) {
.content-area {padding-top: 0px !important;}
}
This should override the problem css causing the extra space above. If the .content-area affects other pages that you want the padding on, then you might pinpoint the home page only perhaps by using this format instead…
@media screen and (min-width: 846px) {
.home .content-area {padding-top: 0px !important;}
}
@media screen and (min-width: 673px) {
.home .content-area {padding-top: 0px !important;}
}
Best Regards,
Danny