MyBB Community Forums

Full Version: Editor is messed up
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I tried copying the code of the Editor.js from the fresh install of MyBB, yet it's still like that..
[Image: UtKSRdh.png]
I have seen the fix for this in the user submitted tutorials forum. I would link but I am on my phone. Do a search and I am sure that you will find it, I honestly have seen it.
It occurs if you apply higher padding in textarea. There are several fixes for this.

1. Reduce padding for textarea from global.css.
2. http://community.mybb.com/thread-75337.html
3. The one I do is:
Find all the exitor instances in templates.
Replace this:
 rows="20" cols="70"
with this:
style="width: 100%; height: 300px;"