No problem here either. It's just that as sad as it may be appearences can be important. And you're young, you're not a child.

anyway, the message line thing interests me. ikonboard doesn't. I don't know how they do it but I came up with something that may be totally different. There are no changes to the db and only a couple of changes to messageindex. What it does is display the first line of the post underneath the message title (actually the first 40 characters). So here's the code, if anyone finds it useful great, if not oh well.

I will be using it on my new board.
find this
// Begin printing the message index for current board.
while ($row = mysql_fetch_assoc($result))
{
if ($row['ID_POLL'] != '-1' && $modSettings['pollMode'] == 0)
continue;
$lastposter = $row['posterName'];
$lastPosterID = $row['ID_MEMBER'];
$mdate = $row['posterTime'];
$mname = $row['mname'];
$mid = $row['mid'];
$msub = $row['msub'];
$micon=$row['micon'];
$mnum = $row['ID_TOPIC'];
$mreplies = $row['numReplies'];
$mstate = $row['locked'];
$views = $row['numViews'];
$isSticky = $row['isSticky'];
$pollID = $row['ID_POLL'];
$topicEditedTime = $row['posterTime'];
$name1 = $row['posterDisplayName'];
$name2 = $row['firstPosterDisplayName'];
and add after
$lastmsgid = $row['ID_LAST_MSG'];
$result2 = mysql_query("SELECT body FROM messages WHERE ID_MSG = '$lastmsgid';") or database_error(__FILE__, __LINE__);
$getline = mysql_fetch_assoc($result2);
$msgbody = $getline['body'];
$subjectline = substr($msgbody, 0, 40);
Next find this
echo '
<tr>
<td class="windowbg2" valign="middle" align="center" width="6%" bgcolor="' . $color['windowbg2'] . '">
<img src="' . $imagesdir . '/' . $threadclass . '.gif" alt="" /></td>
<td class="windowbg2" valign="middle" align="center" width="4%" bgcolor="' . $color['windowbg2'] . '">
<img src="' . $imagesdir . '/' . $micon . '.gif" alt="" border="0" align="middle" /></td>
<td class="windowbg" valign="middle" width="48%" bgcolor="' . $color['windowbg'] . '">
<font size="2"><a href="' . $cgi . ';action=display;threadid=' . $mnum . '">' . $msub . '</a> ' . $new . ' ' . $pages . '</font></td>
<td class="windowbg2" valign="middle" width="14%" bgcolor="' . $color['windowbg2'] . '">
<font size="2">' . $mname . '</font></td>
<td class="windowbg" valign="middle" width="4%" align="center" bgcolor="' . $color['windowbg'] . '">
<font size="2">' . $mreplies . '</font></td>
<td class="windowbg" valign="middle" width="4%" align="center" bgcolor="' . $color['windowbg'] . '">
<font size="2">' . $views . '</font></td>
<td class="windowbg2" valign="middle" width="27%" bgcolor="' . $color['windowbg2'] . '">
<font size="1">' . $mydate . '<br />' . $txt[525] . ' ' . $lastposter . '</font></td>
</tr>';
and replace with
echo '
<tr>
<td class="windowbg2" valign="middle" align="center" width="6%" bgcolor="' . $color['windowbg2'] . '">
<img src="' . $imagesdir . '/' . $threadclass . '.gif" alt="" /></td>
<td class="windowbg2" valign="middle" align="center" width="4%" bgcolor="' . $color['windowbg2'] . '">
<img src="' . $imagesdir . '/' . $micon . '.gif" alt="" border="0" align="middle" /></td>
<td class="windowbg" valign="middle" width="48%" bgcolor="' . $color['windowbg'] . '">
<font size="2"><a href="' . $cgi . ';action=display;threadid=' . $mnum . '">' . $msub . '</a> ' . $new . ' ' . $pages . '<br />' . $subjectline . '</font></td>
<td class="windowbg2" valign="middle" width="14%" bgcolor="' . $color['windowbg2'] . '">
<font size="2">' . $mname . '</font></td>
<td class="windowbg" valign="middle" width="4%" align="center" bgcolor="' . $color['windowbg'] . '">
<font size="2">' . $mreplies . '</font></td>
<td class="windowbg" valign="middle" width="4%" align="center" bgcolor="' . $color['windowbg'] . '">
<font size="2">' . $views . '</font></td>
<td class="windowbg2" valign="middle" width="27%" bgcolor="' . $color['windowbg2'] . '">
<font size="1">' . $mydate . '<br />' . $txt[525] . ' ' . $lastposter . '</font></td>
</tr>';
Disclaimer: This works on my board, it may or may not work on yours. And I definately am in no way shape or form affliated with or related to the YaBB development team.