-
Notifications
You must be signed in to change notification settings - Fork 40
How to fix bad fonts
Feodor2 edited this page Aug 18, 2024
·
1 revision
Some sites set bad and ugly fonts, or fonts that look bad on winxp only. This is the tour how to fix
Right click on the bad font and choose Inspect element
Close the browser, open the profile folder and look for the chrome folder inside, if it is no such folder then create it, There is a file UserContent.css, create it if not exists. Add to the file this below, set font-family and size values you want and save the file. Then launch the browser and see changes.
@-moz-document domain("spacesimcentral.com") {
.entry-content {font-family: Verdana !important;
font-size: 150% !important;
}
}
@-moz-document domain("www.eso.org") {
.news-teaser {font-family: Arial !important;
font-size: 120% !important;
}
}