I did the following, I replaced this code in the boardindex.php:
Quote<td class="windowbg2" align="left" width="60%">
<a name="b' . $row_board['ID_BOARD'] . '"></a>
<font size="2"><b><a href="' . $scripturl . '?board=' . $row_board['ID_BOARD'] . '">' . $row_board['boardName'] . '</a></b><br />
' . $row_board['description'] . '</font>' . $showmods . '
</td>
with this:
Quote<td class="windowbg2" align="left" width="60%">
<a name="b' . $row_board['ID_BOARD'] . '"></a>
<font size="2"><b><a href="' . $scripturl . '?board=' . $row_board['ID_BOARD'] . '">' . $row_board['boardName'] . '</a></font></b><br />
<font size="1">' . $row_board['description'] . '</font>' . $showmods . '
</td>
seems to work fine....is this a sufficient enough solution or will this give me any problems?