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:
A user working with the Baseline theme needs to change tab content text color from black to light grey on their preview site.
Initial Solutions Offered:
.text-scheme-text CSS class through theme color customization settings#000 (though this appears to be black, not grey)User’s Constraint:
The original poster wants to change only the tab content color without affecting other parts of the website and prefers not to use the theme customizer.
Technical Solution Provided:
A detailed approach was shared:
theme.min.css in Assets folder.collapsible-tab .rte p with color #d98989 at the bottom of the fileThe discussion includes code snippets and screenshot references to help implement the color change. The conversation remains open as the user hasn’t confirmed whether the solution worked.
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:
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?
.collapsible-tab .rte p {
color: #9d9898;
}