How to change only the text's color on the video and image slide to white

Topic summary

A user needs to change text color from black to white on video and image slides in their Shopify store.

Solution provided:

  • Navigate to Online Store → Theme → Edit code
  • Locate the theme’s critical.css or custom.css file
  • Add CSS targeting .section--slideshow h2 with color: #fff;

Follow-up request:
The original poster asked how to additionally change:

  1. Overlay text color to white
  2. Description text color to white

Updated solution:
Expand the CSS rule to include .section--slideshow h2, .section--slideshow p with the same white color property.

Note: Some text in the conversation appears corrupted or reversed, but the technical guidance involves standard CSS color modifications for slideshow elements.

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

Hi,

I want to change only the text’s color on the video and image slide, which is black, to white.

our domain is : https://116df7-a4.myshopify.com/

Thanks!

Hello @KimKimKimKim ,

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your theme–critical.css or custom.css file and paste the following code at the bottom:

.section--slideshow h2 {
    color: #fff;
}

Thanks

1 Like

Thanks!

Once again, can I ask how to change 1) the overline text and 2) the description text to white?

1 Like

Update previous css with this one

.section--slideshow h2, .section--slideshow p {
    color: #fff;
}
1 Like