Header background image not actually in header?

Hello,

I have added a background image via the standard Wordpress “Appearance -> Header-Image”.
The logo (added in the travelife options) is now above the header image. If I disable the logo, a white space remains above the header image.
How can I get the logo to show on the header background image and make the space above the header background image disappear?

rel.: www.narrenschein.de

Thank you!

Hello there,

I hope you are doing well today.

The bar the contains the logo can’t be removed without removing the logo too but you can use the following CSS code to move the logo and reduce the size of the bar by going to Appearance > Customize > Additional CSS and pasting it there.

/*Move logo and reduce bar size*/
#site-logo {
    position: absolute;
    top: 100px;
    z-index: 10;
}

.hgroup-wrap {
    padding-top: 0px;
    padding-bottom: 0px;
}

Best Regards,
Support

Thank you so much! That worked for me.

Is it possible to reduce the top bar to 0 or 1 pixels?

Hey there,

If you wish to remove the top bar all together you can use this,

/*remove top bar*/
#branding > div {
    display: none;
}

Best regards,
Support.