Hello,
can someone explain to me how I can make my image (1) as large as the one in the second image? Additionally, I would like the container to be half inside the image and half outside (both on desktop and mobile). I am using the Trade theme. Can anyone help me?
Thank you,
Kim.
mine
https://suq5b8csct01fyzg-61270851797.shopifypreview.com/collections/rappid-test
what I want
https://www.bareperformancenutrition.com/
1 Like
Hi @KimGottwald
Check this one.
- From you Admin page, go to Online Store > Themes
- Select the theme you want to edit
- Under the Asset folder, open the main.css(base.css, style.css or theme.css)
- Then place the code below at the very bottom of the file.
@media only screen and (min-width: 749px){
.slideshow__text.banner__box {
background: #fff;
margin-bottom: -12rem;
overflow: overlay;
}
.slideshow__text-wrapper.banner__content {
padding: 0;
margin-left: 10%;
}
.slider.slider--everywhere .slider__slide {
margin-bottom: 15rem;
}
.slideshow__media.banner__media img {
object-fit: contain;
}
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!