Forum Discussion
LARROQUEFREDERI
2 years agoCommunity Member
Text color "Ressource tab"
Hi there,
I need to change the default color of the 'Resources' tab (only this one) of the Storyline 360 modern player.
Do you know if it's possible (with Java Script for example)?
Thanks !
...
LARROQUEFREDERI
Community Member
(in english, sorry :-))
Thank you very much Jürgen for taking the time to answer me!
I may have expressed myself badly but what I want to do is to change the color of the text of the "Resources" tab of the menu (but not the text of the document for download)
Jürgen_Schoene_
2 years agoCommunity Member
then a script is
if( window.cssPatchResourceButton !== "done") {
style = document.createElement('style');
style.textContent = `
#resources-link {
color: yellow;
}
`
document.body.appendChild(style);
window.cssPatchResourceButton = "done";
console.log("Resourse button patched");
}
https://360.articulate.com/review/content/cfb34d73-26e1-44de-bf60-cedb859c0464/review