There are two fixes below for tables in Blogger. The second one (highlighted in yellow) is the one I prefer--it's less work.One trick is to type the whole table out on one continuous line; then you won't end up with a lot of extra line breaks imposed on it by Blogger. That's what produced the ONE TWO THREE FOUR below.
ONE | TWO |
THREE | FOUR |
This is something I learned about late, but it seems to be very effective, especially if you're going to use tables often. It's probably far better; at any rate it changes things another way, using css:
Table Formatting In CSS
My explanation of it is as follows, changing the table in the CSS:
Place the following line of code in your CSS:
.nobr br { display: none }
And place the DIV tags around your table as below:
<div class=nobr>
<table border=2>
<tr>
<td>PICTURE</td>
<td>OR TEXT</td>
</tr>
</table>
</div>
See also Table Used For Horizontal Photos.
END.