Actually, here's a easier way to fix the color and it's the same code for all styles (should work for them all, it did for me and i have 8 styles on my forum):
Replace:
Code:
<tr>
<td class="$navclass[style]" style="white-space:nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=editstyle">$vbphrase[edit_style]</a></td>
</tr>
With this:
Code:
<tr class="alt2">
<td class="$navclass[style]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=editstyle">$vbphrase[edit_style]</a></td>
</tr>
Also add the following code to precache the templates:
Find
Code:
'editoptions' => array(
'modifyoptions',
'modifyoptions_timezone',
'userfield_checkbox_option',
'userfield_optional_input',
'userfield_radio',
'userfield_radio_option',
'userfield_select',
'userfield_select_option',
'userfield_select_multiple',
'userfield_textarea',
'userfield_textbox',
),
Add After
Code:
'editstyle' => array(
'modifystyle',
'modifystylebit'
),