I have some clean-looking (to me anyway) code for a table: <p>This may help you visualize how those who specialize in enchantment have access to each of the 7 elements. All other magic users find one element inaccessible. Fire elementalists (pyromancers) have no access to water magic, Death elementalists (necromancers) have no access to Life magic, Earth elementalists have no access to Air magic, and so on:</p> <p> <table cellpadding="25" align="center"> <tr align="center"> <td colspan="3"> Fire</td> </tr> <tr> <td>Death</td> <td> </td> <td>Air</td> </tr> <tr align="center"> <td colspan="3">Enchantment</td> </tr> <tr> <td>Earth</td> <td> </td> <td>Life</td> </tr> <tr align="center"> <td colspan="3">Water</td> </tr> </table> </p> <p>Elements like Fire, Death, Water, and Air are considered primarily offensive. Life is popular for healing magic. Earth is popular for golems. </p> Code (markup): It works perfectly in an html editor / previewer thing. However I put it in Worpress and they always chop off the bottom row (the one with the word water in it). I figure I'd just add another row and let them chop off the empty one so I added one more row: <tr align="center"><td colspan="3"> </td></tr> Code (markup): Wordpress chopped off both bottom rows. Does anyone know what's going wrong? Is the Wordpress html editor broken? Is it my html? Just bad luck?