Topic summary
A user is seeking help to change the background color of slideshow images in the Craft theme.
Another community member provides a solution:
- Add a CSS property to the
base.cssfile - Target the
.slideshow-component .slideshow__slideselector - Set
background: green;(or customize the color as needed)
The response includes code that appears to be reversed/encoded in the original post but indicates a straightforward CSS customization approach for modifying slideshow background colors.
1 Like
Hi @Ali2410 ,
paste this css property in your base.css file and change color according to your requirement.
slideshow-component .slideshow__slide {
background: green;
}
