MyBB Community Forums

Full Version: [How to] Have the pid details shown in different color(fieldset?)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i ve recently seen a feature i havent seen in my forum.

Every post here, is having a this
[attachment=28534]
although it is missing from my board

I ve searched the templates (even Mybb default ones) but there is nothing
there seeming related to a command that will make that happen

So is it a plugin?

If not so, how can i do it too?

I am on 1.6.8 still btw.
sorry to bump this
well it seems this is a "td.cat" line on CSS or probably post_bit templates right?

here is my postbit template.
{$ignore_bit}
<a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="{$post_extra_style} {$post_visibility}" id="post_{$post['pid']}">
	<tbody>
		<tr>
			<td class="tcat">
				<div class="float_left smalltext">
					{$post['postdate']}, {$post['posttime']} <span id="edited_by_{$post['pid']}">{$post['editedmsg']}{$post['edithistory']}</span>
				</div>
				{$post['posturl']}
			</td>
		</tr>

		<tr>
			<td class="trow1 {$unapproved_shade}">
				<table cellspacing="0" cellpadding="0" border="0" style="width: 100%;">
					<tr>
						<td class="post_avatar" width="1" style="{$post['avatar_padding']}">
							{$post['useravatar']}
						</td>
						<td class="post_author">
							<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
							<span class="smalltext">
								{$post['usertitle']}<br />
								{$post['userstars']}
								{$post['groupimage']}
							</span>
						</td>
						<td class="smalltext post_author_info" width="165">
							{$post['user_details']}{$post['ougc_awards']}
						</td>
					</tr>
can anyone tell what to add to have this short of effect

here is a picture with the problem i am having
although 1st post is being opened with the effect i need,
the very following one, is not
In classic postbit tcat does not appear.

Anyways solution is here

http://community.mybb.com/thread-126197-...#pid912818