I'm creating a printer friendly page that has a top menu, left side menu and a main section as follows:
<div id=topmenu>
<table>
<tr>
<td>TopMenu here</td>
</tr>
</table>
</div>
<table>
<tr>
<div id=sidemenu><td>SideMenu here</td></div>
<td>MainSection here</>
</tr>
</table>
I have a CSS that hides the top menu and side menu:
#topmenu, #sidemenu {
display : none;
}
But I keep getting an error. Can I nest div tags in a table to hide the side menu. Or is there another method of hiding.
THank you
<div id=topmenu>
<table>
<tr>
<td>TopMenu here</td>
</tr>
</table>
</div>
<table>
<tr>
<div id=sidemenu><td>SideMenu here</td></div>
<td>MainSection here</>
</tr>
</table>
I have a CSS that hides the top menu and side menu:
#topmenu, #sidemenu {
display : none;
}
But I keep getting an error. Can I nest div tags in a table to hide the side menu. Or is there another method of hiding.
THank you