How to change font?

Here’s what I do:

  • Open Obsidian’s Options menu

  • Select “Appearance” tab

  • Under CSS Snippets, select “Open snippets folder” icon

  • Create a blank text file in that folder with the suffix “.css” (“My Font.css”, for example)

  • Type the following 4 lines (switch “Times New Roman” to any font you wish) (use regular single quotes, not the fancy quotes this forum software corrects it to):

    {
    font-family: 'Times New Roman', serif !important;
    }
  • Save the file

  • Back in Obsidian, click the “Reload snippets” icon

  • Now you can activate your font setting (snippet) for any theme!

15 Likes