MyBB Community Forums
Make New Message Thread Titles Bold - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Extensions (https://community.mybb.com/forum-201.html)
+--- Forum: Plugins (https://community.mybb.com/forum-73.html)
+---- Forum: Plugin Requests (https://community.mybb.com/forum-65.html)
+---- Thread: Make New Message Thread Titles Bold (/thread-24368.html)



Make New Message Thread Titles Bold - Gene Steinberg - 2007-09-30

Now maybe there's a mod that does this already (in which case thank you), but is there any way to list the titles of new threads bold, as is done in vBulletin?

I was not able to find an answer or solution in this board via searches.


RE: Make New Message Thread Titles Bold - LeX- - 2007-09-30

Possible Solution:

Open forumdisplay.php [ Don't Use Notepad ]

Find
			$folder_label .= $lang->icon_new;

Add Below
			$thread['subject'] = "<strong>{$thread['subject']}</strong>";



RE: Make New Message Thread Titles Bold - Gene Steinberg - 2007-09-30

LeX- Wrote:Possible Solution:

Open forumdisplay.php [ Don't Use Notepad ]

Find
			$folder_label .= $lang->icon_new;

Add Below
			$thread['subject'] = "<strong>{$thread['subject']}</strong>";


Smile

Thanks.