Okay
  Public Ticket #2950821
Changing the Site Title font
Closed

Comments

  • Richard started the conversation

    Hi! I'm trying to change the size and typeface of my site title, but it seems to share the 'body' text properties, so it has to be a small, lower-case title. Otherwise all my body text will be big and bold!
    I've tried custom CSS like this, but it doesn't change the title at all: Any suggestions?

    .site-title {    font-size: 5.2rem;    font-family: "Staatliches", Serif;
    }
  • Richard replied

    fixed it! I fiddled around looking at the source in Chrome and saw the property 'classic menu' attached to the text, so tried this and it worked.


    .classic-menu a {
        font-family: Staatliches;
        font-size: 2.3rem;
    }