Quote:
Originally Posted by juggledad
go to MTO->CSS Settings->Add Google Fonts and blank out the google font and hit save
|
When I do this.. now it only loads in the pre-switch font..
Is it possible to have it
only load in the default font only.. without a switch
The default <h> font is..
Code:
h1, h2, h3, h4, h5, h6 {
font-family: 'Yanone Kaffeesatz', sans-serif;
font-weight: normal;
margin: 20px 0 10px 0;
}
EDIT:
I removed the Google Font code like you suggested.. and added the following code into the header, it seems it may have fixed it
Code:
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Yanone+Kaffeesatz:400,200:latin' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})(); </script>
<script type="text/javascript">
I don't always experience the issue I was having, so I don't know if this issue is 100% resolved yet..
If I see it in the future, I'll come back..
or..
if there are alternative solutions available, I'd be willing to try them in the mean time