Bluepearl Design
Go Back   Bluepearl Design > Misc > Tutorials > HTML, XHTML, Javascript, CSS

[HTML] Glowing User Titles

HTML HyperText Markup Language.
XHTML Extensible Hypertext Markup Language.
JAVASCRIPT object-based scripting programming language.
CSS Cascading Style Sheets.

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
Old 04-25-2005, 09:40 AM   #1 (permalink)
 
LEAD_WEIGHT's Avatar
 
Title: Member
Join Date: Mar 2005
Age: 36
Posts: 94
Rep Power: 4 LEAD_WEIGHT is on a distinguished road
[HTML] Glowing User Titles

This will be Credited too r007 & Jake Bunce @ vb.com

Here is the solution to this: Username
    1. Login to the admin panel
    2. Open the Tab ‘Usergroups’
    3. Open the Sub-Section ‘Usergroup Manager’
    4. Press ‘Go’ on the Usergroup you want to edit.
    5. In the ‘Username HTML Markup’ type
In the 1st. box



Code:
<div style="filter:progid:DXImageTransform.Microsoft.Glow(Color=blue,Strength=3);width: 100%;">
In the 2nd. box

Code:
</div>

or
User Title

Code:
<table style="filter:glow(color=yellow, strength=4)">USER TITLE</table>





more info...

Use the code in the User Title field of the usergroup in your:

Admin CP -> Usergroups -> Usergroup Manager -> Edit Usergroup -> User Title

If you don't want users to be able to change their title from the one granted by their group, then you need to deny custom title privs from those groups:

Admin CP -> Usergroups -> Usergroup Manager -> Edit Usergroup -> Can Use Custom Title

Also keep in my that title ladders will override group titles:

Admin CP -> User Titles -> User Title Manager

After making these changes you may need to update your user title counter for the changes to take affect:

Admin CP -> Import & Maintenance -> Update Counters -> Update User Titles

--------------------------------------------------------------------------

forumdisplay_announcement:


Find:
Code:
<span class="smallfont"><a href="member.php?$session[sessionurl]u=$announcement[userid]" target="_blank">$announcement[username]</a> ($announcement[usertitle])</span>
Replace with:
Code:
<span class="smallfont"><a href="member.php?$session[sessionurl]u=$announcement[userid]" target="_blank">$announcement[username]</a> (<if condition="is_member_of($bbuserinfo, 6)"><div style="filter:progid:DXImageTransform.Microsoft.Glow(Color=blue,Strength=3);width: 100%;"></if>$announcement[usertitle]<if condition="is_member_of($bbuserinfo, 6)"></div></if>)</span>
MEMBERINFO:


Find:
Code:
<if condition="$userinfo['usertitle']"><div class="smallfont">$userinfo[usertitle]</div></if>
Replace with:
Code:
<if condition="$userinfo['usertitle']"><div class="smallfont" <if condition="is_member_of($bbuserinfo, 6)">style="filter:progid:DXImageTransform.Microsoft.Glow(Color=blue,Strength=3);width: 100%;"</if>>$userinfo[usertitle]</div></if>
memberlist_resultsbit:


Find:
Code:
<if condition="$show['usertitlecol']"><div class="smallfont">$userinfo[usertitle]</div></if>
Replace with:
Code:
<if condition="$show['usertitlecol']"><div class="smallfont" <if condition="is_member_of($bbuserinfo, 6)">style="filter:progid:DXImageTransform.Microsoft.Glow(Color=blue,Strength=3);width: 100%;"</if>>$userinfo[usertitle]</div></if>
postbit:


Find:
Code:
<if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if>
Replace With:
Code:
<if condition="$post['usertitle']"><div class="smallfont" <if condition="is_member_of($bbuserinfo, 6)">style="filter:progid:DXImageTransform.Microsoft.Glow(Color=blue,Strength=3);width: 100%;"</if>>$post[usertitle]</div></if>
postbit_legacy:


Find:
Code:
<if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if>
Replace With:
Code:
<if condition="$post['usertitle']"><div class="smallfont" <if condition="is_member_of($bbuserinfo, 6)">style="filter:progid:DXImageTransform.Microsoft.Glow(Color=blue,Strength=3);width: 100%;"</if>>$post[usertitle]</div></if>


