I have a set of titles to show up in the postbit if a user is in a particular usergroup. For instance, usergroup A will show "Member A," while group D will show "Member of D." I'm trying to put them above the "Join Date" in the upper right corner of a user's post.
They work fine; however, if the user is only in one usergroup (i.e. C), it leaves spaces where A, B, D and E would go. Another example, if they were in groups B and E, there's a blank space for the A line, then it shows the title for B, but then 3 spaces are blank for C, D and E.
Here are the conditionals I'm using:
<if condition="is_member_of($post, 7)"><i><b>Usergroup A</b></i></if><br /> <if condition="is_member_of($post, 14)"><font color="#666666"><b>Usergroup B</b></font></if><br /> <if condition="is_member_of($post, 12)"><font color="#008000"><b>Usergroup C</b></font></if><br /> <if condition="is_member_of($post, 11)"><font color="#FF0000"><b>Usergoup D</b></font></if><br /> <if condition="is_member_of($post, 13)"><font color="#0000FF"><b>Usergroup E</b></font></if>
Comment