Using a custom font in Sparkling

Hi! I really, really love using Sparkling for my blog freshfamilyfood.com

I’ve been able to modify the CSS to use Archer for my body/widget copy. I’m using the font Headline (http://www.dafont.com/headline-hplhs.font) for my title font.

I’m not sure how to set up that font for my headlines.

Thanks SO much for any help!

It’ll be in the css. By default all the different header sizes have the same style set to them:

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: #DA4453;
  font-weight: 400;
  font-family: 'Pacifico', serif;
}

But you can add an additional styles for h1 (should affect the title) below that and set what font you like:


h1,
.h1 {
  font-size: 28px;
  font-family: 'Pacifico', serif;
}