Site logo

Archived topic

Different banner image for desktop and mobile

3 replies · Started by Deepak on May 2, 2021

Viewing posts 1–4 of 4

Hello,
How can i add different background image in banner for desktop and mobile.

Hi there,

You'll need to do custom CSS for that.

Example:

@media(max-width:768px){
.gb-container-79bb67ca {
    background-image: url(www.yoursite.com/path/to/your/mobile-image.png);
}
}

replace the URL of the image within background-image: url(www.yoursite.com/path/to/your/mobile-image.png); to the URL of the image you want for mobile.

Thanks Elvin.

No problem. :D

This archived topic is closed to new replies.