Hi Ivan
With the latest release (and recent internal builds) I have noticed that the navigation font being displayed in chrome is quite different to that of IE. Chrome seems to be a somewhat bold while IE is a fairly skinny one. Attached image showsIE rendering on left and Chrome on right.
Is Chrome rendering it with Roboto while IE isn't? I've tried to use the css property browsers but they aren't telling me what the actual font being rendered is :(
Regards
Jon
4 Answers, 1 is accepted
Initially, we load only WOFF2 fonts from Google servers and those unfortunately are not supported in IE browsers. For R2 release, we'll include WOFF fonts which work on IE9-11 and EOT font which works on IE8.
Regards,
Ivan Zhekov
Telerik
Hi Ivan,
Ah got you, I use Icomoon to generate a custom font and it does all the font types, the difference in size between WOFF and WOFF2 is massive so I can't say I blame you on that. Shame that IE persists in being a retrograde browser (consistent if nothing else!).
I presume that I could just use the font manually then? If so which one is it as there are a lot of variants?
Regards
Jon
the following snippet is directly from our stylesheets:
@font-face {
font-family
:
'Roboto'
;
font-style
:
normal
;
font-weight
:
400
;
src
:
url
(https://fonts.gstatic.com/s/roboto/v
15
/
5
YB-ifwqHP
20
Yn
46
l_BDhA.eot);
src
:
local
(
'Roboto'
),
local
(
'Roboto-Regular'
),
url
(https://fonts.gstatic.com/s/roboto/v
15
/
2
UX
7
WLTfW
3
W
8
TclTUvlFyQ.woff)
format
(
'woff'
),
url
(https://fonts.gstatic.com/s/roboto/v
15
/CWB
0
XYA
8
bzo
0
kSThX
0
UTuA.woff
2
)
format
(
'woff2'
);
unicode-range
: U+
0000
-00
FF, U+
0131
, U+
0152
-0153
, U+
02
C
6
, U+
02
DA, U+
02
DC, U+
2000
-206
F, U+
2074
, U+
20
AC, U+
2212
, U+
2215
, U+E
0
FF, U+EFFD, U+F
000
;
}
@font-face {
font-family
:
'Roboto'
;
font-style
:
normal
;
font-weight
:
500
;
src
:
url
(http://fonts.gstatic.com/s/roboto/v
15
/RxZJdnzeo
3
R
5
zSexge
8
UUfY
6323
mHUZFJMgTvxaG
2
iE.eot);
src
:
local
(
'Roboto Medium'
),
local
(
'Roboto-Medium'
),
url
(https://fonts.gstatic.com/s/roboto/v
15
/RxZJdnzeo
3
R
5
zSexge
8
UUT
8
E
0
i
7
KZn-EPnyo
3
HZu
7
kw.woff)
format
(
'woff'
),
url
(https://fonts.gstatic.com/s/roboto/v
15
/RxZJdnzeo
3
R
5
zSexge
8
UUVtXRa
8
TVwTICgirnJhmVJw.woff
2
)
format
(
'woff2'
);
unicode-range
: U+
0000
-00
FF, U+
0131
, U+
0152
-0153
, U+
02
C
6
, U+
02
DA, U+
02
DC, U+
2000
-206
F, U+
2074
, U+
20
AC, U+
2212
, U+
2215
, U+E
0
FF, U+EFFD, U+F
000
;
}
I went ahead it to our stylesheets. Unfortunately, it was after this week's internal build, but you can download next week's internal build. If the end result is satisfactory to you, you can use the snippet above as a temporary solution. Just don't forget to remove it once R2 is out.
Regards,
Ivan Zhekov
Telerik
Thanks very much Ivan. That works very well, such a visual improvement :)
Best Regards
Jon