How do I change Header color to this sidebar?

Topic summary

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:

    • Navigate to Shopify Admin → Edit theme code → theme.css
    • Add h6.section-sidebar__title { color: #ff0 !important; } at the bottom
    • Customize the color value as needed
    • Included a screenshot showing the result
  • PageFly-Richard offered an alternative approach:

    • Go to Online Store → Theme → Edit code → Assets
    • Modify .button_widget__link { color: red !important; } in the theme CSS

Resolution:
The original poster confirmed the solution worked successfully.

Summarized with AI on November 18. AI used: claude-sonnet-4-5-20250929.

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.

1 Like

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

1 Like

Thank you that worked!