This is what I'm looking to get:
I'd like a category bar on the side, and all the main content in the right box. Right now, I'm attempting to do this with tables, and it's proving to be difficult.
Are there any useful CSS functions that I should be using?
Edit: Sorry, here's the current code:
<body>
<img src="xxx">
<table width="100%" border=1>
<col width="30%">
<col width="70%">
<tr>
<th id="row1">
Categories
</th>
<th id="row1">
Main Content
</th>
</tr>
</div>
<tr>
<th>
Category Header
</th>
<td id="main-content">
45645
</td>
</tr>
<tr>
<td>
<li>
Category Entry
</li>
</td>
</tr>
</table>
And my current stylesheet:
li {
list-style-type: none;
}
#row1 {
color: ;
}
#main-content {
padding: 9999999;
margin-bottom: 9999999;
}