heyy i am wondering how could i make a mouseover link with change font colour but in this font.. font example is on http://www.habbucks.com/ navigator bit.. i actually want it like that! any help?

heyy i am wondering how could i make a mouseover link with change font colour but in this font.. font example is on http://www.habbucks.com/ navigator bit.. i actually want it like that! any help?
css is what it is.
put that in your .css fileaink {
color: #333333;
}
a:visited {
color: #6F4E26;
}
a:hover {
color: #CCCCCC;
background-color: #333333;
text-decoration: none;
}
a:active {
color: #333333;
}
.right {
font-size : 10px;
font-family : verdana;
color: #cb7723;
}![]()
Last edited by alarmclock; 24-12-2006 at 05:14 PM.
is that the full code =S
basically yes.
if you put that in your .css file then all that tells it to do is that when you hover over a link it turns the background of the link to that grey, and the text to white.
simple really.
could i use this code?<a href="?" onmouseover="';"
onmouseout="';">
<img name="" src="" border=0></a>
no, that'd just be for images i think.
just put that code between your head tags and there you go.
one min, i'll give you code.
There you goCode:<head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> <style type="text/css"> a:link { color: #333333; } a:visited { color: #6F4E26; } a:hover { color: #CCCCCC; background-color: #333333; text-decoration: none; } a:active { color: #333333; } </style> </head>
Oops, sorry - I was adding more information :s
Last edited by alarmclock; 24-12-2006 at 05:54 PM.
thanksss =)..
Want to hide these adverts? Register an account for free!