Your suggestion above does not solve this problem. The HTML code that the photopost script generates contains a <div align="center"> code imbeded inside of it.
Do you have any idea where this element comes from?
EDIT: I found it:
It is in the same template as suggested above:
FIND:
Quote:
if ( $Globals['dispdesc'] == "yes" && $desc )
{
echo<<<PPPRINT
<div align="center"><span class="{$Style['small']}">$desc</span></div>
</td>
</tr>
<tr>
<td class="{$Style['tddetails']} {$Style['small']}" align="left">
PPPRINT;
}
|
Replace with:
Quote:
if ( $Globals['dispdesc'] == "yes" && $desc )
{
echo<<<PPPRINT
<div align="left"><span class="{$Style['small']}">$desc</span></div>
</td>
</tr>
<tr>
<td class="{$Style['tddetails']} {$Style['small']}" align="left">
PPPRINT;
}
|