MyBB Community Forums

Full Version: Making new threads title bold
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello
How can I make new threads title bold in forumdisplay?
I mean, when a new post send to any forum, its title must be bolded on thread list.
Thank you.
Nice idea!
Hello there

open forumdisplay.php

Find
}
		else
		{
			$folder_label .= $lang->icon_no_new;
		}

Above it add
$thread['subject'] = "<b>".$thread['subject']."</b>";
Or you could go with the standard and use <strong> and </strong> instead of the <b> tag.
It doesn't work.

Please can you find another way?
(I think it's about lastvisit time)
Dejavù :|
It works fine for me.. can i see your code?

regards
zaher1988 Wrote:It works fine for me.. can i see your code?

regards

Here is my code:

[attachment=5459]
This is just the way i have it.
I found my mistake.
The code must be:

$thread['subject'] = "<span style=\"font-weight: bold;\">".$thread['subject']."</span>";

Thank you Zaher1988.