MyBB Community Forums

Full Version: Plugin > Layout is incorrect
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
See attachment Picture...

As you can see 'Group Legend' is in the wrong coloumn? its's in the picture section..It should be one to the left and stretch across like the users online above it.

I also added the php Plugin file that i used..so you can see the source.

Cheers in advanced - L3mmy Rolleyes
Add colspan="2" to both the >td> tags in the template for the plugin.
	$template = array(
		"tid"		=> NULL,
		"title"		=> "usergroup_legend",
		"template"	=> "<tr>colspan="2"<td class=\"tcat\"><strong>Group Legend</strong></td></tr>
<tr><td class=\"trow1\">{\$usertitles}</td></tr>",
		"sid"		=> "-1"
	);

You mean like this? I am not too good with PHP yet..im more of a Visual Basic guy Smile

Cheers
Well if you put it there you'd have to deactivate and reactivate it, no real need to do that. Instead, go to ACP > Templates & Style > Templates > Global Templates > **template for plugin** > and add the code to the <td> tags.
Ok i found this...

<tr><td class="tcat"><strong>Group Legend</strong></td></tr>
<tr><td class="tcat1">{$usertitles}</td></tr>

Is this where i should add it? and where abouts?
<tr><td class="tcat" colspan="2"><strong>Group Legend</strong></td></tr><tr><td class="tcat1" colspan="2">{$usertitles}</td></tr>

That should do it.
Thanks a bunch Smile that worked like a treat Smile Cheers.
Ok..More problems in my world..Whats up with this?

<!-- start: usergroup_legend -->
<tr>
<td class="tcat" colspan="2">
<div class="expcolimage"><img src="images/greenfox/thead_collapse.gif" id="boardstats_img" class="expander" alt="[-]" title="[-]" /></div>
<span class="smalltext"><strong>Group Legend</strong></span></td>
</tr>
<tbody style="" id="boardstats_e">
<td class="trow2" valign="middle" align="center"><img src="images/greenfox/online.gif"></td>
<td class="trow1" width="100%"><span class="smalltext">[Guests] [Registered] [<span style="color: #CC00CC;"><strong>Super Moderators</strong></span>] [<span style="color: green;"><strong><em>Administrators</em></strong></span>] [Awaiting Activation] [<span style="color: #CC00CC;"><strong>Moderators</strong></span>] [<s>Banned</s>] </td>
</tr>
</tbody>
<!-- end: usergroup_legend --> 

What it does is Collapses the box above (Whos online box) instead of my usergroups one.