Site logo

Archived topic

Mobile header overlap featured image

3 replies · Started by Ola on January 15, 2021

Viewing posts 1–4 of 4

Hi there,

you have this CSS in your site which is causing the issue:

/* Reducera padding featured image på mobil*/
@media (max-width: 768px) {
    .post-image-above-header .inside-article .featured-image {
        margin-top: -50px !important;
    }
}

Oh, sorry!

That was a dirty fix ... Needed to reduce the distance between the post featured image and the header on mobile and I overdid it a bit. Thanks for pointing it out!

I adjusted my code to:

@media (max-width: 768px) {
 		.inside-header {
			padding-bottom: 0px;	
			}
		.inside-article {
			padding-top: 0px !important;
			}
}

Thanks and sorry!

No problem - glad to hear you resolved it !

This archived topic is closed to new replies.