If you use Wordpress, you’ve no doubt noticed that it seems to hate tables. Put the code in, and Wordpress pushes it way down on the page. The reason is a bug in the Wordpress engine that inserts paragraph and break tags in your post. I found a solution (but sorry, I don’t remember where, or I’d credit it).

Insert the following code at the bottom of your stylesheet:

.table br, .table p {
display: none;
}

You’ve created a class named “table” (you can call it anything you like). Now, immediately before the table tag, insert:

<div class=”table”>

and immediately after the closing table tag:

</div>

Leave a Reply