Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

TinyMCE 4.0.8 icons not displaying in OSX Firefox

  • 2 replies
  • 13 have this problem
  • 1 view
  • Last reply by cor-el

more options

I am building a system that uses the latest version of TinyMCE 4.0.8. When viewing the page in ALL other browsers (even IE) and also Firefox on a PC the icons for formatting text show up perfectly. However, when I view the same page on my Mac running OSX 10.6.8 and Firefox 23.0.1 these icons do not show up.

I have tried updating my Firefox but your site says that I am already using the most recent version.

Most of our company who are going to use this system are using Macs with Firefox as a browser so this problem is going to effect everyone.

I will look forward to any help you can offer on this matter.

Regards

Paul

I am building a system that uses the latest version of TinyMCE 4.0.8. When viewing the page in ALL other browsers (even IE) and also Firefox on a PC the icons for formatting text show up perfectly. However, when I view the same page on my Mac running OSX 10.6.8 and Firefox 23.0.1 these icons do not show up. I have tried updating my Firefox but your site says that I am already using the most recent version. Most of our company who are going to use this system are using Macs with Firefox as a browser so this problem is going to effect everyone. I will look forward to any help you can offer on this matter. Regards Paul

All Replies (2)

more options

It seems TinyMCE uses a downloaded font to render those icons. In the style sheet served on Windows, I have:

@font-face{
  font-family:'tinymce';
  src:url('fonts/icomoon.eot');
  src:url('fonts/icomoon.eot?#iefix') format('embedded-opentype'),url('fonts/icomoon.svg#icomoon') format('svg'),url('fonts/icomoon.woff') format('woff'),url('fonts/icomoon.ttf') format('truetype');
  font-weight:normal;
  font-style:normal
}

If you open the Browser Console (Cmd + Shift+ j), click Clear, then reload the page, do you find any entries for Firefox trying to retrieve any of those font files? You can use the filter box in the upper right corner and enter ico to drill down to the relevant entry(ies) if any.

(Edited to add second screen shot)

Modified by jscher2000 - Support Volunteer

more options

Make sure that you allow pages to choose their own fonts.

  • Firefox > Preferences > Content : Fonts & Colors > Advanced: [X] "Allow pages to choose their own fonts, instead of my selections above"

Modified by cor-el