How I make an entire cell a hyperlink?

K

KidMW14

I'm working on a site where the sidebar is kind of like cnn.com. But I can't
figure out how to make a whole cell hyperlinked on that sidebar. Any
suggestions?
 
R

Rob Giordano \(Crash\)

put an image in the cell and link the image to your destination


| I'm working on a site where the sidebar is kind of like cnn.com. But I
can't
| figure out how to make a whole cell hyperlinked on that sidebar. Any
| suggestions?
 
M

Murray

Or put a text link in the cell, and use CSS to make it -

display:block;

That'll force the text to fill the cell horizontally. To fill it
vertically, again use CSS to give the link a height equal to the cell's
height.

Then you'll have the whole cell being a link.
 
Top