Serif Font for Lyrics

Description

Use this snippet to display lyrics using a serif font.

Screenshots

Code

.lyrics-page {
  font-family: Georgia, "Times New Roman", Times, serif;
}

Any way to change the font on the setlist and performance views?

Sure! For performance, you can use this:

.performance {
  font-family: Georgia, "Times New Roman", Times, serif;
}

And for setlist, you can use this:

.setlist {
  font-family: Georgia, "Times New Roman", Times, serif;
}

I hope this helps!

1 Like