Hi guys, can you give me some ideas how I should go about hiding the outer tables using CSS? here's the sample code:
<table width="100%" height="175" border="3" cellpadding="0" cellspacing="0" id="MainTable">
<tr>
<td><table width="100%" height="124" border="3" cellpadding="0" cellspacing="0" id="secondaryTable">
<tr>
<td> </td>
<td><table width="100%" height="54" border="3" cellpadding="0" cellspacing="0" id="innerTable">
<tr>
<td>test123 test123 </td>
</tr>
</table></td>
<td> </td>
</tr>
</table></td>
</tr>
</table>
I want to hide the tables "MainTable" and "secondaryTable" but want to show the table "innerTable". I would like to do that for printer-friendly versions of my pages. I know the outer tables affect everything inside them but is this possible at all?
Thanks for any ideas.
<table width="100%" height="175" border="3" cellpadding="0" cellspacing="0" id="MainTable">
<tr>
<td><table width="100%" height="124" border="3" cellpadding="0" cellspacing="0" id="secondaryTable">
<tr>
<td> </td>
<td><table width="100%" height="54" border="3" cellpadding="0" cellspacing="0" id="innerTable">
<tr>
<td>test123 test123 </td>
</tr>
</table></td>
<td> </td>
</tr>
</table></td>
</tr>
</table>
I want to hide the tables "MainTable" and "secondaryTable" but want to show the table "innerTable". I would like to do that for printer-friendly versions of my pages. I know the outer tables affect everything inside them but is this possible at all?
Thanks for any ideas.