Is it possible to enlarge the notes font?

I use a system that is “Song Name {G}”

Is there a way to make the font larger and bold for just the text inside the curly brackets?

You can do that using custom styles. To enlarge the font of song notes in the performance view, use the following:

.performance .song-description {
  font-size: 10vmin; /* increase this number to increase the font size */
  font-weight: bold;
}

To do the same in setlist view, you can use the following styles:

.setlist .desc {
  opacity: 1 !important; /* remove this if you don't want the text to be 100% white */
  font-weight: bold;
  font-size: 1em; /* increase this to make the font larger */
}

I hope this helps! :slight_smile:

Perfect! Thanks Leo. :partying_face::+1::hatching_chick:

1 Like