Reply To: How can i create a child theme that comprehends customizer settings?

Home Forums Support How can i create a child theme that comprehends customizer settings? Reply To: How can i create a child theme that comprehends customizer settings?

Home Forums Support How can i create a child theme that comprehends customizer settings? Reply To: How can i create a child theme that comprehends customizer settings?

#162599
Tom
Lead Developer
Lead Developer

The flash you’re talking about shouldn’t really exist anymore, as modern browsers are getting better at display @font-face.

You would have to add custom programming to an an option to the Customizer and make it actually do something.

Instead, I would just follow the regular instructions for Google Fonts.

Find your Google Font, and then grab the <link href='https://fonts.googleapis.com/css?family=Your+Chosen+Font' rel='stylesheet' type='text/css'> line of code, and add to the wp_head hook in GP Hooks.

Then add a class to your quote, like: my-quote

Then you would add your CSS:

.my-quote {
    font-family: 'My Chosen Font', sans-serif;
}