margin-top for tables? HTML question?

http://www.ivoog.com/link See the two "square boxes" on the left of the page? See how the first one is about 5px from the big long box on the top? How can I make the second box be 5px from the bottom of the first "square box"? I tried putting in margin-top:5px into the style of that section of the table but it didn't work. How can I do it? Please explain or edit the code only if you know. Thanks Thanks but can you explain more clearly or show an example? I tried doing that but there a little line in the middle or something. Thank You.

Public Comments

  1. You need to give that TD an extra 5 pixels in height, then set the background position to the bottom of that TD. That way you'll have the extra 5 pixels at the top and it'll look like a break or something.
  2. look to the bottom of your code for this: <tr> <td width="232" height="189" valign="top" background="http://www.pics.ivoog.com/b001.gif"> </td> </tr> </table> </body> above this - add this: <tr> <td width="232" height="5" valign="top"></td> </tr> works for me
Powered by Yahoo! Answers