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!
A user needs to change text color from black to white on video and image slides in their Shopify store.
Solution provided:
.section--slideshow h2 with color: #fff;Follow-up request:
The original poster asked how to additionally change:
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.
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:
Go to Online Store → Theme → Edit code
Open your theme–critical.css or custom.css file and paste the following code at the bottom:
.section--slideshow h2 {
color: #fff;
}
Thanks
Thanks!
Once again, can I ask how to change 1) the overline text and 2) the description text to white?
Update previous css with this one
.section--slideshow h2, .section--slideshow p {
color: #fff;
}