I am trying to modify an element <span style="color: darkblue;"> under forumdisplay_usersbrowsing.
I am having problems trying to find it. Where is it located in the templates?
Also where are the template files located on the file system?
Any screenshot or details? how can we identify only single element so better you give us a screenshot and your forum URL.
It is in Forum display templates group of your theme the last two may contain what you are looking for.
It is $user['profilelink']} in forumdisplay_usersbrowsing_user that is causing it.
{$comma}{$user['profilelink']}{$invisiblemark}
I have dug around a bit looking for it with no luck.
I see your screenshot and it tells me what you are trying to find. Head over to your ACP>Users & Groups>Groups> Click the group you want to edit the style and change the style through Username Style box
here it is
![[Image: 1525237543.sae.JPG]](https://camo.mybb.com/9df470e367d9091c4b3974ef2b01ab40b05451ae/687474703a2f2f7777772e66696c6573717569642e6e65742f2f75706c6f6164732f313532353233373534332e7361652e4a5047)
That worked perfectly. Thank you.
I normally recommend creating CSS classes for the different user groups instead of using inline markup.
<span class="MyUserGroup">{username}</span>
Then add the style definition to your theme's
global.css:
span.MyUserGroup {
color: blue;
font-weight: bold;
}
This allows you to theme how your usernames show up instead of creating a style that looks good in all themes. Obviously you would change
MyUserGroup to something more meaningful.