MyBB Community Forums

Full Version: Bolding new thread
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello - when a user browses a forum where it lists all of the threads, how do I make the new threads or new posts be shown in bold?

We're going to switch themes soon. I've tried editting forumdisplay_newthread and placing either <b> or <strong> tags around it but with no luck.
According to this site's code, edit your '.subject_new' class in the global.css stylesheet and change the font weight to bold.
Will try, thanks.

Edit: No it already says bold for some reason. Included is a screeny.
[Image: nl1pgm.jpg]
Default theme / Default CSS

What theme do you have?
Fresh Red by MyBBDesign. Can't find link...
Templates & Styles > Templates > Fresh Red Templates > Forum Display > forumdisplay_thread

Find (Line 6):
class="{$inline_edit_class}"
Replace with:
class="{$inline_edit_class} {$new_class}"

Wink
^ That would be the answer (missing variables will do that).
Great! I'll add the variable as soon as I can. Thank you both Smile
It works! I appreciate the help.