2012-03-13, 04:06 PM
I know its really simple to make a table but Im trying something different, so I got this so far of code in my Page Im making but I want the table chart thats inside the table (its actually a content block on my website) to look like the tables used in the forum display.
Anyways so ya, I want it to look like the forum page using the theme templates (I've got some parts of that already as you can see).
Anyways thanks in advanced...
<!-- Stylesheet: Start -->
<style>
#table td, #titles th {
font-size:1em;
padding:3px 7px 2px 7px;
}
#table th {
font-size:1.1em;
text-align:left;
padding-top:5px;
padding-bottom:4px;
}
</style>
<!-- Stylesheet: End-->
<!-- Content: Start -->
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>Title of my crap</strong></td>
</tr>
<tr>
<td class="trow1">
<p>my crap</p>
<table id="table" width="100%" border="1" cellpadding="3">
<tr>
<th scope="col">h1</th>
<th scope="col">h2</th>
<th scope="col">h3</th>
<th scope="col">h4<strong></strong></th>
</tr>
<tr>
<td align="left" scope="row">blank</td>
<td>blank</td>
<td>blank</td>
<td>blank</td>
</tr>
<tr>
<td align="left" scope="row">blank</td>
<td>blank</td>
<td>blank</td>
<td>blank</td>
</tr>
<tr>
<td align="left" scope="row">blank</td>
<td>blank</td>
<td>blank</td>
<td>blank</td>
</tr>
<tr>
<td align="left" scope="row">blank</td>
<td>blank</td>
<td>blank</td>
<td>blank</td>
</tr>
<tr>
<td align="left" scope="row">blank</td>
<td>blank</td>
<td>blank</td>
<td>blank</td>
</tr>
<tr>
<td align="left" scope="row">blank</td>
<td>blank</td>
<td>blank</td>
<td>blank</td>
</tr>
</table>
</td>
</tr>
</table><br>
<!-- Content: End -->
Anyways so ya, I want it to look like the forum page using the theme templates (I've got some parts of that already as you can see).
Anyways thanks in advanced...