Customizing a css tag not available in Studio
All,
How can I change the default color of the spoiler tag on our community? I have been searching thru the css files available to me in Studio and I cannot find where that parameter is set.
CSS Class = lia-spoiler-container-editor
I want to test a few colors on stage if at all possible before deploying to prod. I am interested in seeing how the Spoiler tag looks with one of these three colors:
- #FFFFFF
- #FFFFCC
- #EBF1DD
Should I be adding a class definition in our global.css file or should I be making a change to the Community desktop & mobile skin? Is there a best practice I should be following?
Spoiler Tag sample:
Along with what grazitti said, you should try writing css so that it's specific to that particular link vs changing the color of links throughout the community. You'll need to write something like;
#lia-body .lia-content .lia-spoiler-container a.lia-spoiler-link {color:#FFFFCC;}
Hope that helps