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.

Glowing links + usernames

5 posters

Go down

Glowing links + usernames Empty Glowing links + usernames

Post by Carrion May 27th 2012, 12:25 pm

Yes, i have to know this for my own forum.
I'm looking for the CSS code of Glowing links and usernames. For an example of this you can pm me (:
avatar
Carrion
New Member

Posts : 6
Reputation : 1
Language : Dutch

Back to top Go down

Glowing links + usernames Empty Re: Glowing links + usernames

Post by anonymouz17 May 27th 2012, 12:29 pm

anonymouz17
anonymouz17
Forumember

Posts : 138
Reputation : 2
Language : english

Back to top Go down

Glowing links + usernames Empty Re: Glowing links + usernames

Post by Carrion May 27th 2012, 12:30 pm

i tried, but i don't know iff thats the code i need.
Wait, i will send you an example of what i mean.
avatar
Carrion
New Member

Posts : 6
Reputation : 1
Language : Dutch

Back to top Go down

Glowing links + usernames Empty Re: Glowing links + usernames

Post by anonymouz17 May 27th 2012, 12:30 pm

OK !!!!!
anonymouz17
anonymouz17
Forumember

Posts : 138
Reputation : 2
Language : english

Back to top Go down

Glowing links + usernames Empty Re: Glowing links + usernames

Post by anonymouz17 May 27th 2012, 12:34 pm

try this code

Code:
a:link { 
    text-decoration: none; 
    text-shadow: none; 
    -webkit-transition: 200ms linear 0s; 
    -moz-transition: 200ms linear 0s; 
    -o-transition: 200ms linear 0s; 
    transition: 200ms linear 0s; 
    outline: 0 none; 
anonymouz17
anonymouz17
Forumember

Posts : 138
Reputation : 2
Language : english

Back to top Go down

Glowing links + usernames Empty Re: Glowing links + usernames

Post by Carrion May 27th 2012, 12:39 pm

This doesn't work either, sorry.
avatar
Carrion
New Member

Posts : 6
Reputation : 1
Language : Dutch

Back to top Go down

Glowing links + usernames Empty Re: Glowing links + usernames

Post by RevexAU May 27th 2012, 12:43 pm

add this to your CSS.

Code:

a:link { 
    text-decoration: none; 
    text-shadow: none; 
    -webkit-transition: 200ms linear 0s; 
    -moz-transition: 200ms linear 0s; 
    -o-transition: 200ms linear 0s; 
    transition: 200ms linear 0s; 
    outline: 0 none; 


a:link:hover, a:link:focus 

    color: #fff; 
    text-shadow: -1px 1px 8px #ffc, 1px -1px 8px #fff; 
}
RevexAU
RevexAU
Forumember

Posts : 101
Reputation : 4
Language : english

Back to top Go down

Glowing links + usernames Empty Re: Glowing links + usernames

Post by Carrion May 27th 2012, 12:47 pm

i really don't get it,
Do i have to change something to that code?
avatar
Carrion
New Member

Posts : 6
Reputation : 1
Language : Dutch

Back to top Go down

Glowing links + usernames Empty Re: Glowing links + usernames

Post by anonymouz17 May 27th 2012, 12:50 pm

Use individual Codes for Glowing links and Username
anonymouz17
anonymouz17
Forumember

Posts : 138
Reputation : 2
Language : english

Back to top Go down

Glowing links + usernames Empty Re: Glowing links + usernames

Post by RevexAU May 27th 2012, 12:52 pm

No just go to

Administrator Panel > Display > Colors > CSS Stylesheet

Scroll down to the bottom of your stylesheet if there is already codes and then add this code in the entire code. If you do not know how just click

Select Content of the code > Right click and 'copy' > Go to your CSS and right click then 'paste'

Code:


a:link { 
    text-decoration: none; 
    text-shadow: none; 
    -webkit-transition: 200ms linear 0s; 
    -moz-transition: 200ms linear 0s; 
    -o-transition: 200ms linear 0s; 
    transition: 200ms linear 0s; 
    outline: 0 none; 


a:link:hover, a:link:focus 

    color: #fff; 
    text-shadow: -1px 1px 8px #ffc, 1px -1px 8px #fff; 
}

That should work. It makes all links glow.
RevexAU
RevexAU
Forumember

Posts : 101
Reputation : 4
Language : english

Back to top Go down

Glowing links + usernames Empty Re: Glowing links + usernames

Post by Carrion May 27th 2012, 12:57 pm

i see, now i get it xD
But that wasn't really what i needed, but its good enouch.
Do you even know how to get the usernames glowing like this

boundless.actieforum.com
avatar
Carrion
New Member

Posts : 6
Reputation : 1
Language : Dutch

Back to top Go down

Glowing links + usernames Empty Re: Glowing links + usernames

Post by Syabria May 27th 2012, 1:01 pm

They're not really glowing- it looks more like a drop-shadow on a pale colour.
Syabria
Syabria
Forumember

Female Posts : 165
Reputation : 10
Language : English
Location : Ireland

Back to top Go down

Glowing links + usernames Empty Re: Glowing links + usernames

Post by Carrion May 27th 2012, 1:03 pm

Hmm, But the moderator group IS glowing or something.
avatar
Carrion
New Member

Posts : 6
Reputation : 1
Language : Dutch

Back to top Go down

Glowing links + usernames Empty Re: Glowing links + usernames

Post by RevexAU May 27th 2012, 1:13 pm

For putting a glow on a group go to this guide and follow Style 3 : Glow Style and that will give you a group glow.

The guide : https://help.forumotion.com/t96136-group-s-style-on-legend-glitter-icon-glow

Then for users glow follow the same method in that guide but for this code listed

Code:

a[href="/g387-forumotion-administrators"] {
    text-shadow: 0px 2px 6px #f5a911;
}

Change the "g387-forumotion-administrators" to "u#" replace the # with the user's profile number.
RevexAU
RevexAU
Forumember

Posts : 101
Reputation : 4
Language : english

Back to top Go down

Glowing links + usernames Empty Re: Glowing links + usernames

Post by SLGray May 27th 2012, 5:16 pm

anonymouz17 wrote:OK !!!!!

anonymouz17 wrote:try this code

Code:
a:link { 
    text-decoration: none; 
    text-shadow: none; 
    -webkit-transition: 200ms linear 0s; 
    -moz-transition: 200ms linear 0s; 
    -o-transition: 200ms linear 0s; 
    transition: 200ms linear 0s; 
    outline: 0 none; 

Please don't double/triple post. Your post need to be separated by 24 hours before bumping, replying or adding more information. Please use the edit button instead!


Glowing links + usernames Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51489
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Back to top

- Similar topics

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