Skip to main content
Russ Lickteig
Inspiring
November 16, 2020
Question

Change cursor when rolling over PLAY button.

  • November 16, 2020
  • 1 reply
  • 166 views

Hi everyone,

 

Is it possible to change the cursor when a user rolls over the PLAY button when starting a course?  I of course have "Include Mouse" selected in the Publish settings.  This turns on mouse cursor cnages in the course itself but a little surpised that it does not turn it on for the PLAY button.  Any ideas?  I would assume this could be changed in the JS file but no idea where to look.

 

Thanks!

    This topic has been closed for replies.

    1 reply

    Russ Lickteig
    Inspiring
    November 16, 2020

    I belive I found a fix.  This is the code within the "CPLiraryAll.CSS" file that is created during Publishing.  

    .autoPlayButton:hover{background:url('../htmlimages/Play_icon.png') no-repeat;width:116px;height:116px;float:left;position:absolute;left:50px;}.
     
    To get the cursor to show up you need to add "cursor:pointer;" to the end of it.
     
    This is the final code: 
    .autoPlayButton:hover{background:url('../htmlimages/Play_icon.png') no-repeat;width:116px;height:116px;float:left;position:absolute;left:50px;cursor:pointer;}