Adam Wallner pointed out to me a bug in the place here modules HTML output. Since that potentially could wreak havoc on your layout and in any case invalidates your HTML I recommend that you either upgrade, overwrite the helperhtml-File with the corrected file from the most recent version or fix the problem manually.

The error is in modules/mod_placehere/helperhtml.php in line 32.

echo ‘<td valign=”top” colspan=”‘ . $num_of_cols . ‘” class=”mod_placehere_leading”>’ . $rows[$i] . ‘</div>’;

should be:

echo ‘<td valign=”top” colspan=”‘ . $num_of_cols . ‘” class=”mod_placehere_leading”>’ . $rows[$i] . ‘</td>’;

(Mind the wraps, this is supposed to be one line). While at it you could remove the “valign-attribute” and set vertical align via your CSS-File.