Remove top heading

Hi!
Is it possible to remove the space between the top menu and my first image on the homepage.
See my test web page.
http://test.tent2rent.com

Thank you for a good looking theme!

/David

Hey there,
Hope you’re doing well today

Kindly add and save the following code to Appearance > Customize > Additional CSS:

.container.main-content-area {
    margin-top: -22px!Important;
}

.post-inner-content:first-child {
    padding-top: 0px!Important;
    margin-top: 0px!Important;
}

I hope this helps :slight_smile:

Best Regards,
Support

Thank you! it did the trick, little bit to well. Is it possible to apply this only to the homepage / “start page”. And not to the other pages?

To apply it only on home page please change above shared code as following.

.home .container.main-content-area {
    margin-top: -22px!Important;
}

.home .post-inner-content:first-child {
    padding-top: 0px!Important;
    margin-top: 0px!Important;
}

Thank you! works perfect!

You are most welcome here :slight_smile: