Hyperlinking a Cell

S

Stephanie

Is there a way to hyperlink a cell? What I want to do is
put text in the cell, but I want the entire cell to be
hyperlinked so that when you hover over the cell, the
hand comes up while in the cell and not just when over
the text.

Thanx a million,
Stephanie
 
J

Jim Buyens

No, you would have to make the content fill the cell, and then hyperlink the
contents.

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 
J

Jon

Hi Stephanie.
something like this
<style type="text/css">
#links td{
background-color:red;
padding:0;
}
#links a{
/*/*/display:block;
bacground-color:red;
position:relative;/**/
color: #fff;
}
#links a:hover{
background-color: blue;
}
</style>
</head>
<body>
<table id="links" border=0 cellspacing=4 cellpadding=4>
<tr>
<td width=125><a href="#">Link One</a></td>
<td width=125><a href="#">Link Two</a></td>
</tr>
</table>

I'll leave it to you to make it look nicer :)

Jon
Microsoft MVP - FP
 

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