i want the header banner color to the darker color (2E2B2B). Its white right now. I had it darker on a different designs. I selected the correct color scheme under header but the color isn’t changing.
1 Like
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.banner__heading {
color: #2E2B2B !important;
}
-
And Save.
-
Result:
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
Edit theme code:
3.Put the following code at the end of the file
.banner__heading .inline-richtext h1 {
color: #2E2B2B;
}