When reviewing a private message you sent, one of the CSS background colours appears to be bright blue. Attached is a screenshot showing what I'm talking about (surrounded by a red box to denote what I'm referring to).
The HTML generated for the problematic section is:
You can see the style="background-color:lightblue" attribute being set explicitly. Not sure where this correlates in the underlying phpBB themes / etc., but it should probably be changed to what the previous message background looks like. The HTML for THAT is:
Note the lack of style attribute.
The HTML generated for the problematic section is:
Code:
<td width="100%" style="background-color:lightblue">
<div class="gensmall" style="float: left;"><b>Message subject:</b> NSFPlay 2.2 beta</div><div class="gensmall" style="float: right;"><b>Folder:</b> <a href="./ucp.php?i=pm&folder=0">Inbox</a></div>
</td>
<div class="gensmall" style="float: left;"><b>Message subject:</b> NSFPlay 2.2 beta</div><div class="gensmall" style="float: right;"><b>Folder:</b> <a href="./ucp.php?i=pm&folder=0">Inbox</a></div>
</td>
You can see the style="background-color:lightblue" attribute being set explicitly. Not sure where this correlates in the underlying phpBB themes / etc., but it should probably be changed to what the previous message background looks like. The HTML for THAT is:
Code:
<td width="100%">
<div class="gensmall" style="float: left;"><b>Message subject:</b> Re: NSFPlay 2.2 beta</div><div class="gensmall" style="float: right;"><b>Folder:</b> <a href="./ucp.php?i=pm&folder=-1">Sent messages</a></div>
</td>
<div class="gensmall" style="float: left;"><b>Message subject:</b> Re: NSFPlay 2.2 beta</div><div class="gensmall" style="float: right;"><b>Folder:</b> <a href="./ucp.php?i=pm&folder=-1">Sent messages</a></div>
</td>
Note the lack of style attribute.