Quick question about changing the font of the drop cap letter in my wordpress blog

52 Views Asked by At

Quick question about how to make my dang WordPress blog look instantly better than it currently does!

I use Unna font for my headers and Jost font for the body text. I use drop cap for the first paragraph of my blog articles.

Obviously, because I use Jost font for the body font, the drop cap letter is Jost. I want it to be Unna font, instead.

How would I (slash, is it possible) to change the drop cap letter to a different font than the rest of the body’s font? Thanks so much!

1

There are 1 best solutions below

1
Bob Nowak On

It's hard to provide a correct answer since we don't see your code, but you can use something like that:

p::first-letter {
   font-family: 'Unna', sans-serif;
}