MyBB Community Forums

Full Version: remove RE:"title thread" from each reply and change the layout of the "edited by"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys i need a little help on how i can remove(if possible) the title of the discussion from each reply of the thread.
for example, here:
http://community.mybb.com/thread-80450.html
you can see that each reply have "RE:thread title"; can i remove it? is it inside the themplates?

and another little thing, how can i edit the font/dimension of "edited by username on date" tag that appear when an user edit its post?
Thank you!
In the postbit and/or postbit_classic templates, find and remove:
<span class="smalltext"><strong>{$post['icon']}{$post['subject']} {$post['subject_extra']}</strong></span>

To change the styling of the edited by note:

In the postbit_editedby template, find:
class="smalltext"

Replace with:
class="editedbytext"

Then add this to global.css and customise as desired:
.editedbytext {
font-size: 11px;
font-family: Arial, Sans-Serif;
}