ericgtr |
08-19-2006 01:13 PM |
Quote:
Originally Posted by jdk10
How about changing the cells background color too?
|
Well, I think this will work (untested)
Change this:
Code:
<if condition="$bbuserinfo['pmunread']">
<td class="alt2" valign="top" nowrap="nowrap">
<a href="/forum/private.php?$session[sessionurl]"><img src="$stylevar[imgdir_misc]/newpm.gif" alt="You have a new PM" border="0"></a>
</td>
</if>
To this:
Code:
<if condition="$bbuserinfo['pmunread']">
<td class="pmbg" valign="top" nowrap="nowrap">
<a href="/forum/private.php?$session[sessionurl]"><img src="$stylevar[imgdir_misc]/newpm.gif" alt="You have a new PM" border="0"></a>
</td>
</if>
Now, add this to your CSS by going to Style Manager > Main CSS and scroll to the very bottoms, then paste this into the bottom box of the Additional CSS Definitions:
Code:
.pmbg
{
background-color: #FFFFFF;
color: #000000;
}
Change the colors around to fit.
|