Okay, I've fixed that problem and a CSS/Template file problem as well. So you can either download the theme again or follow this guide:
Okay, I've fixed a few bugs/problems and it's in the new zip for the theme on it's page in the themes site. If you've made changes and don't want to have to do them again, here's what I have changed:
index.template.phpFind:echo '
<div class="tborder" ', $context['browser']['needs_size_fix'] && !$context['browser']['is_ie6'] ? ' style="width: 100%;"' : '', '>';
Replace With:echo '
<div class="body-border">
<div class="tborder" ', $context['browser']['needs_size_fix'] && !$context['browser']['is_ie6'] ? ' style="width: 100%;"' : '', '>';
Find: (down above the </body> and ajax div)
echo '
</div></td></tr></table>';
Replace With: echo '
</div>
</div></td></tr></table>';
Find: echo '
<td class="', $direction == 'top' ? 'main' : 'mirror', 'tab_' , $context['right_to_left'] ? 'last' : 'first' , '"> </td>
<td height="40" valign="middle" class="', $direction == 'top' ? 'main' : 'mirror', 'tab_back">', implode(' ', $button_strip) , '</td>
<td class="', $direction == 'top' ? 'main' : 'mirror', 'tab_' , $context['right_to_left'] ? 'first' : 'last' , '"> </td>';
}
Replace With: echo '
<td class="', $direction == 'top' ? 'main' : 'mirror', 'tab_' , $context['right_to_left'] ? 'last' : 'first' , '"> </td>
<td valign="middle" class="', $direction == 'top' ? 'main' : 'mirror', 'tab_back">', implode(' ', $button_strip) , '</td>
<td class="', $direction == 'top' ? 'main' : 'mirror', 'tab_' , $context['right_to_left'] ? 'first' : 'last' , '"> </td>';
}
style.cssFind:/* By default (td, body..) use verdana in black. */
body, td, th , tr
{
color: #ffffff;
font-size: small;
font-family: verdana, sans-serif;
}
Replace With:/* By default (td, body..) use verdana in black. */
body, td, th , tr
{
color: #000000;
font-size: small;
font-family: verdana, sans-serif;
}
Find:/* These are the links in Pages [ 1 ], 2, 3, ... */
a.navPages:link, a.navPages:visited, a.navPages:active
{
color: #ffffff;
text-decoration: none;
}
a.navPages:hover
{
color: #ffffff;
text-decoration: underline;
}
Replace With:/* These are the links in Pages [ 1 ], 2, 3, ... */
a.navPages:link, a.navPages:visited, a.navPages:active
{
color: #000000;
text-decoration: none;
}
a.navPages:hover
{
color: #000000;
text-decoration: underline;
}
Find:.nav a:link, .nav a:visited, .nav a:active
{
color: #ffffff;
text-decoration: none;
}
.nav a:hover
{
color: #ffffff;
text-decoration: underline;
}
Replace With:.nav a:link, .nav a:visited, .nav a:active
{
color: #000000;
text-decoration: none;
}
.nav a:hover
{
color: #000000;
text-decoration: underline;
}
Find:/* This is the copyright links at the bottom of the page */
.copyright-links a:link, .copyright-links a:visited, .copyright-links a:active
{
color: #ffffff;
text-decoration: none;
}
.copyright-links a:hover
{
color: #ffffff;
text-decoration: underline;
}
Replace With:/* This is the copyright links at the bottom of the page */
.copyright-links a:link, .copyright-links a:visited, .copyright-links a:active
{
color: #000000;
text-decoration: none;
}
.copyright-links a:hover
{
color: #000000;
text-decoration: underline;
}
Find:/* This is the titles for the columns on the board index */
.column-title
{
text-align: center;
vertical-align: middle;
background: #efefef url("images/coltitle_bg.gif") bottom left repeat-x;
font-weight: bold;
color: #000000;
font-size: 80%;
}
Add this after:/* This is the border around the entire forum. */
.body-border
{
background-color: #ffffff;
border: 1px solid #000000;
padding: 6px 6px 0 6px;
}
Save these two images and replace your own with these:

and

I think that's it...