Font Issues
-
Earlier today I posted about an issue I was having with fonts.
First – 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 the bottom of my child’s theme css
body {
font-family: Arial, Helvetica, sans-serif!important;
}Everything seemed to okay, however, when I look at it in firebug (font-family: Arial, Helvetica, sans-serif!important;) has a line through it as though it is not functional.
I’m curious as to why the discrepancy.
It works but firebug reports it as not working.
Weird…
- The topic ‘Font Issues’ is closed to new replies.