• Resolved spikeanded

    (@spikeanded)


    Hello, I can edit the css to alter the font size globally, and independently control the heading size, but I cannot find a way to independently control the size of the site title and tag line, which is currently too small for me.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Hugo Baeta

    (@hugobaeta)

    You can add some custom CSS for it, by targeting the selectors .site-branding h1 and .site-branding h2 respectively. Hope this helps!

    Thread Starter spikeanded

    (@spikeanded)

    Hi thanks, this does help somewhat and I coudl experment with that but being less than fully confident editing the css (my results so far have been more down to luck than judgement) – could you possibly provide the necessary amendments to make the site title and tag line about twice the current size without affecting anything else? What a great theme -I’ve tried many and this is lovely looking and minimalist. Thanks

    Theme Author Hugo Baeta

    (@hugobaeta)

    You can do something like this if you want them both at the same size:

    .site-branding h1,
    .site-branding h2 {
      font-size: 1em;
    }

    or separate the selectors if you want them at different sizes:

    .site-branding h1 {
      font-size: 1em;
    }
    
    .site-branding h2 {
      font-size: 0.8em;
    }

    Remember to do this via some plugin for custom css. Never edit the theme files directly, they’ll get overwritten when there’s a theme update. Jetpack includes a Custom CSS module (you could also get just the css module as a plugin if you don’t want the whole Jetpack).

    Thread Starter spikeanded

    (@spikeanded)

    Thanks that is very useful

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Increase size of Site Title and Tag Line text independently of other text’ is closed to new replies.