Add this code to Custom CSS of desktop image banner section
.banner__text p {
color: #000;
}
And this code for mobile banner image section
.banner__text p {
color: #fff;
}
Main issue: Subheading text in a Shopify slideshow appears semi-transparent; the goal is solid (non-transparent) subheading text on both desktop and mobile.
Context: OP had already adjusted size/position via custom CSS (e.g., .banner__text.rte { font-size: 20px; }) but couldn’t remove the see-through effect.
Proposed fix: Add CSS to override the text color (which effectively removes the perceived opacity) per device:
Outcome/adjustments:
Status: Resolved. The subheading text now appears solid on both desktop and mobile using device-specific selectors. An attached screenshot illustrated the opacity issue but wasn’t essential to the solution.
Add this code to Custom CSS of desktop image banner section
.banner__text p {
color: #000;
}
And this code for mobile banner image section
.banner__text p {
color: #fff;
}