You're welcome. But:
a) As I said above (PS2), p tags with no content or no closing tag are wrong, and they'll get stripped out if you switch the editor to Visual.
b) Replying to another question of yours reminded me that you have the Custom Design upgrade. In that case it's better to avoid using inline CSS (= the style attribute) and use CSS editing instead.
So here's a better solution. Use this in the Text editor:
<table>
<tbody>
<tr>
<td id="videotd">
VIDEO SHORTCODE 1
</td>
<td>
TEXT 1
</td>
</tr>
<tr>
<td id="videotd">
VIDEO SHORTCODE 2
</td>
<td>
TEXT 2
</td>
</tr>
</tbody>
</table>
and this in the CSS editor:
.entry-content table {
font-size: 100%;
color: #444444;
border-bottom: none;
margin: 0;
}
.entry-content td {
vertical-align: top;
border-top: none;
}
#videotd {
width: 310px;
padding-right: 20px;
}
Note: this solution assumes that you don't need differently styled tables on other pages. If you do, you/we'll need to modify things a bit.