PDA

View Full Version : MouseOver HELP!!



Puma
24-12-2006, 05:06 PM
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?

alarmclock
24-12-2006, 05:12 PM
css is what it is.


a:link {
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;
}

put that in your .css file :)

Puma
24-12-2006, 05:29 PM
is that the full code =S

alarmclock
24-12-2006, 05:32 PM
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.

Puma
24-12-2006, 05:41 PM
could i use this code?
<a href="?" onmouseover="';"
onmouseout="';">
<img name="" src="" border=0></a>

alarmclock
24-12-2006, 05:51 PM
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.

alarmclock
24-12-2006, 05:54 PM
<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>There you go :)

Oops, sorry - I was adding more information :s

Puma
24-12-2006, 05:55 PM
thanksss =)..

Want to hide these adverts? Register an account for free!