Hi,
I am looking to reduce all of the Images with Text Overlay on my homepage. I’ve searched this endlessly on these discussion boards and have not found a solution that works. I was able to reduce the image size for my First Banner Image with the code below but it’s not working on all of my images on the homepage. Can someone help me adjust the code? Also - I only have Theme.css. Thank you!
This line: height: 32vh !important;
This code helped me adjust the first image to whatever size I wanted. But only for the first banner image.
@media screen and (max-width: 749px){
div#shopify-section-hero-1 div#Hero-hero-1 {
height: 32vh !important;
background-position: center !important;
}
div#shopify-section-hero-1 div#Hero-hero-1 .hero__inner {
padding: 15px 0 21px;
}
div#shopify-section-hero-1 div#Hero-hero-1 .hero__inner h2.h1.mega-title {
font-size: 18px;
}
div#shopify-section-hero-1 div#Hero-hero-1 .hero__inner .rte-setting.mega-subtitle {
margin-bottom: 0;
}
div#shopify-section-hero-1 div#Hero-hero-1 .hero__inner .rte-setting.mega-subtitle p {
margin-bottom: 5px;
}
div#shopify-section-hero-1 div#Hero-hero-1 .hero__inner a.btn.hero__btn {
margin-top: 2px;
}
}
