Extend homepage image on mobile - Dawn Theme

Hi! I need my homepage image to take up the full screen on mobile. Is there a way to do this without code or do I need code? I can resize my image if needed. Thank you! https://allcountrynoclub.co/

Reference:

Hi @ktcapri

Do want to make the image full screen on the mobile. Like this?

If it is, check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

@media only screen and (max-width: 750px){
.banner--large:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
    min-height: 90vh;
}
}

And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

It still didn’t work. I put it at the bottom of base.css

Hi @ktcapri

Dan here from Ryviu: Product Reviews & QA app.

You can add this code to Custom CSS of that section to do that

@media (max-width: 749px {
.banner__media { 
    height: calc(100vh - 83px) !important;
}
}