I cannot figure out how to do this. I have set the padding and border as 0 and tried the collapse border command. Here is my code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head>

<body>
<table border="0" cellspacing="0">
  <tr>
    <td height="0" colspan="3"><img src="Assets/AheadPagerTemplate_r1_c1.jpg" alt="1" width="900" height="94" /></td>
  </tr>
  <tr>
    <td width="0" height="0" align="left" valign="top"><img src="Assets/AheadPagerTemplate_r2_c1.jpg" alt="2" width="11" height="325" /></td>
    <td width="879" rowspan="2" bgcolor="#00FFFF">&nbsp;</td>
    <td><img src="Assets/AheadPagerTemplate_r2_c3.jpg" alt="3" width="10" height="325" /></td>
  </tr>
  <tr>
    <td width="0" height="0" align="left" valign="top"><img src="Assets/AheadPagerTemplate_r3_c1.jpg" alt="4" width="11" height="230" /></td>
    <td><img src="Assets/AheadPagerTemplate_r3_c3.jpg" alt="5" width="10" height="230" /></td>
  </tr>
  <tr>
    <td colspan="3"><img src="Assets/AheadPagerTemplate_r4_c1.jpg" alt="6" width="900" height="51" /></td>
  </tr>
</table>
</body>
</html>

Recommended Answers

All 2 Replies

And btw I am doing this in order to place a sliced layout into cells.

Add cellspadding=0 on line 9...

<table border="0" cellspacing="0" cellpadding="0">
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.