How can I reduce the height of my image banner?

Hey!

my website is here: https://drizzilicious.myshopify.com/

the password is: drizzy

I’m trying to make an image banner height reduced so it’s thin and almost like a ribbon to separate different sections.. unless there’s a better wa

Can anyone help?

Hi @Mattinnovations ,

  1. In your Shopify Admin go to Online store > Themes > Actions > Edit code

  2. Find the assets file/section-image-banner.css

  3. Add the following code at the bottom of the file:

@media screen and (min-width: 750px){ 
.banner { min-height: 4rem !important;} 
}

Remind that the value of min-height property can be changed based on your desired height

Hope it works @Mattinnovations !