Reputation: 3442
I am using thebigreason skin for TinyMCE (3.5.8 jQuery package):
http://thebigreason.com/blog/2008/09/29/thebigreason-tinymce-skin
The problem is some of icons don't appear:
I've checked it in the Firebug for the CSS and URL but no problems detected:
( Icons that weren't appear were exist in the icons.png file )
I've removed the browser's cache and checked it in all major browsers but the problem with the same result exists.
Any idea?
Upvotes: 1
Views: 313
Reputation: 3442
I've solved it by removing some of plugins like "advlist". It seems that the skin doesn't support dropdowns for some icons.
You can see that this is the image with advlist: and without it:
And another thing is some of the icons in the icons.png file were missed:
( like highlight text and table controls )
Original TinyMCE: (icons.png)
TheBigReason Skin: (icons.png)
Hope they will solve the issue.
Upvotes: 0
Reputation: 1104
http://www.tinymce.com/tryit/jquery_plugin.php
you must add all tiny mce options this is an example :
tinyMCE.init({ theme_advanced_buttons1 : "separator,insertdate,inserttime,preview,zoom,separator,forecolor,backcolor", theme_advanced_buttons2 : "bullist,numlist,separator,outdent,indent,separator,undo,redo,separator", theme_advanced_buttons3 : "hr,removeformat,visualaid,separator,sub,sup,separator,charmap" });
Upvotes: 2