<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>テクニカル備忘録 &#187; arthemia</title>
	<atom:link href="http://hotmenu.jp/tech/?feed=rss2&#038;tag=arthemia" rel="self" type="application/rss+xml" />
	<link>http://hotmenu.jp/tech</link>
	<description>wordpressのことMacのこと…</description>
	<lastBuildDate>Thu, 30 Jul 2015 07:48:14 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title>arthemiaのfooter…most commentうんぬんの削除</title>
		<link>http://hotmenu.jp/tech/?p=167</link>
		<comments>http://hotmenu.jp/tech/?p=167#comments</comments>
		<pubDate>Sat, 21 Aug 2010 13:58:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[arthemia]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[カスタマイズ]]></category>
		<category><![CDATA[arth]]></category>
		<category><![CDATA[footer.php]]></category>
		<category><![CDATA[フッタ]]></category>

		<guid isPermaLink="false">http://hotmenu.jp/tech/?p=167</guid>
		<description><![CDATA[arthemiaのフッタにある「Most Commented」はfooter.phpに直接記述されているためウィジェット等の設定で消せません。
しょうがないんで(^^)実力行使で下記をカットしてしまいました。
[php]

]]></description>
				<content:encoded><![CDATA[<p>arthemiaのフッタにある「Most Commented」はfooter.phpに直接記述されているためウィジェット等の設定で消せません。<br />
しょうがないんで(^^)実力行使で下記をカットしてしまいました。<span id="more-167"></span><br />
[php]</p>
<ul><?php $result = $wpdb->get_results(&#8220;SELECT comment_count,ID,post_title FROM $wpdb->posts ORDER BY comment_count DESC LIMIT 0 , 5&#8243;); 	foreach ($result as $topfive) { 	$postid = $topfive->ID; 	$title = $topfive->post_title; 	$commentcount = $topfive->comment_count;  	if ($commentcount != 0) { ?>
<li><a href="<?php echo get_permalink($postid); ?>&#8221; title=&#8221;<?php echo $title ?>&#8220;><?php echo $title ?></a></li>
<p> 	<?php } } ?>
</ul>
<p>[/php]</p>
<p>で、消えました。<br />
<img src="http://hotmenu.jp/tech/wp-content/uploads/2010/08/kieta.jpg" alt="" title="kieta" width="570" height="343" class="alignnone size-full wp-image-171" /><br />
今回はそんだけ</p>
]]></content:encoded>
			<wfw:commentRss>http://hotmenu.jp/tech/?feed=rss2&#038;p=167</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>arthemiaのイメージ枠カスタマイズ等</title>
		<link>http://hotmenu.jp/tech/?p=155</link>
		<comments>http://hotmenu.jp/tech/?p=155#comments</comments>
		<pubDate>Thu, 12 Aug 2010 02:17:03 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[カスタマイズ]]></category>
		<category><![CDATA[arthemia]]></category>
		<category><![CDATA[h2]]></category>
		<category><![CDATA[イメージ]]></category>
		<category><![CDATA[イメージ枠]]></category>
		<category><![CDATA[ボーダー]]></category>
		<category><![CDATA[見出し]]></category>

		<guid isPermaLink="false">http://hotmenu.jp/tech/?p=155</guid>
		<description><![CDATA[
うちのメインのWEB、ほっとメニューのルックスを少々修正しました。
・見出しをちょっと目立つようにしたのと
・写真の周りに表示される枠のコントロール
　おおっ今回はとても思い通りにいきましたぞ、ちょっとだけCSSのスキルか上がったかなと気分がいい今日この頃です。
　きっと富士山で言えば３合目ぐらいかなというトコでしょうが…
■＜h2＞の定義
色とサイズ変えて下に線引いて、上にマージンとりました
・style.cssの214行目あたり
[css]h2 {
	font:1.8em Meiryo, &#8220;Times New Roman&#8221;;[/css]
を
[css]h2 {
	margin-bottom:2px;
	color:#00958c;
	font-weight:bold;
	width: 100%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #69d4a3;
	display: block;
	font-family: Arial;
	font-size: 1.1em;
	margin-top: 10px;
	}[/css]
■イメージの枠処理
　トップのサムネイルの枠は残し、
　　枠内は白で塗りつぶし
　本文中の枠をとり左マージンを追加
　
・style.cssの523行目あたり
[css].post img, .post a img, #front-list img, #archive img {
	border:0px;
	margin:0 10px 5px 0px;
	padding:2px;
	}[/css]
を下記に変更しました。
[css]#front-list img, #archive img {
	border:1px solid #ccc;
	margin:0 10px 5px 0;
	padding:2px;
	background-color: #FFFFFF;
	}
.post img, .post a img{
	border:0px;
	margin:0 10px 5px 5px;
	padding:2px;
	}[/css]
しかしこのサイトもarthemiaなわけですが、ここはほったらかしです。
日付とかもみっともない…昔、就職試験に出た「紺屋の白袴」ということわざを思い出しました。
]]></description>
				<content:encoded><![CDATA[<p><a href="http://hotmenu.jp/tech/wp-content/uploads/2010/08/tech100811.jpg"><img src="http://hotmenu.jp/tech/wp-content/uploads/2010/08/tech100811-300x179.jpg" alt="" title="tech100811" width="300" height="179" class="alignnone size-medium wp-image-160" /></a><br />
うちのメインのWEB、<a href="http://hotmenu.jp" target="_blank">ほっとメニュー</a>のルックスを少々修正しました。<br />
・見出しをちょっと目立つようにしたのと<br />
・写真の周りに表示される枠のコントロール<br />
　おおっ今回はとても思い通りにいきましたぞ、ちょっとだけCSSのスキルか上がったかなと気分がいい今日この頃です。<br />
　きっと富士山で言えば３合目ぐらいかなというトコでしょうが…<span id="more-155"></span></p>
<p>■＜h2＞の定義<br />
色とサイズ変えて下に線引いて、上にマージンとりました<br />
・style.cssの214行目あたり<br />
[css]h2 {<br />
	font:1.8em Meiryo, &#8220;Times New Roman&#8221;;[/css]<br />
を<br />
[css]h2 {<br />
	margin-bottom:2px;<br />
	color:#00958c;<br />
	font-weight:bold;<br />
	width: 100%;<br />
	border-bottom-width: 1px;<br />
	border-bottom-style: solid;<br />
	border-bottom-color: #69d4a3;<br />
	display: block;<br />
	font-family: Arial;<br />
	font-size: 1.1em;<br />
	margin-top: 10px;<br />
	}[/css]</p>
<p>■イメージの枠処理<br />
　トップのサムネイルの枠は残し、<br />
　　枠内は白で塗りつぶし<br />
　本文中の枠をとり左マージンを追加<br />
　<br />
・style.cssの523行目あたり<br />
[css].post img, .post a img, #front-list img, #archive img {<br />
	border:0px;<br />
	margin:0 10px 5px 0px;<br />
	padding:2px;<br />
	}[/css]<br />
を下記に変更しました。</p>
<p>[css]#front-list img, #archive img {<br />
	border:1px solid #ccc;<br />
	margin:0 10px 5px 0;<br />
	padding:2px;<br />
	background-color: #FFFFFF;<br />
	}</p>
<p>.post img, .post a img{<br />
	border:0px;<br />
	margin:0 10px 5px 5px;<br />
	padding:2px;<br />
	}[/css]</p>
<p>しかしこのサイトもarthemiaなわけですが、ここはほったらかしです。<br />
日付とかもみっともない…昔、就職試験に出た「紺屋の白袴」ということわざを思い出しました。</p>
]]></content:encoded>
			<wfw:commentRss>http://hotmenu.jp/tech/?feed=rss2&#038;p=155</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
