MyBB Community Forums

Full Version: Flatty - Collapse Quick reply
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi Guys

How would I Collapse the Quick reply as default?
Templates & Styles   ›   Flatty Templates   ›   Showthread Templates   ›   showthread_quickreply


..scroll down and replace

<tbody style="{$collapsed['quickreply_e']}" id="quickreply_e">

by

<tbody style="{$collapsed['quickreply_e']}" id="quickreply_e" class="hide">


Next,
Templates & Styles  ›  Themes  ›  Flatty  ›  global.css  ›  Edit Stylesheet: Advanced Mode


..scroll down to the bottom and add the following code:

.hide {
    display: none;
}

Done..