Chaging Font Size doesn't reflect in site

Do I need to do something else in regards to changing the font and the size? I’ve already changed it there. The template is Alto

Thanks

In Ghost v4 / Casper v4, you could just use code-injection:

<style type='text/css'>
  /* Set font-family in one place */
  body {
    font-family: Helvetica, sans-serif;
    font-size: 20px;
  }
  /* Casper posts are serif - do this if you want index and posts to be the same */
  article.post p {
    font-family: inherit;
  }
</style>
1 Like

@alefianta You have to compile the theme for those changes to take effect. Otherwise, and as jeff noted, placing that font-size styling in the code injection will override the aforementioned compiled styles.

1 Like