MyBB Community Forums

Full Version: MyMood help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When the MyMood mod displays in the postbit, it's right next to the reputation. How can I get it to go under the reputation instead of right next to it?

You can see what I'm talking about here:
http://swiftblade.net/forums/showthread....pid=2#pid2
can you send here your postbit and postbit_author codes here?

you only add a break ( <br /> ) between reputation and mood variables which are in postbit or postbit_author templates...
In your mood_postbit template

Find
<span class=\"smalltext\">{\$lang->mood_mood}: {\$post[\'mood\']}<br /></span>

Replace with
<br /><span class=\"smalltext\">{\$lang->mood_mood}: {\$post[\'mood\']}<br /></span>
that made it worse...Huh
Just add a <br /> in front of the <span>

<br /><span class=\"smalltext\">{$lang->mood_mood}: {$post['mood']}</span><br />

OR

open the pluginfile
Find
$post['user_details'].=$post['mood'];

Change into
$post['user_details'].= "<br />".$post['mood'];