Hello! Can anyone guide me to where I can change the color of the currently orange “Elev8tion Gear” on this homepage (https://www.elev8tionfitness.com/)? I would like to make it black. I am not sure where in the code to make this change as I do not have the option to edit within Shopify’s customization.
Topic summary
A user seeks help changing the color of an orange “Elev8tion Gear” slider heading on their Shopify homepage to black, as they cannot find the customization option in Shopify’s interface.
Solution provided:
- Navigate to Online Store → Theme → Edit code
- Open Asset → section-attributes.css
- Add CSS code at the bottom of the file:
.slider-home.title {
color: #000; /* change colors as you like */
}
Outcome: The original poster confirmed the solution worked successfully.
1 Like
yes, please try this code
- Go to Online Store->Theme->Edit code
- Asset->/section-attributes.css ->paste below code at the bottom of the file.
.slider-home .title {
color: #000 /* change colors as you like */;
}
1 Like
Thank you so much!