Classic Image Element going through text

I’m translating my website into English and trying to duplicate the design etc. At the original site is it going good. Like this below. The image will be placed below the text on mobile.

But the new site looks like this:

The style of the classic image element is: margin-bottom: 0; position: absolute; bottom: 0;

Do I forget something or?

Hi There,

I could see that you forgot to add this custom CSS:

@media (max-width: 767px){
    .relative img {
        position: relative !important;
    }
}

The custom CSS above will make your image NOT overlap the texts on mobile devices.

Regards!

Thank you!!! That works.

You’re welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.