How do i edit my links?

yaxiiah

New Member
Messages
268
Reaction score
0
Points
0
I wanna edit my links.. well i mean the color or the accesories that surround the links when you put the mouse above i.. like in this web http://hilary-fan.org/ that changes the word color in a defined color and has some circles below the word... or that the link changes its size.
Or what i have to do to make that for ex in this web http://www.vanessa-h.com/ the top afiliates changes
 

bigguy

Retired
Messages
10,984
Reaction score
10
Points
38
That I do believe is called a "mouse over" If you search the web with google you should find code on how to do that.
 

Cynical

Active Member
Messages
3,492
Reaction score
0
Points
36
It's a combination of CSS and JavaScript. The CSS adjusts the color and underline, and the JavaScript sets the cursor (I'm not sure if CSS can do that, but I know JS can).
 

theDragonsDen

New Member
Messages
1
Reaction score
0
Points
0
It is all done with css. In the Between the <head> and </head> tags in your page, put
<style type="text/css">
then this is what hilary-fan.org does
a:link {
color: #000000;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #000000;
}
a:hover {
text-decoration: none;
color: #FFFFFF;
border-bottom: 2px #E48437 dotted;
cursor:crosshair;
}
a:active {
text-decoration: none;
color: #000000;
}
a img {
border: 2px solid #E48437;
}
a:hover img {
border: 2px solid #FFFFFF;
}
finish with the </style> tag

a:link is style for a link
a:visited is a link u've been to before
a:hover is when ur mouse is over the link
a:active is when u click on a link
 

yaxiiah

New Member
Messages
268
Reaction score
0
Points
0
Thank you very much!!
Now i understood...i'm editing the codes
 

dest581

New Member
Messages
348
Reaction score
0
Points
0
It can also be done purely in javascript, but that's a pain, unless you're trying to have more than style change on hover.
 
Top