#### Add colored scrollbar HACK, #### by C.v. Marle (C.A.vanMarle@inter.NL.net) #### This hack creates a colored scrollbar # All the edits are done in setmembers.cgi # BACK-UP all your files before editing!!! # Don't blame me if your board's messed up [template.dat] >> Some lines above: >> Add this: BorderStuff # That's it for template.dat [ikon.lib] >> After this: ### Keep this program free, and leave that code intact. >> Add: $borderstuff = qq~ ~; >> Change: foreach my $line (@templatedata) { $line =~ s/\$page_title/$title/sg; $line =~ s/\$ikonboard_main/$output\n\n$copyright\n/sg; print $line; } >> To: foreach my $line (@templatedata) { $line =~ s/\$page_title/$title/sg; $line =~ s/BorderStuff/$borderstuff/isg; $line =~ s/\$ikonboard_main/$output\n\n$copyright\n/sg; print $line; } # That's it for ikon.lib [setstyles.cgi] >> After this: