サイトマップ(sitemap.php)の変更

サイトマップ(sitemap.php)の文字デザインだけでも変更したい。

単なる思いつきの方法
「sitemap.php」の該当部分にclass指定をしてcustom.cssで指定する。

 

「sitemap.php」の
90行からの
        $retval .='<h2>';

        $retval .='<h2 class="sitemap" >';
とclass指定する。

custom.cssで
h2.sitemap {
  font-size: 105%;
  font-weight: bold;
  color:#333333;
}

h2.sitemap a {
  font-size: 105%;
  font-weight: bold;
  color:#666666;
}
のようにclass指定する。
「h2」だけではなくリンクの「a」にも指定する。

2007/8/28追記

147行目の<p>にも同じくクラス指定する。

GLTMatrix: サイトマップ(sitemap.php)の変更
http://gltmatrix.com/article.php/resitemap