The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

How to make my username Glow on My forumotion

+3
Nera.
Mike
Deccerz.
7 posters

Go down

Solved How to make my username Glow on My forumotion

Post by Deccerz. 13th May 2011, 12:51

Okay I would like the outside of my Username to glow, My version is phpBB3 (prosilver)
Just wondering what I have to do, Cheers. groar
Deccerz.
Deccerz.
New Member

Posts : 18
Reputation : 0
Language : English

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Deccerz. 13th May 2011, 14:57

Anyone?
Deccerz.
Deccerz.
New Member

Posts : 18
Reputation : 0
Language : English

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Mike 13th May 2011, 15:04

Put this HTML code before your group.

Code:
<span style="FILTER: Glow(Color=COLORHEX, Strength=8); font-size:12pt;">USERNAME</span>
Mike
Mike
Hyperactive

Male Posts : 4255
Reputation : 471
Language : English, HTML, CSS
Location : Loveland, Colorado

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Deccerz. 13th May 2011, 15:08

Thanks mate just how do I know the colour hex?
Deccerz.
Deccerz.
New Member

Posts : 18
Reputation : 0
Language : English

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Deccerz. 13th May 2011, 15:14

Drogba921 wrote:Put this HTML code before your group.

Code:
<span style="FILTER: Glow(Color=COLORHEX, Strength=8); font-size:12pt;">USERNAME</span>
Do I need to create a new group? If not were do I
Put it.
Deccerz.
Deccerz.
New Member

Posts : 18
Reputation : 0
Language : English

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Nera. 13th May 2011, 15:31

You want only your username to glow?
Add this to your CSS
AP >> Display >> Colours >> CSS
Change the glow colour if you want.
Code:

a[href="/u1"]{     
text-decoration: none !important;   
text-shadow: 0 0 0.2em white, 0 0 0.2em white, 0 0 0.2em white;
}
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Deccerz. 13th May 2011, 15:45

Nera. wrote:You want only your username to glow?
Add this to your CSS
AP >> Display >> Colours >> CSS
Change the glow colour if you want.
Code:

a[href="/u1"]{     
text-decoration: none !important;   
text-shadow: 0 0 0.2em white, 0 0 0.2em white, 0 0 0.2em white;
}

Thanks heaps, You're a legend.
Deccerz.
Deccerz.
New Member

Posts : 18
Reputation : 0
Language : English

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by lezuj yaj 13th May 2011, 16:10

how about the glitter username sir?
avatar
lezuj yaj
Forumember

Posts : 149
Reputation : 0
Language : English

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by lezuj yaj 13th May 2011, 16:15

Drogba921 wrote:Put this HTML code before your group.

Code:
<span style="FILTER: Glow(Color=COLORHEX, Strength=8); font-size:12pt;">USERNAME</span>
sir what do u mean bfore my group?whre should i put this code
avatar
lezuj yaj
Forumember

Posts : 149
Reputation : 0
Language : English

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Nera. 13th May 2011, 16:33

how about the glitter username sir?

Code:
a[href="/u1"]{   
background-image: url('gliter photo url goes here');
}
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by lezuj yaj 13th May 2011, 17:09

ddn't work sir.. Pls help
avatar
lezuj yaj
Forumember

Posts : 149
Reputation : 0
Language : English

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Gangstar15 13th May 2011, 17:10

Gangstar15 wrote:If you want to put glitter in a username then use this:
Code:

a[href="/u1"] {
  background: url("http://i35.tinypic.com/pxg87.gif")repeat 0 0 transparent;
}
Gangstar15
Gangstar15
Gangstar15
Forumember

Female Posts : 392
Reputation : 163

http://www.designdrops.net/

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Base 13th May 2011, 17:53

Deccerz. and lezuj yaj, posting consecutively not tolerated unless separated by 24 hours since the last post. In future, please use the edit button to avoid receiving any warnings. Wink
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Guest 13th May 2011, 18:24

lezuj yaj wrote:ddn't work sir.. Pls help
put these codes in the css stylesheet enter this code for glitter username
Code:
a[href="/u9"] {
  background: url("http://i35.tinypic.com/pxg87.gif")repeat 0 0 transparent;
}

