RCIX
RCIX

Reputation: 39437

Replace one font with another in Chrome?

So, for a touch of context, most of the web uses aliased Gulim as their Korean font of choice - see a comparison between that and antialiased/hinted Nanum Gothic here:

Unhinted gulim vs hinted nanumgothic

The former is rather painful to look at, so I'd like to replace used instances of Gulim with Nanum Gothic (via JS through user scripts, CSS through Stylish, or whatever other method would be effective). Things I've tried:

Enabling font smoothing on Gulim would be an acceptable but not ideal solution. Since a massive shift in the use of Korean font choices is outside the scope of my skills, any suggestions as to how I can solve this from a consumer's perspective?

Upvotes: 3

Views: 870

Answers (1)

Maltir
Maltir

Reputation: 64

When I need to really change a font with a new one on the hard way in Css:

@font-face {
   font-family: 'MyFontName';
   font-weight: normal;
   font-style: normal;
   src: url("./myFont.file"); /*this can be an url*/
}
body{
   font-family: 'MyFontName';
}

Upvotes: 1

Related Questions