One more point u need to do when copy & paste code, remove the space in this part of code "(Colo r=blue,Strength=3);" so it looks like "(Color=blue,Strength=3);" It happens when I codewrap in forum.


<----ok if u like it click that little Rep.

Last edited by LEAD_WEIGHT; 04-26-2005 at 10:59 AM.
LEAD_WEIGHT is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 04-26-2005, 02:54 AM   #2 (permalink)
 
Fragalot's Avatar
 
Title: Ipood
Join Date: Nov 2004
Location: belgium west-flandres
Age: 18
Posts: 4,418
Images: 1
Rep Power: 8 Fragalot is on a distinguished road
Send a message via ICQ to Fragalot Send a message via MSN to Fragalot Send a message via Yahoo to Fragalot
Re: Glowing User Titles

does that work for any kind of forum thingy, or only for VB ?
(maybe i'd use some of those codes but a bit different on SMF...)
__________________

|_|0|_|
|_|_|0|
|0|0|0|

http://wargaming.org - under construction
irc.wargaming.org #wargaming

Fragalot is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 04-26-2005, 02:57 AM   #3 (permalink)
 
Title: King Etch
Join Date: Mar 2005
Location: Barrington New Hampshire USA
Age: 24
Posts: 171
Rep Power: 4 Etch is on a distinguished road
Send a message via AIM to Etch Send a message via Yahoo to Etch
Re: Glowing User Titles

it looks like it is only for VB. but in phpBB and invision free the <table style code works very well i have used it many times. in fact some wher eon my PC i have a phpBB and Invision Free Mod that tells you exactly where to place the coding. it also has a Drop down menu so the user can select the color form there User CP.
__________________
vBulletin Custom Coder
phpBB Custom Coder
SMF Custom Coder
Invision Custom Coder

Custom Web Coder

Lyrical Design Lead Coder


Need help with moding Fourms ask me I may be able to help you out.

Etch is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 04-26-2005, 03:36 AM   #4 (permalink)
 
Sean's Avatar
 
Title: Founder/Admin
Join Date: Jan 2004
Location: Sydney, Australia
Age: 28
Posts: 8,739
Images: 386
Blog Entries: 5
Rep Power: 10 Sean will become famous soon enough
Send a message via MSN to Sean Send a message via Skype™ to Sean
Re: Glowing User Titles

thanks for the info lead weight , i will move this to the tutorials section
Sean is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-30-2005, 02:08 AM   #5 (permalink)
 
Black Cobra's Avatar
 
Title: Bluepearl Veteran
Join Date: Jun 2005
Location: Down in my Cave
Age: 25
Posts: 92
Rep Power: 4 Black Cobra is on a distinguished road
Re: [HTML] Glowing User Titles

This dows not work in Firefox
Black Cobra is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-30-2005, 06:44 PM   #6 (permalink)
 
Fragalot's Avatar
 
Title: Ipood
Join Date: Nov 2004
Location: belgium west-flandres
Age: 18
Posts: 4,418
Images: 1
Rep Power: 8 Fragalot is on a distinguished road
Send a message via ICQ to Fragalot Send a message via MSN to Fragalot Send a message via Yahoo to Fragalot
Re: [HTML] Glowing User Titles

many things only work on sertain browsers, wich is bad luck for us webdesigners.

one thing works in IE, the other wont, but works in firefox, and the opposite.

not counting all the numerous other browsers out there!

best would be if they would all just share their codes, so they can all make the perfect browser, and implement that in windows, instead of crappy IE
__________________

|_|0|_|
|_|_|0|
|0|0|0|

http://wargaming.org - under construction
irc.wargaming.org #wargaming

Fragalot is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads for: [HTML] Glowing User Titles
Thread Thread Starter Forum Replies Last Post
New User titles and User statistics Sean Bluepearl Announcements 18 10-10-2005 03:44 PM
Different user levels allydm Need Help? 9 05-21-2004 09:08 PM
SOME1 HELP ME PLZ:( ShadowQ Need Help? 23 03-15-2004 08:54 AM


  
Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC5
Bluepearl Templates

All times are GMT +11. The time now is 06:29 AM.

 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55