Hi, I'm working in a blog and I'm figuring out how to make a Tableless theme; I'm crazy with this problem.
in archive.php appear the code:
<div class="entry">
<?php the_content() ?>
</div>
that's OK for the moment, but why any post appear inside a unnecessary and ugly table? every single post appear with the format:
<div class="entry">
<table>
<tr>
<td>
...(content of the post)...
</td>
</tr>
</table>
</div>
I would like to have only the div "entry" and the post content inside... is that posible?.
pleasee help meee!
Kenny