Change background color on slideshow images in Craft Theme

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.css file
  • Target the .slideshow-component .slideshow__slide selector
  • 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.

Summarized with AI on November 10. AI used: claude-sonnet-4-5-20250929.

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;
}