Hi, last question, I am using theme Taste at www.orangegrove.co.nz and want to stop the theme from restricting the height of the main carousel banner on the home page. Even though I choose setting Large, the images are cropped in height.
Also, the section underneath, see image, has a border which I would like to remove and make section full width.
Would appreciate any help please
Thanks so much
Wendy
@wendycain
For image with text section follow this steps :
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and paste this at the bottom of the file:
.image-with-text.image-with-text--no-overlap{
max-width: 100%;
padding-left: 0;
padding-right: 0;
}
.image-with-text .image-with-text__content,
.image-with-text .image-with-text__media{
border: none !important;
}
This works perfectly
Best Regards !
Hi @wendycain
This is Victor from PageFly - Shopify Page Builder App, I’d like to suggest this idea:
Online Store ->Theme ->Edit code
Assets ->Base.css
.image-with-text.image-with-text--no-overlap{
max-width: 100% !important;
padding-left: 0 !important;
padding-right: 0 !important;
}
.image-with-text .image-with-text__content,
.image-with-text .image-with-text__media{
border: none !important;
}
Hope you find my answer helpful!
Best regards,
Victor | PageFly
Thank you so much its worked perfectly x