mouse over and yellow text

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Seems simple enough but can't seem to find it...

I want to be able to mouse over some text and have that small yellow box
automatically come up with expanded text (like if you are in Windows you go
down to the right side of screen and put cursor over any of the icons it will
show a small yellow text window). I want to do that with certain text areas
in my page. Know how to do it?

I can see where I can create a pop up window via the format->behaviors but
don't see a way to do the yellow text.
 
If you make your text a hyperlink, in code view you can add a title to the
anchor tag to display what you want, such as:

<a href="#" title="What you want to say when mouse hovers over the
text">some text</a>
 
You do not have to make it a link.

<p>This is some text with a <span title="This works fine"
style="cursor:help">word </span> having a tooltip.</p>
 
Back
Top