hi. can you help me to change this font (only in this one heading!) . i want to use the caveat font who comes with enfold here: http://imgur.com/a/7MgGp
Hi!
Please add following code to Quick CSS
.handschrift h1.av-special-heading-tag {
font-family: 'caveat'!important;
}
and then add following code to Functions.php file in Appearance > Editor
add_action('wp_head','ava_caveat');
function ava_caveat() {
?>
<link href="https://fonts.googleapis.com/css?family=Caveat" rel="stylesheet">
<?php
}
Best regards,
Yigit
CLOSED Thank you very much.