This Message Forum is no longer in use

Please use the new Bravenet Help Forums FOUND HERE

General Forum
This Forum is Locked
Author
Comment
Help with mouse pointer over link

Hello again :)

How do I make the link look underlined ONLY when you put the mouse over it?

http://template1.anthonyfurino.com/index2.html

"Follow Anthony on Twitter!"

I don't want anyone to see it underlined until they put the mouse over it.

Thanks,
Anthony

Re: Help with mouse pointer over link

its sad how no one has responded because its easy to do this function just open up your html page and put the following code in the head section

Code:

<style type="text/css">
a:link {
text-decoration:none;
}

a:visited {
text-decoration:none;
}

a:hover {
text-decoration:underline;
}

a:active {
text-decoration:underline;
}


to change the color of the links to just put

Code:
color:blue;


in all 4 of the a links in the style code i just gave you

Browser: IE 7