問題点回避 ふるいむかし
font-weight: normal; の為に、タグによるボールド指定が 反映されません。この部分を削除するか、ボールド指定を span + インラインスタイルで行なう必要があります。 ちなみに、削除するとフォントの表現が変わる箇所があります
/* すべて */ * { margin: 0; padding: 0; font-family: Verdana, Arial, sans-serif; font-weight: normal; }
|
font-weight: normal; の為に、タグによるボールド指定が 反映されません。この部分を削除するか、ボールド指定を span + インラインスタイルで行なう必要があります。 ちなみに、削除するとフォントの表現が変わる箇所があります
/* すべて */ * { margin: 0; padding: 0; font-family: Verdana, Arial, sans-serif; font-weight: normal; }
画面を小さくした時に崩れない為の変更#box { position: absolute; left: 0px; top: 0px; right: 0px; } #banner-header { width: 100%; }
height:40px; のピクセル数は Mozilla で適用されます。 IE では height 属性が必要なので記述しています。 ( Mozilla では、背景色で表示されます )
#banner { padding: 15px; border-bottom: 1px solid #666699; color: #999999; background: #00008b; background-position: right top; background-repeat: no-repeat; /* background-image: url(".gif");*/ text-align: left; /* 以下を追加 */ height:40px; width: 100%; filter:progid:DXImageTransform.Microsoft.Gradient( startColorStr="#00008B", endColorStr="#4169E1", gradientType="1" ); }
<? $ftp_server="********"; $ftp_user="********"; $ftp_pass="********"; $base_dir = "/mt/"; $ftp_file[0]= $base_dir . "mt-add-notify.cgi"; $ftp_file[1]= $base_dir . "mt-atom.cgi"; $ftp_file[2]= $base_dir . "mt-check.cgi"; $ftp_file[3]= $base_dir . "mt-comments.cgi"; $ftp_file[4]= $base_dir . "mt-config.cgi"; $ftp_file[5]= $base_dir . "mt-db2sql.cgi"; $ftp_file[6]= $base_dir . "mt-search.cgi"; $ftp_file[7]= $base_dir . "mt-send-entry.cgi"; $ftp_file[8]= $base_dir . "mt-tb.cgi"; $ftp_file[9]= $base_dir . "mt-testbg.cgi"; $ftp_file[10]= $base_dir . "mt-upgrade.cgi"; $ftp_file[11]= $base_dir . "mt-view.cgi"; $ftp_file[12]= $base_dir . "mt-xmlrpc.cgi"; $ftp_file[13]= $base_dir . "mt.cgi"; $conn=ftp_connect($ftp_server); if (!$conn) { die('接続できません'); } $result=@ftp_login($conn, $ftp_user, $ftp_pass); if (!$result) { die('ログインできません'); } ftp_pasv($conn, true); $max = count($ftp_file); for( $i = 0; $i < $max; $i++ ) { usleep(100000); $chmod_cmd="CHMOD 0755 " . $ftp_file[$i]; $chmod=ftp_site($conn, $chmod_cmd); } ftp_close($conn); ?>
|