Font Family Change
-
I disabled the Lato font in TwentyFourteen by adding
// Remove Lato Font
function qot_dequeue_fonts() {
wp_dequeue_style( ‘twentyfourteen-lato’ );
}
add_action( ‘wp_enqueue_scripts’, ‘qot_dequeue_fonts’, 11 );to the bottom of my child’s theme functions.php https://tinyhousereport.com
I then added the following to my child’s theme css
body {
font-family: Georgia, “Times New Roman”, Times, serif!important;
}but it does not change the font family.
What am I missing?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Font Family Change’ is closed to new replies.