Home > WordPress > WordPress のテーマを変更

WordPress のテーマを変更

5月 26th, 2009

テーマを変更してみた。

下記の条件でよさげだったのが Poetry。

  • 上側に固定ページへのリンクを置ける
  • 2 カラムで左側に本文

Poetry
http://wordpress.org/extend/themes/poetry

んで、上側に外部への固定リンクを追加
wp-content/themes/poetry/templates/header.php

<ul id="menus">
    <li class="<?php echo($home_menu); ?>"><a class="home" title="<?php _e('Home', 'inove'); ?>" href="<?php echo get_settings('home'); ?>/"><?php _e('Home', 'inove'); ?></a></li>
    // ここに追加
    <li class="page_item page-item-bbs"><a href="http://bbs.0154.jp/" title="BBS">BBS</a></li>
    <li class="page_item page-item-enc"><a href="http://enc.0154.jp/" title="ENC">ENC</a></li>

あと、リスト要素の inside がイヤだったから outside に変更
wp-content/themes/poetry/style.css

.post .content ul li,
.post .content ol li {
/*
	list-style-position:inside;
	padding-left:20px;
*/
	list-style-position:outside;
	margin-left:20px;
}

ほいで、本文下のカテゴリー表示が近い気がしたので margin-top を追加
wp-content/themes/poetry/style.css

.post .content .under {
	height:16px;
	line-height:16px;
	margin-top:10px;
}

かじゅ WordPress ,

  1. No comments yet.
  1. No trackbacks yet.