merging the two button rows in the rich text editor

Admin CP -> Appearance -> Templates -> EXTRA.css

Add this:

Code:
.mceToolbar
{
display: inline !important;
}

Awesome, dunno why i never thought of doing this before. (y)

edit: Excellent work Jake, yet again.

For those with fixed styles and want to do the same you may notice some icons being cut and not displaying. what I did to display the last icon was lower the width of the fontfamily/size dropdowns.

Code:
.mceToolbar
{
   display: inline !important;
 
}
    .xenForoSkin .mceListBox .mceText {
     width: 60px !important;
}

tinymce.webp
 
For those with fixed styles and are using this you'll notice in the conversation area the editor is broken. It's not a great solution but it's one I'm prepared to make myself by removing the sidebar within conversations.The only pitfall to this is the participants block if you happen to have more 3 or more people in conversations.

Code:
.conversation_view .sidebar {
    display: none;
}
.conversation_view .mainContent {
    margin-right: 0;
}
 
Top Bottom