for normal but bold type of a one type this code in
Code:
a[href="/u1"]{
  color: yellow;
    text-decoration: none !important;
    text-shadow: 0 0 0.2em black, 0 0 0.2em black, 0 0 0.2em black;font-weight:bold;   
}

NOTE: By /u1 and/u9 change the numbers to the members u #,you can find out by going to their profile and its displayed on the link.

Hope this Helps.
avatar
Guest
Guest


Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Gangstar15 13th May 2011, 19:00

kamz89 wrote:
lezuj yaj wrote:ddn't work sir.. Pls help
put these codes in the css stylesheet enter this code for glitter username
Code:
a[href="/u9"] {
  background: url("http://i35.tinypic.com/pxg87.gif")repeat 0 0 transparent;
}

for normal but bold type of a one type this code in
Code:
a[href="/u1"]{
  color: yellow;
    text-decoration: none !important;
    text-shadow: 0 0 0.2em black, 0 0 0.2em black, 0 0 0.2em black;font-weight:bold;   
}

NOTE: By /u1 and/u9 change the numbers to the members u #,you can find out by going to their profile and its displayed on the link.

Hope this Helps.

It seem that we wrote the same dude Wink
Gangstar15
Gangstar15
Forumember

Female Posts : 392
Reputation : 163

http://www.designdrops.net/

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Guest 13th May 2011, 19:45

almost but all us forgot to tell him to change /u# to the username id #
avatar
Guest
Guest


Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Mike 13th May 2011, 20:36

I mean before your group as in: Group prefix and group suffix; there should be an option for that
Mike
Mike
Hyperactive

Male Posts : 4255
Reputation : 471
Language : English, HTML, CSS
Location : Loveland, Colorado

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by lezuj yaj 14th May 2011, 00:36

i don't rili get it sir, can u complete ur tut, and put a ss as well to make it m0re understanding.thnx sir drog... D'at would b verry useful
avatar
lezuj yaj
Forumember

Posts : 149
Reputation : 0
Language : English

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by lezuj yaj 14th May 2011, 00:42

Drogba921 wrote:I mean before your group as in: Group prefix and group suffix; there should be an option for that
i mean sir where can we see the prefix and group suffix,in our panel?complete tut please and put an ss as wel, veri much thank you in advance
avatar
lezuj yaj
Forumember

Posts : 149
Reputation : 0
Language : English

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Deccerz. 14th May 2011, 02:25

Thanks, Solved.
Deccerz.
Deccerz.
New Member

Posts : 18
Reputation : 0
Language : English

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Guest 14th May 2011, 02:48

i dont know wether i really helped you or not but ur welcome any way
avatar
Guest
Guest


Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by lezuj yaj 14th May 2011, 03:35

please help i really need it.
avatar
lezuj yaj
Forumember

Posts : 149
Reputation : 0
Language : English

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Mike 14th May 2011, 03:50

Lezuj, you can make your own thread and we will helpyou. This is dexxerz thread so we help him
Mike
Mike
Hyperactive

Male Posts : 4255
Reputation : 471
Language : English, HTML, CSS
Location : Loveland, Colorado

Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Guest 14th May 2011, 05:11

Drogba921 wrote:Lezuj, you can make your own thread and we will helpyou. This is dexxerz thread so we help him
sorry to interfere but for me it doesnt matter me in which thread a user is asking for help,if i can help the person then im going to help them no matter whos thread they are in.

and lezuj i do also think at this moment you will need to make a new thread but if your thread is going to be around about 70% or above similar to this thread then just post the question here(i hope the mods wont mind) =)
avatar
Guest
Guest


Back to top Go down

Solved Re: How to make my username Glow on My forumotion

Post by Beno 14th May 2011, 09:26

lezuj yaj, You have been previously warned about double posting you now receive an official warning furthermore if you need help please create a new topic with your question.

--> Solved - Locked

Beno
Beno
Hyperactive

Male Posts : 3024
Reputation : 67
Language : English
Location : England

http://www.benwhitedesign.co.uk

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum