<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>monolog...</title>
<link>http://monolog.devgiri.org/index.php</link>
<pubDate>Fri, 19 Aug 2011 16:55:23 +0900</pubDate>
<description>monolog...</description>
<language>ja</language>
<generator>Loggix</generator>
<item>
<title>WordPress｜Vicuna2.0.3｜Style-Future の組み合わせで使う場合の Bug Fix</title>
<guid isPermaLink="true">http://monolog.devgiri.org/index.php?id=130</guid>
<pubDate>Fri, 19 Aug 2011 16:55:23 +0900</pubDate>
<description><p>
<br />Field Notebook.で表題の組み合わせを使用していますが、サイドバーの FEEDS の所のレイアウトが崩れているのがずっと気になっていた。たまたま、WordPress Vicuna2.0.3でStyle-Futureを使う際の注...</p>
</description>
<content:encoded>
<![CDATA[
<p>
<a href="http://fieldnote.devgiri.org/">Field Notebook.</a>で表題の組み合わせを使用していますが、サイドバーの FEEDS の所のレイアウトが崩れているのがずっと気になっていた。たまたま、<a href="http://pc.mogeringo.com/archives/1084">WordPress Vicuna2.0.3でStyle-Futureを使う際の注意点・カスタマイズ</a>という記事を見つけたので修正してみた。</p>
<p>参考にした記事では、</p>
<ol>
<li>スキンの選択画面にStyle-Futureが現れないのを修正</li>
<li>FEEDS部分がはみ出てしまう現象とFEEDSのアイコンが出てこないのを修正</li>
</ol>
<p>という2点が取り上げられていますが、私のところでは1つめの問題は起きていないので、FEEDS部分の修正のみを行った。</p>
<p>なお、元記事の通りに修正してもFEEDSのアイコンが現れなかったので、実際には元記事の対処法に加えて更にひと工夫している。</p>
<p>修正箇所は、/wp-content/themes/wp.vicuna/skins/style-future/core.cssの881～895行目。</p>
<ul>
<li>修正前</li>
</ul>
<div class="command">
<pre>
/* Feeds
---------------*/
 
div#utilities dl.others dd ul.feed {
    list-style-type: none;
}
 
div#utilities dl.others dd ul.feed li {
    margin-left: 10px;
}
 
div#utilities dl dd ul.feed li a {
    padding-left: 20px;
    background: url(images/icon/icon_feed.gif) no-repeat;
}
</pre>
</div>
<ul>
<li>修正後</li>
</ul>
<div class="command">
<pre>
/* Feeds
---------------*/
div#utilities dl.others dd.feed ul {
    list-style-type: none;
}
 
div#utilities dl.others dd.feed ul li {
    margin-left: 10px;
    padding-left: 20px;
    background: url(images/icon/icon_feed.gif) no-repeat;
}
 
div#utilities dl.other dd.feed ul li a {
    padding-left: 20px;
}
</pre>
</div>
<p>元記事の対処方法との違いは、FEEDSアイコンをBackground表示させる指定の指定場所を変更したことと、アイコンへの文字かぶりを避けるためのpadding-left指定を追加したこと。元記事どおりに修正してもFEEDSアイコンは現れなかった。</p>
]]>
</content:encoded>
</item>
</channel>
</rss>
