Tagged: full screen slider
I am using the full screen slider shortcode and want to change the H2 font to Kaushan Script (Google webfont).
How can I do this?
<link href=’http://fonts.googleapis.com/css?family=Kaushan+Script’ rel=’stylesheet’ type=’text/css’>
Hey GreenAppleWebs!
You will first need to include that font into your theme either using a plugin (the best method) or by adding the code you’ve pasted above in the header.php file as the google font site loosely outlines.
Then add the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
.av_fullscreen .avia-caption-title {
font-family: arial;
}
Replace “arial” with the font name.
Cheers!
Devin
Thanks Devin!
It’s working great.