• Resolved Pine Siskin Press

    (@pine-siskin-press)


    I would like to change the font of the site title and subtitle in the Fifteen theme, but I can’t find where it is referenced in the .css file. Or is there a line of code I should add to the Custom CSS box under Fifteen Settings?

    Also, is it possible for me to lower the horizontal position of the site title under the Top Menu? I realize the title moves depending on window size and device, but I would like to at least lower the starting horizontal level beneath the Top Menu. My client’s site is http://www.rodgerwriter.com/wp. Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The selector for the site title:

    .site-title a {
        /* add code here */
    }

    For the subtitle:

    .site-description {
        /* add code here */
    }

    And yes you would add that in the Custom CSS box. For lowering the title, try this:

    .site-title {
        margin-top: 40px;
    }

    And you can change 40px to whatever number you’d like (the higher the number, the lower the title will be)

    Thread Starter Pine Siskin Press

    (@pine-siskin-press)

    That did the trick! Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change the font and position of site title?’ is closed to new replies.