Forum Discussion
BennyKurniawan-
7 years agoCommunity Member
Can we change background color in Modern Player - Storyline 360
Modern Player in Storyline 360 looks great. We would like to use it. But unfortunately, the courses have to conform to brand standards. Is there a way to change to background color instead of just d...
DavidCrocker
Community Member
Ok i thought I would share where I have gotten to with jquery. I have been able to change the player colour with these commands in a javascript trigger:
$(".top-ui-bg").css("background-color", "#005E78");
$(".area-primary").css("background-color", "#005E78")
The hex numbers can be whatever you need.
This command will change the background of the slide area in the palyer:
$(".cs-slide-container").css("background-color", "#005E78")
There is still a bit to workout. The side bars for instance and the text/icon colours.
Here is an example
https://360.articulate.com/review/content/42e2228e-e6d6-481b-9d37-90d56919325f/review
Jean-Guy-Boulay
7 years agoCommunity Member
Your a God among the community David!