you need to change the css code for disabled links or just add a url for the second slide in customizer, if such an option is available.
Topic summary
A user is experiencing an issue where their store’s cover banner displays differently across slides: the first image appears normal, while the second has an unwanted white shade or overlay.
Proposed Solutions:
-
CSS modification for disabled links: One suggestion involves changing CSS code for disabled links, or alternatively adding a URL to the second slide in the theme customizer if that option exists.
-
Opacity fix via custom CSS: Another solution provides specific code to paste into the theme’s
base.cssfile:
.adaptive_height a.slide-image {
opacity: 1!important;
}
This targets the slide image opacity and forces it to full visibility, which appears to resolve the white overlay issue based on provided before/after screenshots.
- Image editing approach: A third response suggests editing the image file itself using photo editing software to adjust contrast/brightness or remove white areas directly.
The CSS-based solutions address the root cause in the theme code, while the image editing approach treats the symptom. The discussion remains open pending confirmation from the original poster about which solution worked.
