基本的に相対パスを使用しているはずなので、
テンプレートを使っているのでしたら、
2251行目辺りのIMGタグ(4つ)とすぐ下の
2282行目辺りのIMGタグ(4つ)を修正すればできるような・・・
if ($width_img != $_[8] or $height_img != $_[9]) {
if ($_[10]) {
$honbun_tmp .= qq|<center>\n|;
$honbun_tmp .= qq|<a href="$_[7]" target="_blank"><img src="$_[7]" border="0"$sz></a><br>\n|;
$honbun_tmp .= qq|</center>\n|;
$honbun_tmp .= qq|<br>\n|;
} else {
$honbun_tmp .= qq|<a href="$_[7]" target="_blank"><img src="$_[7]" border="0" align="left"$sz></a>\n|;
}
} else {
if ($_[10]) {
$honbun_tmp .= qq|<center>\n|;
$honbun_tmp .= qq|<img src="$_[7]" border="0"$sz><br>\n|;
$honbun_tmp .= qq|</center>\n|;
$honbun_tmp .= qq|<br>\n|;
} else {
$honbun_tmp .= qq|<img src="$_[7]" border="0" align="left"$sz>\n|;
}
}
↑このへん
|