Iām trying to change the color of the header titles (General, Membrane Deck, Nuraspike, Shipping, Returns etc). How do I do that?
I have the Broadcast theme.
Here is the URL: https://8327f8.myshopify.com/pages/faqs
A user with the Broadcast theme needs to change the color of header titles in their sidebar (General, Membrane Deck, Nuraspike, Shipping, Returns, etc.).
Solutions Provided:
ZenoPageBuilder suggested adding CSS code to the theme.css file:
h6.section-sidebar__title { color: #ff0 !important; } at the bottomPageFly-Richard offered an alternative approach:
.button_widget__link { color: red !important; } in the theme CSSResolution:
The original poster confirmed the solution worked successfully.
Iām trying to change the color of the header titles (General, Membrane Deck, Nuraspike, Shipping, Returns etc). How do I do that?
I have the Broadcast theme.
Here is the URL: https://8327f8.myshopify.com/pages/faqs
Hello @jinuralite
Inside Shopify Admin, go to Edit theme code, open file theme.css and add this code at the bottom
h6.section-sidebar__title {
color: #ff0000 !important;
}
The result
Make sure to change color value as you need.
Hi @jinuralite
This is Richard from PageFly - Shopify Page Builder App, Iād like to suggest this idea:
Online Store ->Theme ->Edit code
Assets ->Theme.css
button.widget__link {
color: red !important;
}
Hope you find my answer helpful!
Best regards,
Richard | PageFly
Thank you that worked!