View Single Post
Old August 9th, 2006, 12:07 AM   #3 (permalink)
nuguru
Member
Verified Customer
 
Join Date: Jul 2006
Posts: 48
Question

Quote:
Originally Posted by Chuck S View Post
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
nuguru is offline   Reply With Quote