How I make an entire cell a hyperlink?

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

Guest

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?
 
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?
 
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.
 
Back
Top