Change the colour of the tabs content

Hi, I need to change the colour of the content of the tabs and turn it into a lighter Grey instead of a Black.

My website is not live yet, heres the preview link:

https://nxzjpj39tplzhpap-52766113982.shopifypreview.com

1 Like

Hello @DaniCollantes

Which Theme you are using?

Current CSS - You can change from theme color customise settings

.text-scheme-text {
  color: var(--color-scheme-text);
}

or Use (If you don't know how to change from the Customise)

.text-scheme-text {
  color: #000 !important;
}

Thank You

I’m using Baseline, I want to change them without changing other parts of the website, where can i write the code?

Hi @DaniCollantes

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.min.css and paste this at the bottom of the file:
.collapsible-tab .rte p {
color: #9d9898;
}

1 Like