Aiken Full Member
  
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/me-yat.jpeg) Posts: 333 Status: Offline Gender: Male Location: In a very lonely place, the domain of despair Age: 35 Joined:
pmskypemsnyahooxfire | Logged in as recreate (10th Jan 10 at 7:37pm UTC) Resolved | |  Code: - <script>
- var UG;
- for(i = 0; i <= vf_usergroup.length; i++){
- UG += 'group' + vf_usergroup[i]
- if(i != vf_usergroup.length){
- UG += ' ';
- }
- }
- document.write('Logged in as: <a href="/action/view_profile/user/' + vf_username + '" class="' + UG + '">' + vf_displayname + '</a>');
- get('user_table','id').style.display = 'none';
- </script>
The only problem I am having is with group# class, right now the output is a normal link | |
vF forums: Perfect World RP BLEACH Universe - Under Construction / Testing Phase Xen Qarna RP - Stage I Vyren Entar Battle Network RP - Under Construction / Maintenance Mode Enabled the Final Anime Hideout |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: Logged in as recreate (10th Jan 10 at 11:10pm UTC) | |  Code: - <script>
- var UG = 'group' + vf_usergroup.join(' group');
- document.write('Logged in as: <a href="/action/view_profile/user/' + vf_username + '" class="' + UG + '">' + vf_displayname + '</a>');
- get('user_table','id').style.display = 'none';
- </script>
Try that! | |
|
Aiken Full Member
  
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/me-yat.jpeg) Posts: 333 Status: Offline Gender: Male Location: In a very lonely place, the domain of despair Age: 35 Joined:
pmskypemsnyahooxfire | |
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: Logged in as recreate (11th Jan 10 at 12:06am UTC) | | Glad to know. | |
|