Serif font for Opera?
-
knarf14612 last edited by
How can I install and use "Georgia," a serif font, in Opera? I do not like the sans-serif font I see in all my Opera windows. I have selected "Georgia" in all the available entry-points in Settings, but the Georgia font never appears. How can I arrange it so the Georgia font show on all Opera webpages?
-
burnout426 Volunteer last edited by
The font settings at the URL
opera://settings/fonts
are just for web pages that don't set a font-family for something. They do not override.You could install https://chrome.google.com/webstore/detail/user-javascript-and-css/nbhcbdghjpllgmfilhnhkllmkecfmpld/related for example and add a new rule that matches
https://*/*
for example with this CSS:- {
font-family: Georgia !important;
}
See https://developer.mozilla.org/en-US/docs/Web/CSS/font-family.
There's an options button for a rule in the extension to control the priority and turn on programmable injection. The documentation page for the extensions shows what all that does.
The extension won't affect Opera's UI and won't affect opera:// pages like settings and flags etc. But, it's something.
- {