MyBB Community Forums

Full Version: BBCode buttons crowded
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Not sure when it happen but it was not always like this.
Looked at EDITOR.JS but cant see anything wrong compared to other forums I have that seem to have buttons spaced right.

The buttons I talk about are just the Justify Text and Insert Numbered List
See how they are too close?
This would most likely be the width of your editor/textbox.

Try going into your templates (AdminCP -> Templates) and edit the respective templates (ie newreply for the page where you make a New Reply). Just increase the width of the message textarea - that should help.
That doesn't seem to be it.I checked 2 boards at once code in that area and hey are the exact same values.Although i can see that the text areas are not the same size.The one with the crowded buttons has a smaller text area.Looked in CSS but see nothing.
There's the possibility that a smaller font-size (or fontface) is causing the browser to size down the textarea.
Try this:
AdminCP -> Themes -> Modify -> (select theme).
Scroll down the the bottom, and at the end of the Additional CSS textbox, add the following:
#message {
 width: 600px;
}

#message_new {
 width: 600px;
}
(tweak the above values if necessary).

See if that helps.