Product page - Tabs title & READ MORE color change | Broadcast theme

HEllo,

I am willing to change the color of the tabs title and the read more button

Your help will be super appreciated.

My URL : https://www.ambigoose.com/products/respect-water-cleanser

Thank you

Jon

2 Likes

@JonX

Please add the following code at the bottom of your assets/theme.css file.

ul.tabs.product-tabs-title li {
    color: #f700d3;
}
.tab-content__actions button {
    color: #f700d3;
}

Hope this works.

Thanks!

1 Like

Hello

1.In your Shopify Admin go to online store > themes > actions > edit code
2.Find Asset >theme.scss.css and paste this at the bottom of the file:

li.tab-link.tab-link-0.current {
color: #f700d3!important;
}
li.tab-link.tab-link-1 {
color: #f700d3!important;
}
li.tab-link.tab-link-2 {
color: #f700d3!important;
}
.tab-content__actions {
color: #f700d3!important;
}
1 Like