PHP Code:
global $vbulletin, $vbphrase;
if ($vbulletin->options['bop5qrg_en'] AND $vbulletin->options['bop5qrg_auto'] AND $vbulletin->options['bop5username'])
{
$usrnmcode = '<br /><div style="margin-left: 10px;"><label for="username">'.$vbphrase['bop5qrg_guest_user_name'].':</label><input type="text" class="primary textbox" id="username" name="username" value="'.addslashes($vbulletin->options['bop5qrg_username']).'" tabindex="1" /><p class="description"><a href="javascript://" onclick="return highlight_login_box();">'.$vbphrase['click_here_to_log_in'].'</a></p>';
$human_verify = str_replace ('rightcol', '', $human_verify);
//$find = '<input type="hidden" name="poststarttime" value="" />';
$find = '<div class="wysiwyg_block">';
if ($vbulletin->options['hv_type'] == "Recaptcha")
{
$human_verify = str_replace ("'", "\\'", $human_verify);
}
$replace = $find .'<table class="formcontrols" padding="10" style="border-bottom: 0px;" border="0" width="100%"><tr><td width="200" VALIGN="top">' . $usrnmcode .'</td><td VALIGN="top">' . $human_verify . '</td></tr></table>';
$vbulletin->templatecache['SHOWTHREAD'] = str_replace($find, $replace.$find, $vbulletin->templatecache['SHOWTHREAD']);
}
I've swapped a <br/> around which makes it sit nice and neatly in within the box evenly. It doesn't like my ESB mod though, I am going to disable that on threads and see whats the outcome.