Display next song in lyrics view at top of song / during song

Hey All,

Is there a way to have the “next song” showing in lyrics view, have it always on… Like sticky to the bottom of the page / can be seen through out the whole song not just at the end…

Cheers
T

Hey @Trent_Crawford,

You can do this using custom CSS if you like. The simplest solution would be:

.line.nextSong {
  position: fixed;
  bottom: 0;
}

The line will likely be hidden behind the fade at the bottom of the text, but you can disable that by adding the [nofade] attribute to your lyrics track.

Alternatively, if you’re working with the AbleSet 3 beta, you could create your own custom canvas and add a lyrics view along with a label that shows the next song.

Let me know if this helps :slight_smile:

Hey Leo,

This works, but… Is there a way i can have the label on the right hand side of screen so it doesn;t cover bottom line of lyrics? AND… Am i able to control the BG color of the button, or have no BG color for it?

Am looking forward to getting into Canvas when i get some time to set it up. Looks fantastic.