Remove the song duration from setlist view in canvas?

Hey, another idea from my side:

Any option to remove the display of the song duration in setlist (in the Canvas template…)?

During live show, I do not need the song-specific duration in the setlist/canvas view, instead I would appreciate a bit more “room” to display the song names (they split in two lines quite easily and eat up quite a bit of room that way).

Hey Sebastian!

Yes, you can hide the song duration in the Canvas setlist using a small CSS override.

  1. In AbleSet, go to Settings → Show Custom Styles to open yourstyles.css.

  2. Add this at the end of the file:

    .element-setlist .duration,
    .element-setlist .duration .total {
        display: none !important;
    }
    
    
  3. Save the file and refresh the Canvas in your browser.

This removes the duration column for the setlist inside the Canvas.

Let me know if this helps!

Works perfectly - thanks a lot, very helpful as always! :grinning_face:

1 Like