The below edit will change the play button on your video (YouTube, etc) player.
1) Log into your App Manager and select your app.
2) Click Colors from the left-hand-side of the screen (or the middle of the screen).
3) Scroll down to the Advanced SCSS box. If there is already code in the advanced SCSS box, do not remove it. Start a new line “after” the last character in the box, then paste the above code.
YouTube Videos Only
/**BEGIN: CUSTOMIZE YOUTUBE BUTTON ***/
.video-view .sprite {
background-size: 15%;
background-position: 96% 80%;
}
/**END: CUSTOMIZE YOUTUBE BUTTON ***/
All Videos
/**BEGIN: CUSTOMIZE VIDEOS BUTTON ***/
.sprite { background-size: 15%; background-position: 96% 80%; }
/**BEGIN: CUSTOMIZE VIDEOS BUTTON ***/
NOTE: To change the size of your player, you can modify the percentage value of “background-size” with your own value. To change the position, you can modify percentage value of “background-position“. The first percentage of “background-position” is the left gap, the second is the top gap.