views:

27

answers:

1

I need several functionalities within a link. When you mouse over a text link: 1. A row is highlighted. 2. An icon is displayed next to a link 3. Upon clicking text link you go to yahoo.com 4. Upon clicking an icon a window pops!

A: 

Your tags are very nonspecific, as is your post. Try to clarify your question so as to get better answers...

1. A row of what? Do you mean the text is highlight? If so you can use the following... To do that, put the following in your header section of your HTML doc. This will apply to all links now.

<STYLE TYPE="text/css">
<!--
a:hover{background-color:#FF00FF;}
-->
</STYLE>

2. This could be done with a CSS, but I'm not sure quiet how. Would be tricky.
3. The following will accomplish that:

<a href="http://www.yahoo.com/"&gt;MY LINK</a>

4.Check out this link... http://moneytreesystems.com/css/picpopup.html

Jason R. Mick