Forum Discussion

CaseyFoster-ece's avatar
CaseyFoster-ece
Community Member
4 years ago

Storyline 360 Classic Player HTML Editing

Hello!

My organization is trying to manipulated the HTML of the classic Storyline 360 player in a published LMS project and are having trouble locating the exact code we need to manipulate. Has anyone come across something like this or is able to point us in the right direction?

I have attached a picture to this post displaying the exact piece of the player we are looking at.

Thank you!

  • If this is a button that you added to the Topbar Right, it most likely has an id of:

    link-right-0

    I don't know what you want to do it.

    You can manipulate the button using some css.

    For example: you could open up the output.min.css file in a text editor. (I like using a program called Sublime Text)

    At the bottom of the file adding this code will turn the button red.

    #link-right-0 {
      color: #ff0000;
    }

     

  • On a mobile device, the id of that button becomes:

    link-0

    So if you want to change both the desktop and mobile button to red use:

    #link-right-0, #link-0 {
      color: #ff0000;
    }