Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):
div[data-style="minimal"] .toggle > .toggle-title a {
color: #fff !important;
}
This resolved the original issue, however the heading now does not change to the accent colour when toggled, nor show any hover effect. For anyone who needs a fix to this, simply remove the !important @ line 2 as shown below.
div[data-style="minimal"] .toggle > .toggle-title a {
color: #fff ;
}
I am trying to change the colour of the heading of an untoggled option. Currently the black on the dark background is illegible.
Attached files: sales.png
I have tried editing the page css with:
.toggle-heading h3 {
color: #fffff;
}
but no success.
Hey Michael ,
Thanks for using Salient.
Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):
Thanks
ThemeNectar Support Team
Hey Tahir,
Thanks for your response!
This resolved the original issue, however the heading now does not change to the accent colour when toggled, nor show any hover effect. For anyone who needs a fix to this, simply remove the !important @ line 2 as shown below.
Hello Michael,
Thanks for pointing this out. it will be helpful for similar cases.
Thanks.