Quote:
Originally Posted by Chuck S Add a break tag <br /> before the closing PPPRINT; in anouncement template |
Hello,
Thanks for the quick response. Okay here is the code from the annouce.tmpl in template as you suggested.
<?php
echo<<<PPPRINT
<!-- BEGIN TEMPLATE: announce.tmpl -->
$ppopen
<tr>
<td align="center" class="{$Style['menubar']}">
<span class="{$Style['medium']}"><b>{$Globals['newstitle']}</b></span>
</td>
</tr>
<tr>
<td class="{$Style['tddetails']}" align="left">
<span class="{$Style['small']}">{$Globals['newscopy']}</span>
</td>
</tr>
$ppclose
<!-- END TEMPLATE: announce.tmpl -->
PPPRINT;
?>
I changed it to:
<?php
echo<<<PPPRINT
<!-- BEGIN TEMPLATE: announce.tmpl -->
$ppopen
<tr>
<td align="center" class="{$Style['menubar']}">
<span class="{$Style['medium']}"><b>{$Globals['newstitle']}</b></span>
</td>
</tr>
<tr>
<td class="{$Style['tddetails']}" align="left">
<span class="{$Style['small']}">{$Globals['newscopy']}</span>
</td>
</tr>
$ppclose
<!-- END TEMPLATE: announce.tmpl -->
<br />
PPPRINT;
?>
But no luck. It did not make a difference in the spacing. Strange? What can I do next?
Thank You,
Nuguru