How to make a link BOLD and CHANGE color on rollover

E

Elliott Alterman

Some time ago I was able to make links to other pages go BOLD and change
color when the cursor was placed over the text. I can't, for the life of
me, recall how I did it.

Anyone know how to do it?

TIA
 
W

Whiteflyer

You will need to use either a stylesheet or set a style in the <head> of your
page and it should be something like

a:link {background: transparent; color: red ;text-decoration: underline}
a:visited {background: transparent; color: green;text-decoration: underline}
a:hover {background:transparent; color: blue ;text-decoration: underline;
font-weight:bold}

remember changing the font weight to bold may make other text around your link
move slightly.

hope this is of some help
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top