タイトルですが、nik.cgiから、該当部分を直接削除します。
「$title」で検索をかければ、タイトルが表示されているところが分かると思います。
具体的には438行目あたり
if ($ht_iti) {
print qq|<div align="|;
if ($ht_iti == 1) {
print qq|center|;
} elsif ($ht_iti == 2) {
print qq|left|;
} elsif ($ht_iti == 3) {
print qq|right|;
}
print qq|">|;
}
print qq|<font color="$hti_c"| if $ht_iti;
print qq| size="$ht_io"| if $ht_iti and $ht_io;
print qq|>$title</font>| if $ht_iti;
if ($ht_iti) {
print qq|</div>\n|;
}
全消し
3136行目辺り
if ($ht_iti) {
$test .= qq|<div align="|;
if ($ht_iti == 1) {
$test .= qq|center|;
} elsif ($ht_iti == 2) {
$test .= qq|left|;
} elsif ($ht_iti == 3) {
$test .= qq|right|;
}
$test .= qq|">|;
}
$test .= qq|<font color="$hti_c"| if $ht_iti;
$test .= qq| size="$ht_io"| if $ht_iti and $ht_io;
$test .= qq|>$title</font>| if $ht_iti;
if ($ht_iti) {
$test .= qq|</div>\n|;
}
全消し。
|