I found another problem related to how the Sub-Forum List Control is handling the <ol> tag. When the parse_templates plugin replaces the data for categories it removes an <ol> tag that is defining the container that holds the displayed data, while leaving the closing </ol> tag. This causes the container to close early, leaving all remaining forums, and the footer outside of the bounding box. I can fix it by commenting out the removal of the <ol> tag as indicated below, but that causes problems with the table width resulting in the sub-forums getting bunched up to the left rather than properly spaced as intended by the mod. This is apparently caused by the class attribute in the <ol> tag. I modified the plugin to remove the class attribute and have satisfactory results.
In the parse_templates plugin:
Replace:
PHP Code:
$vbulletin->templatecache[forumhome_forumbit_level1_nopost] = str_replace($Sorky01_SubforumOLBefore , '', $vbulletin->templatecache[forumhome_forumbit_level1_nopost]);
With:
PHP Code:
// hack to correct forum home formatting
$Sorky01_SubforumOLReplace = '<ol>' . "\r\n";
$vbulletin->templatecache[forumhome_forumbit_level1_nopost] = str_replace($Sorky01_SubforumOLBefore , $Sorky01_SubforumOLReplace, $vbulletin->templatecache[forumhome_forumbit_level1_nopost]);
// end hack