Hello list,
In my experience, I have had better success loading fonts via adding a class of 
the font vs. a font-family declaration in the css for that element.

Where...

<p id="info">Some Text</p>
#info { width:100%;font-family: NewsGothicMT,"News Gothic MT", Arial, Geneva, 
sans-serif; font-style: normal;font-weight: normal;}

... doesn't load as well/consistently as...

.NewsGothicMT {
 font-family: NewsGothicMT,"News Gothic MT", Arial, Geneva, sans-serif;
 font-style: normal;
 font-weight: normal;
}
#info { width:100%; }
<p id="info" class="NewsGothicMT">Some Text</p>

Has anyone else experienced the same?

Best,

Karl DeSaulniers
Design Drumm
http://designdrumm.com <http://designdrumm.com/>




______________________________________________________________________
css-discuss [css-d@css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to