Zoom/Size of Progress bar - cuts off text too early

Hi!

I am starting to use the scrollable/zoomable progress bar, however it seems to cut off the text quite early. Any chance (–> custom style?) 1) not to cut off the text so early, and 2) make a little line at the border of two sections?

Best,

Sebastian

Hey @Sebastian, you can use CSS to customize this:

/* adds a border between sections */
.element-song-progress .child-marker:not(:last-child) {
  border-right: 1px solid #aaa;
}

.element-song-progress .child-marker .name {
  padding: 0; /* removes all padding around text */
  font-size: 16px; /* adjust this to change the font size */
}

Let me know if this works for you :slight_smile: