Comments Sherissa started the conversationFebruary 19, 2014 at 1:04amHi, what is the code to isolate the font for the logo text? I would like to specify a font and size. Thank youSherissa repliedFebruary 19, 2014 at 1:07amI've figured out how to change the font size, but not how to specify a google font that's different to the header fonts 1,136ThemeNectar repliedFebruary 20, 2014 at 1:52pmHey,If you're not loading the Google font yet, you must add this into the functions.php filewp_enqueue_style("custom-font", "https://fonts.googleapis.com/css?family=Great+Vibes:400", '', '3.1');then you could call the font like:.element { font-family: 'Great Vibes'!important; }Cheers :) Sign in to reply ...
I've figured out how to change the font size, but not how to specify a google font that's different to the header fonts
Hey,
If you're not loading the Google font yet, you must add this into the functions.php file
wp_enqueue_style("custom-font", "https://fonts.googleapis.com/css?family=Great+Vibes:400", '', '3.1');then you could call the font like:
.element { font-family: 'Great Vibes'!important; }Cheers :)