Header font color and display

  • Unknown's avatar

    I’m using Baskerville 2 theme and I have two issues:
    1. I need to change the color of the site title an description. I was able to change the description but not the title, perhaps because it’s imbedded in some link code.

    2. When the site loads, I get the old Baskerville 2 default font which them changes to my desired font. Very annoying.

    Thanks in advance,

    don

    The blog I need help with is: (visible only to logged in users)

  • 1. I need to change the color of the site title an description. I was able to change the description but not the title, perhaps because it’s imbedded in some link code.

    You’re right about that! Adding the anchor tag after the Site Title class lets you target it:

    .site-title a {
      color: #000000;
    }

    2. When the site loads, I get the old Baskerville 2 default font which them changes to my desired font. Very annoying.

    On slower connections, we display text in the theme’s default font first. This way, people can start reading your content before the custom font loads, instead of waiting while looking at a blank page. This might mean that there’s a flash of a different font before the page finishes loading, but we think overall this is better for folks on slower connections than seeing a blank screen.

    The CSS snippet above will display a blank screen instead.

    .wf-loading body {
      visibility: hidden;
    }
  • The topic ‘Header font color and display’ is closed to new replies.