2
Hello!,
Im using the default template also on a few sites, and I have had to fix this problem since the default theme with xoops2.0.7 is broken right now in my opinion. (i guess they want you to install a new theme :) )
Heres one way to fix it:
Open /themes/default/style.css
Add this right after the TH style tag:
.onth {color: #ffffff;}
(save,upload)
then open /modules/newbb/templates/newbb_index.html
and about line 16: change this
<tr align="left" valign="top">
<th colspan="6">
<a href="<{$xoops_url}>/modules/newbb/index.php?cat=<{$categories[category].cat_id}>">
<{$categories[category].cat_title}>a>th>
tr>
to this:
<tr align="left" valign="top">
<th colspan="6">
<a class="onth" href="<{$xoops_url}>/modules/newbb/index.php?cat=<{$categories[category].cat_id}>">
<{$categories[category].cat_title}>a>th>
tr>
notice I added class="onth" to the A tag
Then upload /modules/newbb/templates/newbb_index.html
Then go into Admin -> Modules -> newbb
and click on "Update"
You should see no errors.
Then go to your forum front and you should see the categories are visible (using White)
I hope that helps!
_Dan