Coloring Background of Posts

  • Thread starter Thread starter Deleted member 7467
  • Start date Start date
D

Deleted member 7467

Does anyone know of a way I can completely color in the background of a certain user's or a certain group's post?

http://prntscr.com/2mad7y

That is an example of what I'm looking for, but I need it for IPB 3.4.4 as opposed to Zetaboards. I appreciate anyone who is able to help/point me in the right direction.
 
pandaa said:
http://invisionmodding.com/tutorials/article/511-admins-post-background/

This should still work even though it's designed for IPB 2. 🙂
You sure it will work? 0.0
 
Matthew said:
pandaa said:
http://invisionmodding.com/tutorials/article/511-admins-post-background/

This should still work even though it's designed for IPB 2. 🙂
You sure it will work? 0.0

If the code has stayed the same, yes. Just make a backup first just to be sure.
 
That method works but it doesn't color in the entire post like I'm needing it too. Anyone know how to remedy this?
 
Add the following code around where you want the color to change (should be around the table td or something similar.

Code:
<if="in_array( intval( $author['mgroup'] ), array( 6,4 ) )">
CODE HERE
</if>

Then add this CSS class "postadmin". Example below:

Code:
<td width="100%" valign="top" class="postadmin">
thread list here
</td>
 
Back
Top Bottom