Okay, create a plugin hooked at "parse_templates" with the code:
PHP Code:
if (THIS_SCRIPT === 'showthread')
{
$template_hook['headinclude_css'] .= '<style>.postbit_badge {position: relative; left: 100px; top: -30px}</style>';
}
You can adjust the left and top values to your liking.
You could add what's inside the "style" tags to the plugin I posted in your other thread about preventing the join date from wrapping.
And then change the code I posted above to:
PHP Code:
$imagesrc = '';
if (is_member_of($post, array(14)))
{
$imagesrc = '5dc09irbp/mh_MJw6_U.png';
}
elseif (is_member_of($post, array(32)))
{
$imagesrc = 'h8jobvrud/gold.png';
}
if ($imagesrc)
{
$image = '<img class="postbit_badge" src="https://s32.postimg.org/' . $imagesrc . '" />';
$template_hook['postbit_userinfo_left'] .= $image;
}