I have sorted it out!

In my BoardIndex.template.php file I found the following:
echo '</a>
</td>
<td class="windowbg2">
<b><a href="', $board['href'], '" name="b', $board['id'], '">', $board['name'], '</a></b>';
if (!empty($board['description']))
and I went back to the original file and change it too:
echo '</a>
</td>
<td class="windowbg2">
<b><a href="', $board['href'], '" name="b', $board['id'], '">', $board['name'], '</a></b><br />
', $board['description'];
And now it is working!!!
Thanks for all your help!!!