For that issue, just add the space in the block templates, like this:
./Styles/yourstyle/template/blocks/latest_posts.html
1.0.1b orig code
Code: Select all
<!-- BEGIN latest_posts -->
<tr>
<td class="<!-- IF latest_posts.S_ROW_COUNT is even -->row1<!-- ELSE -->row2<!-- ENDIF --> genmed"><span class="{S_CONTENT_FLOW_END}-column"> {latest_posts.TIME}</span><a href="{latest_posts.URL}">{latest_posts.SUBJECT}</a></td>
</tr>
<!-- END latest_posts -->
change it to
Code: Select all
<!-- BEGIN latest_posts -->
<tr>
<td class="<!-- IF latest_posts.S_ROW_COUNT is even -->row1<!-- ELSE -->row2<!-- ENDIF --> genmed"><span class="{S_CONTENT_FLOW_END}-column"> {latest_posts.TIME}</span><a href="{latest_posts.URL}"> {latest_posts.SUBJECT}</a></td>
</tr>
<!-- END latest_posts -->
Just like that, You should get the idea from that.
Rem to flush your cache after the change.