Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 685

1.6.x - Fixing Message Editor (Relative Size)

$
0
0
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

Code:
.messageEditor{
margin:0px;
padding:4px;
}

#message_new{
margin:0px;
padding:4px;
height: 313px !important;
width: 99%;
}

And you are done Wink

Hope this helps.

Viewing all articles
Browse latest Browse all 685

Trending Articles