|
-
Sep 25th, 2000, 05:30 AM
#1
Thread Starter
Frenzied Member
how do I made it so that when someone puts their mouse over one of my links, the link gets BOLD and changes Color, also how do I do that with an image (change image when mouse is over, and change back when mouse is off)
NXSupport - Your one-stop source for computer help
-
Sep 25th, 2000, 02:00 PM
#2
Try this:
Code:
<html><head>
<style>
<!--
A:link{text-decoration: none;color:purple;}
A:visited{text-decoration: none;color:purple;}
A:hover {text-decoration: none;font weight: bold;color:blue;}
A:active{text-decoration: none;color:purple;}
-->
</style>
</head>
<body>
<a href="http://www.vb-world.net">Vb-World.Net</a>
</body></html>
-
Sep 25th, 2000, 02:02 PM
#3
Thread Starter
Frenzied Member
Originally posted by Matthew Gates
Try this:
Code:
<html><head>
<style>
<!--
A:link{text-decoration: none;color:purple;}
A:visited{text-decoration: none;color:purple;}
A:hover {text-decoration: none;font weight: bold;color:blue;}
A:active{text-decoration: none;color:purple;}
-->
</style>
</head>
<body>
<a href="http://www.vb-world.net">Vb-World.Net</a>
</body></html>
Thanks matt (I just had to quote that so that the simlies dont come up when I try to copy it)
NXSupport - Your one-stop source for computer help
-
Sep 25th, 2000, 02:44 PM
#4
:p <-:p <-here -> urple
This morning I posted something from skool, so I couldn't really look, so I got home, and found out that it didn't do what you wanted, so I posted that one and works fine for me. I edited so that the smilie wouldn't come up.
= ^ (same as bold words above)
That's why that smilie showed up.
-
Sep 25th, 2000, 02:46 PM
#5
Thread Starter
Frenzied Member
yea, when I just got home from school, I saw both of them, then when I posted , there was only 1 there
NXSupport - Your one-stop source for computer help
-
Oct 4th, 2000, 01:39 PM
#6
Fanatic Member
this is cool but it dosen't seem to work in netscape?
-
Oct 4th, 2000, 08:36 PM
#7
-
Oct 4th, 2000, 08:38 PM
#8
Thread Starter
Frenzied Member
what do you mean by a link and vlink?
NXSupport - Your one-stop source for computer help
-
Oct 4th, 2000, 10:10 PM
#9
Code:
<vlink=""> -> visited link
<alink=""> -> active link
<link=""> -> regular link
<body bgcolor="black" text="white" link="red" alink="white" vlink="blue">
-
Oct 4th, 2000, 10:25 PM
#10
Fanatic Member
everything sucks
I don't know who your designing for but if people who are
looking at your site use netscape, they won't see much.(if
you design for IE only)
-
Oct 10th, 2000, 08:11 AM
#11
Lively Member
Any more examples about this?
Font type, size, underlined, italic etc...
Thanks.
-
Oct 10th, 2000, 01:18 PM
#12
It's all there Dragev.
Just play around with it.
Code:
<html><head>
<style>
<!--
A:link{text-decoration: none;color:purple;}
A:visited{text-decoration: none;color:purple;}
A:hover {text-decoration: none;font weight: bpld;font size: 20;color:blue;}
A:active{text-decoration: none;color:purple;}
-->
</style>
</head>
<body>
<a href="http://www.vb-world.net">Vb-World.Net</a>
</body></html>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|