I know there is a similar tutorial but mine us using a different approach.
In this case the message editor will always fill the box it is in. Meaning it will go all the way to the right end of the container. This even works when the theme uses different sizes there.
First you will have to edit jscripts/editor.js
Comment out the lines:
171-175, 196, 258,267
Just write // at the start of each of those.
You will need to add this to the global.css
And you are done![Wink Wink]()
Hope this helps.
In this case the message editor will always fill the box it is in. Meaning it will go all the way to the right end of the container. This even works when the theme uses different sizes there.
First you will have to edit jscripts/editor.js
Comment out the lines:
171-175, 196, 258,267
Just write // at the start of each of those.
You will need to add this to the global.css
Code:
.messageEditor{
margin:0px;
padding:4px;
}
#message_new{
margin:0px;
padding:4px;
height: 313px !important;
width: 99%;
}
And you are done

Hope this helps.