Results 1 to 6 of 6
Related
-
input type=hidden name="to" VALUE="user@yahoo.com" Forum: HTML Forum
Replies: 1 -
How do write the code for "Make this your Homepage" Click here Forum: HTML Forum
Replies: 2 -
How do I make my own "server" Forum: Web Hosting Forum
Replies: 1 -
mouse "folowers" Forum: HTML Forum
Replies: 9
-
07-10-2002, 05:31 PM #1
how can i only make "one" link turn to another color when hovered(mouse moves to it)?
wat it says on the title
-
07-10-2002, 09:14 PM #2
try this:
.onehover {
text-decoration: underline; color: darkblue;
}
<a class="hover" href="blah.com">hello</a>
no idea if it'll work lol but probably something near that.
-
07-10-2002, 09:17 PM #3
use css
//put this in between <head> and </head>, change the colors
//to the ones u want. for example: #ffffff to #0000ff (blue)
<head><style>
A:link, A:active
{
text-decoration : none;
color : #ffffff;
background : transparent;
}
A:visited
{
text-decoration : none;
color : #ffffff;
background : transparent;
}
A:hover
{
text-decoration : none;
color : #000000;
background : #ffcc00;
}
</style></head>
-
07-10-2002, 10:41 PM #4
i did use CSS
well, i did use CSS. However, i wanted one of the link's hovered color be something diffrent, how can i do dat?
-
07-11-2002, 12:19 AM #5
Derek had it right.nearly.
Add this to your already existing <STYLE> area in the head -
Code:a.unique:hover { background-color: re; }
Code:<a href="http://www.quietdean.com" class="unique">QuietDean</a>
If one of our members helps you, please click theicon to add to their reputation!
No support via email or private message - use the forums!
Before you ask, have you Searched?
-
07-11-2002, 10:19 AM #6
thx all of u, i think i got it!
Cloudjiffy- PaaS for Developers
10-05-2020, 12:30 AM in Web Hosting Forum