If your like me you'd hate for your forums to not look half way decent. If you get sick and tired of looking at this, with the text area all hanging out of the editor, then scroll down.
Then follow these steps below.
Open (jscripts/editor.js)
Find:
Find:
And you should end up with a fixed editor and textarea that looks like this.
You can play around with the height and width to your liking/size. This works and looks the same on IE, Firefox, and Chrome.
Still having problems applying the patch? Download a original copy of editor.js with this patch applied below.
If you like push the button!
-Warmonger
UPDATED FOR 1.6.3!
Then follow these steps below.
Open (jscripts/editor.js)
Find:
// Determine the overall height and width - messy, but works
w = oldTextarea.getDimensions().width+"px";
if(!w || parseInt(w) < 400)
{
w = "400px";
}
if(this.options && this.options.height)
{
h = this.options.height;
}
else if(oldTextarea.offsetHeight)
{
h = oldTextarea.offsetHeight+"px";
}
else if(oldTextarea.clientHeight)
{
h = oldTextarea.clientHeight+"px";
}
else if(oldTextarea.style.height)
{
h = oldTextarea.style.height;
}
else
{
h = "400px";
}
this.editor.style.width = w;
this.editor.style.height = h;
Replace With: // Determine the overall height and width - messy, but works
w = "550px";
h = "300px";
this.editor.style.width = w;
this.editor.style.height = h;
Find:
textInput.style.height = parseInt(areaContainer.style.height)+"px";
textInput.style.width = parseInt(areaContainer.style.width)+"px";
Replace With: textInput.style.height = "229px";
textInput.style.width = "544px";
And you should end up with a fixed editor and textarea that looks like this.
You can play around with the height and width to your liking/size. This works and looks the same on IE, Firefox, and Chrome.
Still having problems applying the patch? Download a original copy of editor.js with this patch applied below.
If you like push the button!
-Warmonger
UPDATED FOR 1.6.3!
2+ Years Cisco Networking
There's no place like 127.0.0.1 except for ::1
<snip - annoying animated thing>
Don't bother, It's inside your monitor!
There's no place like 127.0.0.1 except for ::1
<snip - annoying animated thing>
Don't bother, It's inside your monitor!