MyBB Community Forums

Full Version: Posting Textarea
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
http://img338.imageshack.us/img338/3987/textboxf.png

It seems 90% of themes/installations have this problem. Any idea how to fix it or what causes it? The textarea is mis-sized compared to the editor. I am using Afresh Chocolate on the latest MyBB installation at http://www.runeknow.com/forum/
What browser are you using and can you post a test account.
Some browsers just display it differently. Either use the Office 2007 editor in the theme settings or edit the newreply/newthread/editpost templates and increase the number of columns or decrease the number of rows in the textarea.
I already tried changing the rows before.

Also I have seen this in Chrome and Firefox. I might switch to that editor, but TBH, I'm a MS word 2003 fan. Toungue

Test account:
Username: Reviewer
Password: 123456

P.S. the 2007 editor is messed up too.
Ok, I *think* this will work, open the ./jscripts/editor.js file and find:
textInput.style.height = parseInt(areaContainer.style.height)+"px";
textInput.style.width = parseInt(areaContainer.style.width)+"px";
comment out these lines (by adding // at the start of the line) then add this below them:
textInput.style.height = "270px";
textInput.style.width = "438px";
I changed the rows/cols and mine is perfect:
[attachment=17816]
Where are the templates for changing rows/columns? Smile
newthread, newreply and editpost.
... yeah, but which template set are they in? Big Grin
New thread templates, new reply templates, and edit post templates respectively
Pages: 1 2 3