I really don't want to be lending any support on older versions for the lack of time as it is but you could apply some quick fixes to your shoutaddpal.php and shoutdisplaypal.php files as follows:<br /><br />In your shoutaddpal.php file find this:<br /><br />
<br /> $Body .= " ";<br /> $userob = new user;<br /> $user = $userob -> authenticate("U_Number");<br /><br /><br />and change it to this:<br /><br />
<br /> $Body .= " ";<br /> $userob = new user;<br /> $user = $userob -> authenticate("U_Number");<br /> if (empty($user['U_Username'])) {<br /> $inputError = 9;<br /> $doReturn = "{$config['phpurl']}/pals/shoutdisplaypal.php?error=$inputError";<br /> header("Location: $doReturn");<br /> exit;<br /> }<br /><br /><br /><br /><br />In your shoutdisplaypal.php find this:<br /><br />
<br /><style type="text/css"><br />body {<br />margin: 0px;<br />}<br /></style><br /><br /><br />and change it to this:<br /><br />
<br /><style type="text/css"><br />body {<br />margin: 0px;<br />padding: 0px;<br />}<br /></style><br /><br /><br /><br />If the extra space is still present it may be do to a setting in your stylesheet that I'm not aware of.<br /><br />Hope this helps. <img src="/forum/images/graemlins/smile.gif" alt="" />