MyBB Community Forums

Full Version: Compose Private Message Page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What template can I change the width of the box you write a message in Private Message?

The Compose a private message.
ACP → Templates & Style → Templates → [YOUR_NAME] Templates → Private Messaging Templates → private_send
search:
<textarea name="message" id="message" rows="20" cols="70" tabindex="4" ">{$message}</textarea>
and add style="width: Xpx; (You can also %)

now (for example):
<textarea name="message" id="message" rows="20" cols="70" tabindex="4" style="width: 70%;">{$message}</textarea>
tried but would not work for me.