One last note. I found what was the cause of the problem.
It was External link hack 1.1
When you edit the index.php it really breaks something, you do the following and then all your nicley spaced forums suddenly crunch back together.
Now you have to upload this file and download the index.php.
##### Find #####
eval("\$forumbits .= \"".gettemplate("forumhome_forumbit_level$depth$te mpext")."\";");
##### Replace it with #####
if ($forum['link']) {
eval("\$forumbits .= \"".gettemplate("forumdisplay_linkbit_level$depth" )."\";");
} else {
eval("\$forumbits .= \"".gettemplate("forumdisplay_forumbit_level$depth $tempext")."\";");
}
|