I also would like to delete the yellow section that comes after the slider image, this is for mobile view. Thanks in advance!
Topic summary
A user seeks help displaying text and a “Shop Now” button over slider images in the Taste theme, and wants to remove a yellow section appearing after the slider on mobile view.
Two solutions provided:
-
Settings adjustment: Uncheck specific options in the Image banner or Slideshow settings (screenshot provided showing the relevant checkboxes)
-
CSS code solution: Add custom CSS to
section-image-banner.cssfile:- Navigate to: Online Store → Themes → Actions → Edit Code → Assets → section-image-banner.css
- Insert provided media query code at the end of the file to adjust mobile banner padding and margins
- Code targets screens under 749px width
The CSS solution includes a before/after screenshot demonstrating the result. Both approaches aim to resolve the mobile display issues with the banner elements.
Go to online store ----> themes ----> actions ----> edit code ----> assets ---->section-image-banner.css
add this code at the end of the file.
@media screen and (max-width: 749px) {
.banner__box > :first-child {
margin-top: -16rem !important;
}
.banner--mobile-bottom .banner__box {
padding: 19px 80px;
}
}
result
If this was helpful, hit the like button and accept the solution.
Thanks



