MyBB Community Forums

Full Version: Message box
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I widen the add message box? Some of my button options are not showing up because its smaller after I added the hide hack button.
SO i will suppose you are refering to the box in the new thread and new reply page

In Admin CP> Templates > Modify / Delete > Expand > New thread templates > newthread

Find
<textarea name="message" id="message" rows="20" cols="70" tabindex="2">{$message}</textarea>

Change the cols from 70 to another suitable number you find.

Same in the newreply template

regards
Thank Zaher. Puşt.
zaher1988 Wrote:SO i will suppose you are refering to the box in the new thread and new reply page

In Admin CP> Templates > Modify / Delete > Expand > New thread templates > newthread

Find
<textarea name="message" id="message" rows="20" cols="70" tabindex="2">{$message}</textarea>

Change the cols from 70 to another suitable number you find.

Same in the newreply template

regards


Thank you very much for the help Smile
You can do something like:
<textarea name="message" id="message" rows="20" cols="70" tabindex="2" style="width:90%">{$message}</textarea>
That way the textbox will have a 'liquid' width.