Forum Discussion
BarMazuz
9 months agoCommunity Member
Change color of the Navigation Bar / Sidebar in the modern player
Hello everyone Dealing with the modern player in the Storyline 360. Does anyone manage to change the color of the navigation bar only without the whole player background? (in the css file, I fou...
Nedim
9 months agoCommunity Member
This should change the list items text color in the navigation.const listItems = document.querySelectorAll('.listitem');
listItems.forEach(function(item) {
item.style.color = '#f5f5f5';
});