Forum Discussion
Change colors and/or hover for the Next and Previous buttons on Player
It's not ideal but a workaround is to change the css output.min.css file. Naturally every time you publish you have to re-apply, you will overwrite your css changes. I make it a part of my release process. Not that big of deal my changes are light.
For example, let's say you want to change the next and previous hover color to neon green and really make it pop. You can try it by publishing your course to web, now inspect the page, on pc hit F12 for developer tools. Inspect element. Now select your next button, that will highlight your element, on the styles pane you will note the which one it is. In my circumstance it was output.min.css:693. What that means is it's the output.min.css file and its line 693. In my case the css was:
body:not(.is-touchable-tablet) .cs-pxabnsnfns10111100101 .cs-button:hover .text {
color: #BABBBA;
}
I changed to:
body:not(.is-touchable-tablet) .cs-pxabnsnfns10111100101 .cs-button:hover .text {
color: #09f332;
}
Hit save and reload. Now hover over next and prev. See that its neon green. You shouldn't need to clear your cache but maaaybe.
Repeat process for discovering your desired elements and change the attributes accordingly.
Andy