How can I adjust my mobile banner image size for full display?

Hello! Is there anyway I can change the size of my image banner on mobile to display the full image on the mobile version of my website.

My website: https://prestigestraps.com

Password: asd321

Here’s how it looks on PC and how I want the image to look on the mobile version

Here’s how it looks on the mobile version

Thank you in advance for any answers!

Hello @kitchencrafted ,

You can try to follow these steps:

Go to Online Store → Themes → Actions → Edit code

Go to Assets folder → base.css file or theme.css file

Add this following code at the bottom of page

@media only screen and (max-width: 767px) {
  .banner-image {
    background-size: cover;
    background-position: center;
    height: auto;
  }
}

Save and preview

Hope this can help.

Ali Reviews team.