Okay, this is very simple (I hope). There are two sections to this. They may need to be modified to fit your board. This will remove the bar that says "FORUMS" "TOPICS" etc. and put them on the category name strip instead. ONLY DO THIS FOR THE NEWS FADER FIX! You will find these two sections in public_forum_summary.pl in th JCTemplates folder. This will not work right on the standard templates. backup your original file and replace the two sections below completly. Start here ################ sub CategoryStrip { my $CategoryStrip = qq~ $TBB
$TBT $CategoryName topics posts last post ~; return ($CategoryStrip); } #end category strip Stop here ################ Start here ################ sub Normal_Table_Top { # this is the table displayed on regular forum pages my $Top = qq~ ~; if (($vars_display{ForumTotalOption} eq 'Both') || ($vars_display{ForumTotalOption} eq 'Topics')) { $Top .= qq~ ~; } # end topic column if (($vars_display{ForumTotalOption} eq 'Both') || ($vars_display{ForumTotalOption} eq 'Posts')) { $Top .= qq~ ~; } # end posts column $Top .= qq~ ~; if ($vars_display{ShowMods} ne 'no') { $Top .= qq~ ~; } # end mods column $Top .= qq~ $TBB
$TBT ~; # Start News Fader Stuff # determine colspan $ColSpan = 3; if ($vars_display{ShowMods} eq 'yes') { $ColSpan++; } if ($vars_display{ForumTotalOption} eq 'Both') { $ColSpan = $ColSpan + 2; } else { $ColSpan++; } # Get post count for News Fader if ($vars_news_fader{nfstats} eq "POSTS") { $NewsStats = qq~"Current Forum Stats: $AllPosts Posts","",~; } elsif ($vars_news_fader{nfstats} eq "TOPICS") { $NewsStats = qq~"Current Forum Stats: $AllTopics Topics","",~; } elsif ($vars_news_fader{nfstats} eq "BOTH") { $NewsStats = qq~"Current Forum Stats: $AllTopics Topics and $AllPosts Posts","",~; } else { $NewsStats = ""; } if ($vars_news_fader{nfgreet} ne "") { $NewsGreet = qq~"$vars_news_fader{nfgreet}","",~; } else { $NewsGreet = ""; } if ($vars_news_fader{nfimgon} ne "OFF") { $NewsImg = qq~~; } else { $NewsImg = ""; } if ($vars_news_fader{nfimgon} ne "OFF") { $NewsTable = qq~$NewsImg~; } else { $NewsTable = ""; } if ($vars_news_fader{nfimgon} eq "OFF") { $NewsCols = $ColSpan; } else { $NewsCols = $ColSpan - 1; } if ($vars_news_fader{nfwidth} ne "") { $NewsWidth = "$vars_news_fader{nfwidth}"; } else { $NewsWidth = "700"; } if ($vars_news_fader{nfon} eq "ON") { # Run The News Fader &ReadNews; $Top .= qq~ $vars_news_fader{nftitle} $NewsTable
~; } else { $Top .= ""; } # End News Fader Stuff return ($Top); } #end normal_table_top Stop here ################ If you have any trouble with this then you are on your own. I modify too much of the template to make it easy to document. As always if you don't have a valid UBB license then you have no business using this code.