Mouse over

  • Thread starter Thread starter Love Front Page
  • Start date Start date
L

Love Front Page

So I have to pictures for my mouse over... Problem is that
I want them to be links with text on them. Every time I
add text using fp and mouse over, it goes back to the
original link.... Is the only way to solve this by
actually writing text on the .jpg? I would think you could
just add text and have it "always" be on top even if the
jpg behind it changes...
Any ideas? I have been at this one for a while!

Thanks
Mary
 
When FP adds text to a image, the text is associated with that specific
image.

You can place a image as a cell background and then place text over it,
however you then can't swap the image.

You would have to add the text to the image in your image application first.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
You can set the background with css then swap it onmouseover, eg
<style type="text/css">
#links a{
/*/*/display: block;
padding: 2px;
position:relative;
background-image: url(mouseout.gif); /* */
}
#links a:hover{
/*/*/background-image: url(mouseover.gif); /* */
}
#links td{
width:120px;
}
</style>

<table id="links">
<tr><td><a href="#">Link One</td></tr>
<tr><td><a href="#">Link Two</td></tr>
etc.....

obviously you could also change colour/border etc onmouseover

Jon
Microsoft MVP - FP
 
Back
Top