English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

2007-05-18 14:13:49 · 5 answers · asked by smartbiz85 1 in Computers & Internet Programming & Design

I need a mouse over where it displays a simple text when the mouse is over the link. All I can seem to find is image mouse overs.

2007-05-18 14:57:48 · update #1

5 answers

Link

You can also use a variety of Javascript or CSS mouseover methods.

Here's one way to do it:
in the style block:
a.info{
position:relative;
z-index:24;
color:#000;
text-decoration:none}
a.info:hover{z-index:25;background-color:#fff;}
a.info span{display: none;background-color:#ff0;}
a.info:hover span{
display:block; cursor:pointer;
position:absolute; bottom: 10px; left:0px;
width:150px;padding: 2px;
border:1px solid #0cf;
background-color:#ffd; color:#000;
text-align: center; font-size:13px;}

Your link:
LinkYour message here

Note the positioning and such is just what it is in the page I copied this from.

2007-05-18 14:58:57 · answer #1 · answered by injanier 7 · 0 0

Mouse Over

e.g. http://www.dynamicdrive.com/dynamicindex15/index.html

2007-05-18 21:19:10 · answer #2 · answered by helpdesk916 ♦♣♠♥ 6 · 0 0

Follow the instuctions from the website below. Just go to the next lesson until you find what you are looking for.

2007-05-18 21:21:35 · answer #3 · answered by Blah 3 · 0 0

mouse over

2007-05-18 21:21:21 · answer #4 · answered by Alan Z. 3 · 0 0

Do you mean like a tool tip? You can use the tag in HTML.

2007-05-19 22:40:14 · answer #5 · answered by Elt 5 · 0 0

fedest.com, questions and answers