OK, I found one fix -
In profile.php
Find:
Code:
$templatename = 'modifystyle';
Replace with:
Code:
// draw cp nav bar
construct_usercp_nav('style');
$navbits[''] = $vbphrase['edit_style'];
$templatename = 'modifystyle';
That will make the colors appear correctly when you are in the actual style preview page.
I was having problems getting the code to work correctly to fix the color on the usercp, so here is a sloppy patch until it actually gets fixed.
In USERCP_SHELL
Find:
Code:
<tr>
<td class="$navclass[style]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=editstyle">$vbphrase[edit_style]</a></td>
</tr>
Replace with:
Code:
<tr bgcolor="#222222">
<td class="$navclass[style]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=editstyle">$vbphrase[edit_style]</a></td>
</tr>
I just entered the color I wanted, and it worked. I hope someone can fix this hack so that the right variable gets shown... :disappointed: