Text/fonts screwed up in FF

FF 78.12.0esr (64-bit) on Mac.

The other day, I think Aug 1st, some texts on some sites are completely whacky in FF. Not problems in e.g. Chrome or Safari. Never, ever before in FF either.

Just minutes prior to noticing this, I installed a language add-on to Thunderbird and thought it might be that who caused the issue. Asked in the TB forum here and was told that it’s not so.

I hadn’t installed anything, or changed any settings, in FF before this happened.

See attached screenshot: The first from Chrome showing the post I made in the TB forum. The second is from FF, the same post.

Oh, and it’s not at all just the Moz forum that’s screwed up in FF. It’s random sites.

This can be caused by incompatibility with your graphics card/chipset driver software. Could you experiment with the Hardware Acceleration setting:

https://support.mozilla.org/kb/performance-settings

That takes effect the next time you exit and restart Firefox.

If that doesn’t help, try:

(1) In a new tab, type or paste about:config in the address bar and press Enter/Return. Click the button accepting the risk.

(2) In the search box in the page, type or paste gfx.webrender.force-disabled and pause while the list is filtered

(3) Double-click the preference to switch the value from false (enabled) to true (disabled)

Probably that takes effect the next time you exit and restart Firefox.

Thanks jscher2000,

Regretfully none of your suggestions worked.

However, I managed to save logins, bookmarks and cookies to Chrome. The deleted every file connected to FF, made a new clean install, imported the data from Chrome and now FF works as it should. Likely, something in the FF profile folder had gone bad.

So, now all is good.

Chhers,
Dan

Regretfully, I’ll have to revive this thread. Just now, opened a page (a webshop admin) in FF that used to be screwed up. Looked fine. Clicked a link for another page in the admin, and POOF! It all became a mess as before.

The only letters showing up are T, L and E (in caps). Only number showing up is 4.

There seems to be a problem with Open Sans and perhaps a couple other web fonts in 78.12.0esr on MacOS. Here is the open bug:

I’m not aware of a workaround at the moment. There are methods to override specific fonts using an extension like Stylus or rules in a userContent.css file. As an example:

/*** Replace Open Sans with Arial ***/
@font-face {
  font-family: 'Open Sans';
  src: local('Arial');
}

/* Heavier weights */
@font-face {
  font-family: 'Open Sans'; font-style:normal; font-weight:600;
  src: local('Arial Bold');
}
@font-face {
  font-family: 'Open Sans'; font-style:normal; font-weight:700;
  src: local('Arial Bold');
}
@font-face {
  font-family: 'Open Sans'; font-style:normal; font-weight:800;
  src: local('Arial Bold');
}

/* Italic style */
@font-face {
  font-family: 'Open Sans'; font-style:italic;
  src: local('Arial Italic');
}
@font-face {
  font-family: 'Open Sans'; font-style:italic; font-weight:600;
  src: local('Arial Bold Italic');
}
@font-face {
  font-family: 'Open Sans'; font-style:italic; font-weight:700;
  src: local('Arial Bold Italic');
}
@font-face {
  font-family: 'Open Sans'; font-style:italic; font-weight:800;
  src: local('Arial Bold Italic');
}

You could consider doing that as a temporary measure (of course, replace Arial with anything you prefer).