MyBB Community Forums

Full Version: Make New Posts link bold?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I looked in header_welcomeblock_member to make the View New Posts link bolded, just like the User CP link is bolded. I noticed the User CP link uses a <strong> code. So using it as a model, I tried to add a <strong> and </strong> to the newposts statement. I tried doing this more than one way, but I can't get this to work.

Here's the unmodified code. Can someone show me how to get the result I want.

<a href="{$mybb->settings['bburl']}/search.php?action=getnew">{$lang->welcome_newposts}</a> 
Try this;

<a href="{$mybb->settings['bburl']}/search.php?action=getnew"><b>{$lang->welcome_newposts}</b></a>
(2010-12-01, 07:05 AM)Yaldaram Wrote: [ -> ]Try this;

Thanks! It worked!