Reputation: 388
I've recently applied the Arimo font from Google Web Fonts. On almost all modern browsers it looks normally but in Konqueror (KDE 4.10.1) all fonts are bold and italic.
Are there any hacks, or solutions to prevent this behavior?
My <link>
to the font is:
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Arimo:400,700,400italic,700italic&subset=latin,latin-ext">
Upvotes: 0
Views: 178
Reputation: 2941
Just externally define font-style: normal !important;
and font-weight: normal !important;
in the css where you are seeing them bold
and italic
in Konqueror
. So it will behave same in all the browsers.
Upvotes: 1