MyBB Community Forums

Full Version: How can i make "BOLD" forum topics ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In this picture, you see the topics. But I want to make them BOLD
(like vbulletin)

[Image: i72232_nasilkalinolabilir.JPG]

is that possible ?
Thanks...
I don't know if HTML is supported in thread titles, you could check it out.
destroyer Wrote:I don't know if HTML is supported in thread titles, you could check it out.

No, i want to change settings in admincp or php file (like template.php)
so every thread title is bold...Toungue
Ok,

Open the "forumdisplay_thread" template in the Forum Display template set.

Find:
<a href="showthread.php?tid=$thread[tid]">$thread[subject]</a>
REPLACE WITH
<a href="showthread.php?tid=$thread[tid]"><strong>$thread[subject]</strong></a>
That should do it...
Proodle thanks a lot!
Sorry to bump an old topic but how would you make it so that only new, unread thread titles appeared in bold?
foxtrot_yankee Wrote:Sorry to bump an old topic but how would you make it so that only new, unread thread titles appeared in bold?

Open up forumdisplay.php

Find:
$folder .= "new";
After, Add
$thread['subject'] = "<b>".$thread['subject']."</b>";
Doing what xiaozhu said will work, but it might no longer work after an upgrade. Also, use the "strong" elements instead of the "b" elements.
Thanks guys!