<?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/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>ホームページ製作・グラフィックデザインならCASTAGE：キャストエイジ｜ブログ</title>
	<atom:link href="http://castage.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://castage.net/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 17 Apr 2011 07:34:30 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/feed/" />
		<item>
		<title>WordPressをホームページの更新システムとして使う</title>
		<link>http://castage.net/blog/update_via_wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=update_via_wordpress</link>
		<comments>http://castage.net/blog/update_via_wordpress/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 06:51:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[チュートリアル]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Google AJAX Feed API]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[更新システム]]></category>
		<category><![CDATA[更新履歴]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=176</guid>
		<description><![CDATA[ホームページの更新システムを一から構築するのは骨が折れるのでBlogを使ってしまおう。 今回ご紹介するのは弊社のブログでも採用しているWordpress。 最近のサーバーは簡単インストールと銘打ち、Wordpressをワ [...]]]></description>
			<content:encoded><![CDATA[				<p>ホームページの更新システムを一から構築するのは骨が折れるのでBlogを使ってしまおう。<br />
				今回ご紹介するのは弊社のブログでも採用しているWordpress。  最近のサーバーは簡単インストールと銘打ち、Wordpressをワンクリックでインストールするサービスが多い。<br />
				GMOインターネットサービスのお名前.comレンタルサーバーがスペック・サービス面でコストパフォーマンスが良いです。</p>
				<p><iframe frameborder="0" allowtransparency="true" height="60" width="468" marginheight="0" scrolling="no" src="http://ad.jp.ap.valuecommerce.com/servlet/htmlbanner?sid=2628168&#038;pid=879977912" marginwidth="0"><script language="javascript" src="http://ad.jp.ap.valuecommerce.com/servlet/jsbanner?sid=2628168&#038;pid=879977912"></script><noscript><a href="http://ck.jp.ap.valuecommerce.com/servlet/referral?sid=2628168&#038;pid=879977912" target="_blank" ><img src="http://ad.jp.ap.valuecommerce.com/servlet/gifbanner?sid=2628168&#038;pid=879977912" height="60" width="468" border="0"></a></noscript></iframe></p>
				<p>さて、本題です。<br />
				■必要なもの<br />
				１．WordpressのRSSフィードURL…【インストール先のURL】+【?feed=rss2】です。（<a title="CASTAGE Weblog RSS" href="../../?feed=rss2" target="_blank">ここのブログ</a>の場合）<br />
				２．Google AJAX Feed APIのキー…<a title="Google API Key取得" href="http://code.google.com/intl/ja/apis/loader/signup.html" target="_blank">ココ</a>から取得してください　※英語ですがURLを入れてGenerate API Keyボタンを押すだけ<br />
				３．表示させるHTML…設置をお考えのトップページ等<br />
				４．取得コード…後記</p>
				<p>■設置方法<br />
				１．&lt;/head&gt;直前に</p>
				<p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://www.google.com/jsapi?key=【取得したキー】&#8221;&gt;<br />
				&lt;/script&gt;<br />
				&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
				google.load(&#8220;feeds&#8221;, &#8220;1&#8243;);<br />
				&lt;/script&gt;</p>
				<p>を挿入。</p>
				<p>２．表示させるHTMLの希望箇所に下記ソース</p>
				<p>&lt;div id=&#8221;feed&#8221;&gt;&lt;/div&gt;<br />
				&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
				function initialize() {<br />
				//RSSフィードの取得<br />
				var feed = new google.feeds.Feed(&#8220;【WordpressのRSSフィードURL】&#8221;);</p>
				<p>//取得するフィード数<br />
				feed.setNumEntries(10);</p>
				<p>//実際に読む込む<br />
				feed.load(function(result) {</p>
				<p>//読み込めたか判別<br />
				if (!result.error) {</p>
				<p>//表示部分を選択<br />
				var container = document.getElementById(&#8220;feed&#8221;);</p>
				<p>//変数の初期化<br />
				var useFeed = &#8220;&#8221;;</p>
				<p>//Feedの処理<br />
				for (var i = 0; i &lt; result.feed.entries.length; i++) {</p>
				<p>//Feedを一つ抽出<br />
				var entry = result.feed.entries[i];</p>
				<p>//リストに挿入<br />
				useFeed +=<br />
				&#8216;&lt;li&gt;&lt;a href=&#8221;&#8216; + entry.link + &#8216;&#8221;&gt;&#8217; + entry.title + &#8216;&lt;/a&gt;&#8217;;<br />
				}</p>
				<p>//リストを表示させる<br />
				container.innerHTML = &#8216;&lt;ul&gt;&#8217; + useFeed + &#8216;&lt;/ul&gt;&#8217;;<br />
				}<br />
				});<br />
				}<br />
				google.setOnLoadCallback(initialize);<br />
				&lt;/script&gt;<br />
				&lt;/div&gt;</p>
				<p>を挿入。</p>
				<p>■CSS装飾<br />
				CSSで背景色やPaddingや下線をデザインすれば既存のHPのデザインとマッチします。</p>
				<p>動きましたか？<br />
				時間があるときにWordpressで登録した画像の取得も書こうと思います。</p>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/update_via_wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/update_via_wordpress/" />
	</item>
		<item>
		<title>アールベルアンジェMie様HP完成しました。</title>
		<link>http://castage.net/blog/aba-mie/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=aba-mie</link>
		<comments>http://castage.net/blog/aba-mie/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 06:19:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[実績紹介]]></category>
		<category><![CDATA[アールベルアンジェ]]></category>
		<category><![CDATA[アールベルアンジェMie]]></category>
		<category><![CDATA[アールベルアンジェ三重]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=167</guid>
		<description><![CDATA[&#160; アールベルアンジェMie様のHP完成しました。 &#160;]]></description>
			<content:encoded><![CDATA[				<p>&nbsp;</p>
				<div id="attachment_173" class="wp-caption alignnone" style="width: 310px"><a href="http://castage.net/blog/wp/wp-content/uploads/2011/04/abamie.jpg" rel="lightbox[167]"><img src="http://castage.net/blog/wp/wp-content/uploads/2011/04/abamie-300x195.jpg" alt="アールベルアンジェMieトップページ" title="アールベルアンジェMie" width="300" height="195" class="size-medium wp-image-173" /></a><p class="wp-caption-text">アールベルアンジェMie様</p></div>
				<p><a title="アールベルアンジェ三重" href="http://aba-mie.com/" target="_blank">アールベルアンジェMie</a>様のHP完成しました。</p>
				<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/aba-mie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/aba-mie/" />
	</item>
		<item>
		<title>東京の出張マッサージ　Mana&amp;Moana（マナ＆モアナ）様HP公開開始</title>
		<link>http://castage.net/blog/mana-moana/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mana-moana</link>
		<comments>http://castage.net/blog/mana-moana/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 08:09:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[実績紹介]]></category>
		<category><![CDATA[運営保守]]></category>
		<category><![CDATA[23区]]></category>
		<category><![CDATA[mana&moana]]></category>
		<category><![CDATA[mana-moana.jp]]></category>
		<category><![CDATA[マッサージ]]></category>
		<category><![CDATA[マナ]]></category>
		<category><![CDATA[モアナ]]></category>
		<category><![CDATA[出張]]></category>
		<category><![CDATA[出張マッサージ]]></category>
		<category><![CDATA[東京]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=149</guid>
		<description><![CDATA[東京都23区で出張マッサージをやっているMana&#38;Moana様のHPがまもなく完成を迎え、Webサーバーにアップロードをしました。 サービスの実稼働は24日（木）という事で、興味がある方は後連絡下さい。「キャスト [...]]]></description>
			<content:encoded><![CDATA[				<p>東京都23区で出張マッサージをやっているMana&amp;Moana様のHPがまもなく完成を迎え、Webサーバーにアップロードをしました。</p>
				<p>サービスの実稼働は24日（木）という事で、興味がある方は後連絡下さい。「キャストエイジの紹介です。」と言えば何かいいことがあるかもしれません。</p>
				<div id="attachment_152" class="wp-caption alignnone" style="width: 232px"><a href="http://mana-moana.jp" class="broken_link"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/06/mana-moana-222x300.jpg" alt="出張マッサージ　東京　Mana &amp; Moana　（マナ＆モアナ）" title="mana-moana" width="222" height="300" class="size-medium wp-image-152" /></a><p class="wp-caption-text">トップページ</p></div>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/mana-moana/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/mana-moana/" />
	</item>
		<item>
		<title>住環境ジャパン</title>
		<link>http://castage.net/blog/%e4%bd%8f%e7%92%b0%e5%a2%83%e3%82%b8%e3%83%a3%e3%83%91%e3%83%b3/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e4%25bd%258f%25e7%2592%25b0%25e5%25a2%2583%25e3%2582%25b8%25e3%2583%25a3%25e3%2583%2591%25e3%2583%25b3</link>
		<comments>http://castage.net/blog/%e4%bd%8f%e7%92%b0%e5%a2%83%e3%82%b8%e3%83%a3%e3%83%91%e3%83%b3/#comments</comments>
		<pubDate>Wed, 26 May 2010 03:20:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[運営保守]]></category>
		<category><![CDATA[ジャパン]]></category>
		<category><![CDATA[住環境]]></category>
		<category><![CDATA[住環境ジャパン]]></category>

		<guid isPermaLink="false">http://castage.net/blog/%e4%bd%8f%e7%92%b0%e5%a2%83%e3%82%b8%e3%83%a3%e3%83%91%e3%83%b3/</guid>
		<description><![CDATA[住環境ジャパン様のサーチエンジンオプティマイズを施工しております。]]></description>
			<content:encoded><![CDATA[				<p><a title="住環境ジャパン" href="http://www.jkj.co.jp/index.html" target="_blank">住環境ジャパン</a>様のサーチエンジンオプティマイズを施工しております。</p>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/%e4%bd%8f%e7%92%b0%e5%a2%83%e3%82%b8%e3%83%a3%e3%83%91%e3%83%b3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/%e4%bd%8f%e7%92%b0%e5%a2%83%e3%82%b8%e3%83%a3%e3%83%91%e3%83%b3/" />
	</item>
		<item>
		<title>2chダウン</title>
		<link>http://castage.net/blog/2ch_down/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=2ch_down</link>
		<comments>http://castage.net/blog/2ch_down/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 04:27:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[日記]]></category>
		<category><![CDATA[2ch]]></category>
		<category><![CDATA[2ちゃんねる]]></category>
		<category><![CDATA[2ちゃんねる サーバ負荷監視所]]></category>
		<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[DDos]]></category>
		<category><![CDATA[DDos攻撃]]></category>
		<category><![CDATA[F5]]></category>
		<category><![CDATA[オリンピック]]></category>
		<category><![CDATA[キム・ヨナ]]></category>
		<category><![CDATA[キャストエイジ]]></category>
		<category><![CDATA[サイバーテロ]]></category>
		<category><![CDATA[サイバー攻撃]]></category>
		<category><![CDATA[サーバーダウン]]></category>
		<category><![CDATA[三一節]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=70</guid>
		<description><![CDATA[ネットマナーの問題で2chが攻撃されたみたいですね。 三一節（韓国の独立運動記念日）に攻撃を仕掛けるという予告があったとか無いとか。 ロシアでの韓国人留学生殺人とキム・ヨナに対する妄言でヒートアップした模様。 攻撃手段は [...]]]></description>
			<content:encoded><![CDATA[				<p>ネットマナーの問題で<a title="2ch" href="http://www.2ch.net/" target="_blank">2ch</a>が攻撃されたみたいですね。</p>
				<p><a title="三一節" href="http://ja.wikipedia.org/wiki/%E4%B8%89%E3%83%BB%E4%B8%80%E7%8B%AC%E7%AB%8B%E9%81%8B%E5%8B%95" target="_self">三一節</a>（韓国の独立運動記念日）に攻撃を仕掛けるという予告があったとか無いとか。</p>
				<p><a title="韓国人留学生殺害" href="http://japanese.joins.com/article/article.php?aid=126395&amp;servcode=400&amp;sectcode=430" target="_self">ロシアでの韓国人留学生殺人</a>とキム・ヨナに対する妄言でヒートアップした模様。</p>
				<p>攻撃手段は違法とされているDDos AtackではなくF5ボタンを連射することでページを更新を繰り返しサーバーに負荷をかけるという何とも地味な攻撃。</p>
				<p>でも実際サーバーが落ちたからたいしたものですね。</p>
				<div id="attachment_91" class="wp-caption alignnone" style="width: 430px"><a href="http://castage.net/blog/wp/wp-content/uploads/2010/03/2chdown.jpg" rel="lightbox[70]"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/03/2chdown_s.jpg" alt="２ちゃんねる サーバ負荷監視所" title="２ちゃんねる サーバ負荷監視所" width="420" height="381" class="size-full wp-image-91" /></a><p class="wp-caption-text">２ちゃんねる サーバ負荷監視所　3月2日14：00</p></div>
				<p>韓国側で設置された攻撃用コミュニティーサイトには攻撃時に9万人近くユーザーがいたとかいないとか。</p>
				<p>そういう一丸となって一つのことをやり遂げるエネルギーをいいことに役立たせればよいのに。</p>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/2ch_down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/2ch_down/" />
	</item>
		<item>
		<title>IEだと回り込みがおかしい</title>
		<link>http://castage.net/blog/ie_image_float/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ie_image_float</link>
		<comments>http://castage.net/blog/ie_image_float/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 10:05:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[トラブルシュート]]></category>
		<category><![CDATA[align]]></category>
		<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[float]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[キャストエイジ]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=26</guid>
		<description><![CDATA[CASTAGEのHPをIEでチラ見したら会社概要のページが崩れてました。 Dreamweaverのプレビューだと問題ないのでやっかいなんですよね。 align=&#8221;left&#8221;をfloat:leftに [...]]]></description>
			<content:encoded><![CDATA[				<p><a title="株式会社キャストエイジ" href="http://castage.net" target="_self">CASTAGEのHP</a>をIEで<a title="マサーシー" href="http://tashiromasashi.seesaa.net/" target="_blank">チラ見</a>したら会社概要のページが崩れてました。</p>
				<div id="attachment_29" class="wp-caption alignnone" style="width: 410px"><a href="http://castage.net/blog/wp/wp-content/uploads/2010/03/ff1.jpg" rel="lightbox[26]"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/03/ff1.jpg" alt="FireFoxで表示" title="FireFoxで表示" width="400" height="196" class="size-full wp-image-29" /></a><p class="wp-caption-text">FireFoxで表示</p></div>
				<div id="attachment_30" class="wp-caption alignnone" style="width: 410px"><a href="http://castage.net/blog/wp/wp-content/uploads/2010/03/ie.jpg" rel="lightbox[26]"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/03/ie.jpg" alt="IEで表示" title="IEで表示" width="400" height="297" class="size-full wp-image-30" /></a><p class="wp-caption-text">IEで表示</p></div>
				<p>Dreamweaverのプレビューだと問題ないのでやっかいなんですよね。</p>
				<p>align=&#8221;left&#8221;をfloat:leftにしたら直りました。</p>
				<p>&lt;img alt=&#8221;" src=&#8221;images/map.gif&#8221; style=&#8221;margin-left:47px; margin-right:20px; &#8221; align=&#8221;left&#8221; /&gt;</p>
				<p style="text-align: center;">↓↓↓</p>
				<p>&lt;img alt=&#8221;" src=&#8221;images/map.gif&#8221; style=&#8221;margin-left:47px; margin-right:20px; float:left&#8221; /&gt;</p>
				<div id="attachment_31" class="wp-caption alignnone" style="width: 410px"><a href="http://castage.net/blog/wp/wp-content/uploads/2010/03/ie_ok.jpg" rel="lightbox[26]"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/03/ie_ok.jpg" alt="float設定後のIEで表示" title="float設定後のIEで表示" width="400" height="195" class="size-full wp-image-31" /></a><p class="wp-caption-text">float設定後のIEで表示</p></div>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/ie_image_float/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/ie_image_float/" />
	</item>
		<item>
		<title>データベースを消してしまった</title>
		<link>http://castage.net/blog/delete_database/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=delete_database</link>
		<comments>http://castage.net/blog/delete_database/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 15:43:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[データベース]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Movable Type]]></category>
		<category><![CDATA[MT]]></category>
		<category><![CDATA[あぼーん]]></category>
		<category><![CDATA[キャッシュ]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=6</guid>
		<description><![CDATA[Movable Typeの勉強をしようとサーバーのデータベースをいじっていて謝って削除してしまいました。 おかげさまで全てのブログやカレンダーがあぼーんしました。 Googleにキャッシュされていたので自力で取り出してシ [...]]]></description>
			<content:encoded><![CDATA[				<p><a href="http://www.sixapart.jp/movabletype/">Movable Type</a>の勉強をしようとサーバーのデータベースをいじっていて謝って削除してしまいました。</p>
				<p>おかげさまで全てのブログやカレンダーが<a title="あぼーん" href="http://d.hatena.ne.jp/keyword/%A4%A2%A4%DC%A1%BC%A4%F3" target="_blank">あぼーん</a>しました。</p>
				<p><a title="ごっごる" href="http://google.com/" target="_blank">Google</a>にキャッシュされていたので自力で取り出してシコシコUPし直します。</p>
				<p><a title="気をつけなはれや" href="http://ameblo.jp/wengine/" target="_blank">気をつけなはれや。</a></p>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/delete_database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/delete_database/" />
	</item>
		<item>
		<title>IEで画像に隙間ができる</title>
		<link>http://castage.net/blog/ie_css/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ie_css</link>
		<comments>http://castage.net/blog/ie_css/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 10:01:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[トラブルシュート]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[FireFox]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[vertical-align]]></category>
		<category><![CDATA[キャストエイジ]]></category>
		<category><![CDATA[画像]]></category>
		<category><![CDATA[隙間]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=142</guid>
		<description><![CDATA[Web制作の動作確認は基本的にFirefoxで行っているのですが、余裕こいて最終的にIEでテストをすると痛い目に遭う。 今回はFirefoxでは正常に見えたテーブル内の画像達ですが、IEだとスキマスイッチ。 こちらはFi [...]]]></description>
			<content:encoded><![CDATA[				<p>Web制作の動作確認は基本的に<a title="Firefox" href="http://mozilla.jp/firefox/" target="_blank">Firefox</a>で行っているのですが、余裕こいて最終的に<a title="IE" href="http://www.microsoft.com/japan/windows/products/winfamily/ie/default.mspx" target="_blank">IE</a>でテストをすると痛い目に遭う。</p>
				<p>今回はFirefoxでは正常に見えたテーブル内の画像達ですが、IEだと<a title="スキマスイッチ" href="http://www.office-augusta.com/sukimaswitch/" target="_blank">スキマスイッチ</a>。</p>
				<p>こちらはFirefoxで<a title="株式会社キャストエイジ" href="http://castage.net/" target="_blank">CASTAGE</a>のトップページを開いた時の画像。</p>
				<div id="attachment_346" class="wp-caption alignnone" style="width: 376px;"><a rel="lightbox[345]" href="http://castage.net/blog/wp/wp-content/uploads/2010/02/ff_sukima.jpg" rel="lightbox[142]"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/02/ff_sukima.jpg" alt="Firefoxで表示" title="Firefoxで表示" width="366" height="192" class="size-full wp-image-346" /></a></p>
				<p class="wp-caption-text">Firefoxで表示</p>
				</div>
				<p>こちらはIEで開いた時の画像。</p>
				<div id="attachment_347" class="wp-caption alignnone" style="width: 376px;"><a rel="lightbox[345]" href="http://castage.net/blog/wp/wp-content/uploads/2010/02/ie_sukima.jpg" rel="lightbox[142]"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/02/ie_sukima.jpg" alt="IEで表示" title="IEで表示" width="366" height="192" class="size-full wp-image-347" /></a></p>
				<p class="wp-caption-text">IEで表示</p>
				</div>
				<p>何のことはない、CSSでimgの属性にvertical-align:top;をインしてあげればよい。</p>
				<p>CASTAGEで使用しているCSSのimgはこちら</p>
				<div class="igBar"><span id="lcss-1"><a onclick="javascript:showPlainTxt('css-1'); return false;" href="#">PLAIN TEXT</a></span></div>
				<div class="syntax_hilite">
				<p><span class="langName">CSS:</span></p>
				<div id="css-1">
				<div class="css">
				<ol>
				<li style="font-family: 'Courier New', Courier, monospace; color: #3a6a8b; font-weight: normal; font-style: normal;">
				<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">img <span style="color: #66cc66;">{</span></div>
				</li>
				<li style="font-weight: bold; color: #26536a;">
				<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">border</span>:0px;</div>
				</li>
				<li style="font-family: 'Courier New', Courier, monospace; color: #3a6a8b; font-weight: normal; font-style: normal;">
				<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">vertical-align</span>:<span style="color: #000000; font-weight: bold;">top</span>;</div>
				</li>
				<li style="font-weight: bold; color: #26536a;">
				<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">}</span></div>
				</li>
				</ol>
				</div>
				</div>
				</div>
				<p>原因は画像もインラインなのでそのままで使うとbaselineが適用されているので下がちょっと空いてしまうからだそうです。</p>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/ie_css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/ie_css/" />
	</item>
		<item>
		<title>FlickrのIDって</title>
		<link>http://castage.net/blog/flickr_i/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=flickr_i</link>
		<comments>http://castage.net/blog/flickr_i/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 10:17:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[日記]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[id]]></category>
		<category><![CDATA[キャストエイジ]]></category>
		<category><![CDATA[クリス]]></category>
		<category><![CDATA[クリス松村]]></category>
		<category><![CDATA[ラクダ]]></category>
		<category><![CDATA[松村]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=144</guid>
		<description><![CDATA[画像ギャラリー関連のスクリプトでFlickrにUPされた画像を呼び出すというものがあったのでアカウントを作りました。 スクリプトにIDとパスを埋め込まなければならんとのことで探したのですが見あたらず、「Flickr　ID [...]]]></description>
			<content:encoded><![CDATA[				<p>画像ギャラリー関連のスクリプトで<a title="フリッカー" href="http://www.flickr.com/" target="_blank">Flickr</a>にUPされた画像を呼び出すというものがあったのでアカウントを作りました。</p>
				<p>スクリプトにIDとパスを埋め込まなければならんとのことで探したのですが見あたらず、「Flickr　ID」で<a title="午後った" href="http://www.google.co.jp/search?q=Flickr%E3%80%80ID&amp;lr=lang_ja&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:ja:official&amp;client=firefox-a" target="_blank">午後った</a>ら<a title="http://flickr-id.cohga.net/" href="http://flickr-id.cohga.net/" target="_blank">flickr ID Checker</a>なるものがでてきました。</p>
				<p>人生においてそれほど使う機会は無いと思いますが便利ですね。</p>
				<p>ちなみに全然関係ないんですが、「ら　く　だ」は<a title="Google" href="http://google.com" target="_blank">ググ</a>ってもダメですが<a title="Yahoo" href="http://yahoo.co.jp" target="_blank">Yahoo</a>だとワード予測的にクリス松村が出てきました。</p>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/flickr_i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/flickr_i/" />
	</item>
		<item>
		<title>CASTAGE FLOWを公開</title>
		<link>http://castage.net/blog/castage_flow/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=castage_flow</link>
		<comments>http://castage.net/blog/castage_flow/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 09:52:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CASTAGE]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[フリー素材]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[swf]]></category>
		<category><![CDATA[WEB素材]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[キャストエイジ]]></category>
		<category><![CDATA[無料素材]]></category>

		<guid isPermaLink="false">http://castage.net/blog/?p=138</guid>
		<description><![CDATA[CASTAGE FLOWをホームページのフリー素材に公開。 サンプルはこんな感じです。 CASTAGE FLOW]]></description>
			<content:encoded><![CDATA[				<p><a title="CASTAGE　FLOW" href="http://castage.net/download/caflow/index.html" target="_blank">CASTAGE FLOW</a>をホームページのフリー素材に公開。</p>
				<p>サンプルはこんな感じです。</p>
				<div id="attachment_343" class="wp-caption alignnone" style="width: 570px;"><a rel="lightbox[341]" href="http://castage.net/blog/wp/wp-content/uploads/2010/02/caflow_smaple.jpg" rel="lightbox[138]"><img src="http://castage.net/blog/wp/wp-content/uploads/2010/02/caflow_smaple.jpg" alt="CASTAGE FLOW" title="CASTAGE FLOW" width="560" height="240" class="size-full wp-image-343" /></a></p>
				<p class="wp-caption-text">CASTAGE FLOW</p>
				</div>
]]></content:encoded>
			<wfw:commentRss>http://castage.net/blog/castage_flow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://castage.net/blog/castage_flow/" />
	</item>
	</channel>
</rss>

