• Resolved macindoe1

    (@macindoe1)


    I was able to change the font on my Title (although in come situations it is in all caps), but I can’t figure out how to do the Tagline. Is is called something else in the CSS?

Viewing 1 replies (of 1 total)
  • Theme Author Shaped Pixels

    (@shaped-pixels)

    Greetings…. yes, the class for the tagline is:

    .site-description ()

    To change a font to normal case, which you mentioned in some situtations it’s uppercase), is due to media queries set in the theme. The default styling is:

    @media (min-width: 68em) {
    .site-title {
        line-height: 1.2;
        text-transform: uppercase;
    }
    }

    So you will want to change the text-transform: uppercase; to text-transform: none;

Viewing 1 replies (of 1 total)

The topic ‘Tagline Font’ is closed to new replies.