2010-05-26

CSSの変更

今まで使用してきた
default_2007_00.css

default_2007_ggiwfish.css

default_2010_00.css

default_2010_ggiwfish.css
に変更し一部に適用

xhtmlを整理
公開当初から本文インデントのために使用していた
<div id="layer1" class="article_01">

<!--div id="layer1" class="article_01--">
、と使用中止し
< div id="main_contents">

/*html > body */#main_contents p{
font-size: 100%;
text-indent: 1em;
line-height: 1.5em;
}
/*html > body */#main_contents br{
clear: both;
}
を適用する。
また、
本文中イメージ表示領域に
div.img_box_left{
clear : both;
float: left;
}
div.img_box_right{
clear : both;
float: right;
}

使用した後表示が乱れるためクリアーする
.float_clear{
clear : both;
}

< br class="float_clear" / >
として、クリアーしていたものを

#main_contents br{
clear: both;
}

、としてファイルサイズの減量と、入力の省力を図る。