Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
TinyMCE Extention doesn't work for IE
I'm using TinyMCE extention but some how its working fine on Firefox but if i access the site by IE it doesn't work. Does TinyMCE works only with Firefox ?
0
This discussion has been closed.
Comments
check this example. see if it works in IE
You need to add
content_css : "/url/to/mycontent.css"
with rules in mycontent.css, that look like that if you are using the default style of vanilla:
body { font-family:'Trebuchet MS', 'Verdana', 'Tahoma', 'Arial', sans-serif; font-size:13px; color:#000; margin: 10px; line-height: 150%; } code { border-left: 6px solid #FFFFAA; background: #FFFFEE; padding: 8px; padding-left: 16px; display: block; white-space: pre; } ...
check this example. see if it works in IE
Does not work in Safari either although Firefox plays well, albeit very slowly.
... content_css : "'. $Context->Configuration['WEB_ROOT'].'extensions/WYSIWYGeditor/styleContent.css' .'", ...
Could you please help me fix it?
EDIT:
Fixed the big gap problem by altering vanilla.css (removed width and float properties from #Discussions)
EDIT2:
Found this in the source:
<body id="DiscussionsPage" ><div id="Session">Zalogowany jako l!pa (<a href="/people.php?PostBackAction=SignOutNow">Wyloguj siÄ™</a>)</div><b></b><div id="Header">
I think the blank < b >< /b > tag causes the whitespace to appear. Does anyone know how to get rid of this?
---> I removed it, but it didn't fix the problem
FINAL IDEA:
Didn't want to do it this way, but I'm out of ideas:
* html #Header { margin-top: -20px; } /*style for IE*/
...and it works