Hello
I’m using the Baseline theme. I want to change the black text on the Hero “Slideshow” and the “Image with text overlay” component to white.
How would I go about doing this?
A user seeks to change black text to white in Shopify’s Baseline theme, specifically on the Hero Slideshow and Image with Text components.
Initial Solution:
base.css targeting .splide__track .font-heading.text-heading-feature with color: white !importantFollow-up Request:
Additional Solutions Provided:
.font-heading with color: #fffNote: Several code snippets and screenshot references appear corrupted or reversed in the original text, but the core CSS approach remains clear: using !important declarations to override default black text styling with white color values.
Hello
I’m using the Baseline theme. I want to change the black text on the Hero “Slideshow” and the “Image with text overlay” component to white.
How would I go about doing this?
This is Noah from PageFly - Shopify Page Builder App
You can change color by add code below to file base.css:
.splide__track .font-heading.text-heading-feature{
color: white !important;
}
// if you want change color button
.splide__track .theme-button{
color: white !important;
}
Hope my solution will help you resolve the issue.
Best regards,
Noah | PageFly
Thank you. That worked. What about the other sections with the black type? Currently, they are the full-width image sections with black text. How would I change the text to white?
Hi @skipsbazaar You mean change color section it to white ?
Hi @skipsbazaar
You can do that by adding this code into Custom CSS in Online Store > Themes > Customize of those sections
.font-heading {
color: #fff;
}
Hi @skipsbazaar You can add code below:
scrolling-items-container scrolling-items scrolling-items-surface{
color: white !important !important;
}