Andy-
Try this:
Find the forumbit template that calls the forum on your forumhome (this will vary depending on your forum hierarchy).
In that template, Find:
Code:
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">
<strong>$forum[title]</strong>
</a>
Change it to:
Code:
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]<if condition="$forum[forumid] = ##">&order=asc&sort=title</if>">
<strong>$forum[title]</strong>
</a>
Replace the ## in the above code with the ID number of the forum you want to affect.
This should cause that forum to be displayed in ascii order by title.
--don