PDA

View Full Version : Username in bold (Memberlist)


Aotw
10-05-2006, 05:34 PM
In the process of making a style and want the username to be in bold on memberlist, but cant find the right way to do it, been testing somte things in the memberlist template but no luck. Hope to get some help here?

Currently running 3.6.1.

bairy
10-05-2006, 09:47 PM
AdminCP > Usergroups > Usergroup Manager > Edit Administrators (/whichever group) > Username HTML Markup
First box is opening tag, second is closing.

For bold you can use <strong> </strong> or <b> </b> (depreciated but still works), or css is <span style="font-weight:bold"> </span>

That style will be shown everywhere that the username is shown.

ericgtr
10-07-2006, 12:58 PM
If you wanted it only for the memberlist, here's how.

In template memberlist_resultbit find:

<a href="member.php?$session[sessionurl]u=$userinfo[userid]">$userinfo[musername]</a>


and replace with:

<a href="member.php?$session[sessionurl]u=$userinfo[userid]"><strong>$userinfo[musername]</strong></a>


:)

Aotw
10-07-2006, 01:07 PM
Thanks :D