<?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>Zenoven 自由人 &#187; 精华文章</title>
	<atom:link href="http://www.zenoven.com/category/experi/essence/feed" rel="self" type="application/rss+xml" />
	<link>http://www.zenoven.com</link>
	<description>有技术 有生活</description>
	<lastBuildDate>Tue, 27 Jul 2010 14:06:13 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>inove主题链接两列显示方法</title>
		<link>http://www.zenoven.com/technology/php/2010051301.html</link>
		<comments>http://www.zenoven.com/technology/php/2010051301.html#comments</comments>
		<pubDate>Wed, 05 May 2010 08:23:44 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[精华文章]]></category>
		<category><![CDATA[iNove]]></category>
		<category><![CDATA[wp_list_bookmarks]]></category>
		<category><![CDATA[两列]]></category>
		<category><![CDATA[主题]]></category>
		<category><![CDATA[友情链接]]></category>
		<category><![CDATA[链接]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/php/2010051301.html</guid>
		<description><![CDATA[<p>之前我已经对inove主题sidebar(侧边栏)上面的链接显示做了修改，可以让链接分两列显示，但是之前用的那个方法里面用的是id，这样的话，如果sidebar想要有多个分开的链接目录（比如你的链接有3个分类），那么这样就是错误的，因为一个页面只能有一个ID（需要注意的是，我已经对inove的主题的sidebar做了比较大的修改，原来的sidebar有4个widget，我已经修改为了2个，而且链接和分类目录已经不是左右并列显示了）。</p>
<p>开始想的比较简单，直接把ID改成class，然后style.css再把“#”换成“. ”就行了，不过这很快就被验证是不行的，因为原来的那个CSS里面嵌套的DIV UL比较乱，写的很不规范，那就自己动手改规范吧。</p>
<p>我的sidebar显示有两个链接分类，还有一个组织活动（这个没有加到链接里面，是我在sidebar里面直接写代码的）。</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/php/2010051301.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p>之前我已经对inove主题sidebar(侧边栏)上面的链接显示做了修改，可以让链接分两列显示，但是之前用的那个方法里面用的是id，这样的话，如果sidebar想要有多个分开的链接目录（比如你的链接有3个分类），那么这样就是错误的，因为一个页面只能有一个ID（需要注意的是，我已经对inove的主题的sidebar做了比较大的修改，原来的sidebar有4个widget，我已经修改为了2个，而且链接和分类目录已经不是左右并列显示了）。</p>
<p>开始想的比较简单，直接把ID改成class，然后style.css再把“#”换成“. ”就行了，不过这很快就被验证是不行的，因为原来的那个CSS里面嵌套的DIV UL比较乱，写的很不规范，那就自己动手改规范吧。</p>
<p>我的sidebar显示有两个链接分类，还有一个组织活动（这个没有加到链接里面，是我在sidebar里面直接写代码的）。</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/php/2010051301.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/technology/php/2010051301.html/feed</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>typecho按分类显示文章标题颜色实战</title>
		<link>http://www.zenoven.com/technology/php/2010041290.html</link>
		<comments>http://www.zenoven.com/technology/php/2010041290.html#comments</comments>
		<pubDate>Thu, 29 Apr 2010 05:31:06 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[本站记实]]></category>
		<category><![CDATA[精华文章]]></category>
		<category><![CDATA[typecho]]></category>
		<category><![CDATA[修改]]></category>
		<category><![CDATA[分类]]></category>
		<category><![CDATA[文章标题]]></category>
		<category><![CDATA[颜色]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/php/2010041290.html</guid>
		<description><![CDATA[<p>今天想把我用typecho搭建的一个站的文章标题颜色按照分类来显示，也就是不同分类，文章标题的颜色就会不同，效果可以查看<a href="http://www.jingang.org">www.jingang.org</a></p>
<p>刚开始想用&lt;?php if ($this-&gt;is('category','news')): ?&gt; ，但是想了下，这个只是判断当前页面是不是news分类下面的，并不能达到我的要求，事实也证明我用此判断然后输出样式没有成功。</p>
<p>那怎么搞呢？typecho群里的宅给我提醒了，“ 直接class="&lt;?php echo 分类缩略字 ?&gt;" ”，试了下 &lt;?php $this-&gt;category(','); ?&gt; 不行，因为那个直接就输出分类的链接了。不过答案很快就给我找到了，&lt;?php echo $this-&gt;category; ?&gt; 就可以了。</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/php/2010041290.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p>今天想把我用typecho搭建的一个站的文章标题颜色按照分类来显示，也就是不同分类，文章标题的颜色就会不同，效果可以查看<a href="http://www.jingang.org">www.jingang.org</a></p>
<p>刚开始想用&lt;?php if ($this-&gt;is('category','news')): ?&gt; ，但是想了下，这个只是判断当前页面是不是news分类下面的，并不能达到我的要求，事实也证明我用此判断然后输出样式没有成功。</p>
<p>那怎么搞呢？typecho群里的宅给我提醒了，“ 直接class="&lt;?php echo 分类缩略字 ?&gt;" ”，试了下 &lt;?php $this-&gt;category(','); ?&gt; 不行，因为那个直接就输出分类的链接了。不过答案很快就给我找到了，&lt;?php echo $this-&gt;category; ?&gt; 就可以了。</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/php/2010041290.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/technology/php/2010041290.html/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>typecho学习札记</title>
		<link>http://www.zenoven.com/technology/php/2010041285.html</link>
		<comments>http://www.zenoven.com/technology/php/2010041285.html#comments</comments>
		<pubDate>Thu, 22 Apr 2010 06:27:48 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[建站经验]]></category>
		<category><![CDATA[精华文章]]></category>
		<category><![CDATA[typecho]]></category>
		<category><![CDATA[学习]]></category>
		<category><![CDATA[札记]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/php/2010041285.html</guid>
		<description><![CDATA[<p>近日用typecho搭建了一个小站<a title="金刚石资源信息网" href="http://www.jingang.org" target="_self">www.jingang.org</a> （为何不用WP？那个VPS的内存不够大，WP是比较耗资源的，而且WP的速度不是很快，typecho在这方面是很有优势的），但是由于typecho的资料比较少，而且刚试用这个程序，很多都不懂，找了半天解决了一些小问题。</p>
<p>首先是typecho的title我觉得写的不是很好，就找到了默认模板中header.php做了些修改。</p>
<p>原来的title是这样的</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/php/2010041285.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p>近日用typecho搭建了一个小站<a title="金刚石资源信息网" href="http://www.jingang.org" target="_self">www.jingang.org</a> （为何不用WP？那个VPS的内存不够大，WP是比较耗资源的，而且WP的速度不是很快，typecho在这方面是很有优势的），但是由于typecho的资料比较少，而且刚试用这个程序，很多都不懂，找了半天解决了一些小问题。</p>
<p>首先是typecho的title我觉得写的不是很好，就找到了默认模板中header.php做了些修改。</p>
<p>原来的title是这样的</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/php/2010041285.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/technology/php/2010041285.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>推动浏览器的W3C标准需要这样做吗？</title>
		<link>http://www.zenoven.com/life/other/2010031270.html</link>
		<comments>http://www.zenoven.com/life/other/2010031270.html#comments</comments>
		<pubDate>Wed, 31 Mar 2010 14:44:26 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[技术]]></category>
		<category><![CDATA[杂记]]></category>
		<category><![CDATA[精华文章]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[W3C标准]]></category>
		<category><![CDATA[推动]]></category>
		<category><![CDATA[浏览器]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/other/2010031270.html</guid>
		<description><![CDATA[<p><strong>不用去点击关闭按钮，下面的是一个图片~~</strong></p>
<p style="text-align: center;"><img class="size-full wp-image-1269  aligncenter" title="w3c" src="http://www.zenoven.com/wp-content/2010/03/w3c.jpg" alt="" width="506" height="192" /></p>
<p> </p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/2010031270.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>不用去点击关闭按钮，下面的是一个图片~~</strong></p>
<p style="text-align: center;"><img class="size-full wp-image-1269  aligncenter" title="w3c" src="http://www.zenoven.com/wp-content/2010/03/w3c.jpg" alt="" width="506" height="192" /></p>
<p> </p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/2010031270.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/life/other/2010031270.html/feed</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>万网域名转出到Godaddy全程记录</title>
		<link>http://www.zenoven.com/life/other/2010031268.html</link>
		<comments>http://www.zenoven.com/life/other/2010031268.html#comments</comments>
		<pubDate>Tue, 30 Mar 2010 13:58:26 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[建站经验]]></category>
		<category><![CDATA[技术]]></category>
		<category><![CDATA[本站记实]]></category>
		<category><![CDATA[杂记]]></category>
		<category><![CDATA[精华文章]]></category>
		<category><![CDATA[Godaddy]]></category>
		<category><![CDATA[万网]]></category>
		<category><![CDATA[域名]]></category>
		<category><![CDATA[域名转出]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/other/2010031268.html</guid>
		<description><![CDATA[<p>前几天我已经发过两篇文章说我的域名情况了，第一篇是发牢骚，说国内域名转出很难难，文章见《<a title="我的域名,何去何从？" href="http://www.zenoven.com/other/2010031263.html" target="_blank">我的域名，何去何从？</a>》，第二篇是《<a title="收到万网域名转移码" href="http://www.zenoven.com/other/2010031267.html" target="_blank">收到万网域名转移码</a>》。零零散散的，感觉不成样子，这里对我的转出经过简单记录下，希望对大家有用。</p>
<p><strong>1、转出遇阻</strong></p>
<p>我的域名 zenoven.com是在万网的一个代理m95.cn这里注册的（当时图便宜，对国内域名不了解，现在想想都后悔，如果直接在国外注册就不会这么麻烦了），3月14日之前我就一直在询问代理域名转出的事情，他说要交50，我很愤怒，不想交钱，因为大家都知道域名转出注册商是不应该设置障碍的，而且万网已经说过了，转出是免费的，而他却说是公司规定！垃圾！14号的时候我实在是太想转出了，就跟代理联系，交了50块，接下来却又有问题了！问题就在于我的Registrant Organization上面填的是zenoven，如果想转出的话，就要邮寄zenoven的身份证等信息给万网，这可能吗？给万网打电话，回答是一样的。代理说，还有个办法就是在线过户，这样就可以更改那个Registrant Organization，不过两年之后才能转出。- - !</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/2010031268.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p>前几天我已经发过两篇文章说我的域名情况了，第一篇是发牢骚，说国内域名转出很难难，文章见《<a title="我的域名,何去何从？" href="http://www.zenoven.com/other/2010031263.html" target="_blank">我的域名，何去何从？</a>》，第二篇是《<a title="收到万网域名转移码" href="http://www.zenoven.com/other/2010031267.html" target="_blank">收到万网域名转移码</a>》。零零散散的，感觉不成样子，这里对我的转出经过简单记录下，希望对大家有用。</p>
<p><strong>1、转出遇阻</strong></p>
<p>我的域名 zenoven.com是在万网的一个代理m95.cn这里注册的（当时图便宜，对国内域名不了解，现在想想都后悔，如果直接在国外注册就不会这么麻烦了），3月14日之前我就一直在询问代理域名转出的事情，他说要交50，我很愤怒，不想交钱，因为大家都知道域名转出注册商是不应该设置障碍的，而且万网已经说过了，转出是免费的，而他却说是公司规定！垃圾！14号的时候我实在是太想转出了，就跟代理联系，交了50块，接下来却又有问题了！问题就在于我的Registrant Organization上面填的是zenoven，如果想转出的话，就要邮寄zenoven的身份证等信息给万网，这可能吗？给万网打电话，回答是一样的。代理说，还有个办法就是在线过户，这样就可以更改那个Registrant Organization，不过两年之后才能转出。- - !</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/2010031268.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/life/other/2010031268.html/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>各种HTML标签CSS属性默认值汇总</title>
		<link>http://www.zenoven.com/technology/css/2010031246.html</link>
		<comments>http://www.zenoven.com/technology/css/2010031246.html#comments</comments>
		<pubDate>Sat, 06 Mar 2010 05:32:05 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[精华文章]]></category>
		<category><![CDATA[HTML标签]]></category>
		<category><![CDATA[属性]]></category>
		<category><![CDATA[汇总]]></category>
		<category><![CDATA[默认值]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/?p=1246</guid>
		<description><![CDATA[<blockquote><p>html, address,<br />
blockquote,<br />
body, dd, div,<br />
dl, dt, fieldset, form,<br />
frame, frameset,<br />
h1, h2, h3, h4,<br />
h5, h6, noframes,<br />
ol, p, ul, center,<br />
dir, hr, menu, pre   { display: block }<br />
li              { display: list-item }<br />
head            { display: none }<br />
table           { display: table }<br />
tr              { display: table-row }<br />
thead           { display: table-header-group }<br />
tbody           { display: table-row-group }<br />
tfoot           { display: table-footer-group }<br />
col             { display: table-column } <br />
colgroup        { display: table-column-group }<br />
td, th          { display: table-cell; }<br />
caption         { display: table-caption }<br />
th              { font-weight: bolder; text-align: center }<br />
caption         { text-align: center }<br />
body            { margin: 8px; line-height: 1.12 }<br />
h1              { font-size: 2em; margin: .67em 0 }<br />
h2              { font-size: 1.5em; margin: .75em 0 }<br />
h3              { font-size: 1.17em; margin: .83em 0 }<br />
h4, p,<br />
blockquote, ul,<br />
fieldset, form,<br />
ol, dl, dir,<br />
menu            { margin: 1.12em 0 } </p>
<p>h5              { font-size: .83em; margin: 1.5em 0 }<br />
h6              { font-size: .75em; margin: 1.67em 0 }<br />
h1, h2, h3, h4,<br />
h5, h6, b,<br />
strong          { font-weight: bolder }<br />
blockquote      { margin-left: 40px; margin-right: 40px }<br />
i, cite, em,<br />
var, address    { font-style: italic }<br />
pre, tt, code,<br />
kbd, samp       { font-family: monospace }<br />
pre             { white-space: pre }<br />
button, textarea,<br />
input, object, <br />
select          { display:inline-block; }<br />
big             { font-size: 1.17em }<br />
small, sub, sup { font-size: .83em }<br />
sub             { vertical-align: sub } <br />
sup             { vertical-align: super }<br />
table           { border-spacing: 2px; }<br />
thead, tbody,<br />
tfoot           { vertical-align: middle }<br />
td, th          { vertical-align: inherit }<br />
s, strike, del  { text-decoration: line-through }<br />
hr              { border: 1px inset }<br />
ol, ul, dir,<br />
menu, dd        { margin-left: 40px }<br />
ol              { list-style-type: decimal }<br />
ol ul, ul ol,<br />
ul ul, ol ol    { margin-top: 0; margin-bottom: 0 }<br />
u, ins          { text-decoration: underline }<br />
br:before       { content: "\A" }<br />
:before, :after { white-space: pre-line } </p>
<p>center          { text-align: center }<br />
abbr, acronym   { font-variant: small-caps; letter-spacing: 0.1em }<br />
:link, :visited { text-decoration: underline }<br />
:focus          { outline: thin dotted invert }</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/css/2010031246.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<blockquote><p>html, address,<br />
blockquote,<br />
body, dd, div,<br />
dl, dt, fieldset, form,<br />
frame, frameset,<br />
h1, h2, h3, h4,<br />
h5, h6, noframes,<br />
ol, p, ul, center,<br />
dir, hr, menu, pre   { display: block }<br />
li              { display: list-item }<br />
head            { display: none }<br />
table           { display: table }<br />
tr              { display: table-row }<br />
thead           { display: table-header-group }<br />
tbody           { display: table-row-group }<br />
tfoot           { display: table-footer-group }<br />
col             { display: table-column } <br />
colgroup        { display: table-column-group }<br />
td, th          { display: table-cell; }<br />
caption         { display: table-caption }<br />
th              { font-weight: bolder; text-align: center }<br />
caption         { text-align: center }<br />
body            { margin: 8px; line-height: 1.12 }<br />
h1              { font-size: 2em; margin: .67em 0 }<br />
h2              { font-size: 1.5em; margin: .75em 0 }<br />
h3              { font-size: 1.17em; margin: .83em 0 }<br />
h4, p,<br />
blockquote, ul,<br />
fieldset, form,<br />
ol, dl, dir,<br />
menu            { margin: 1.12em 0 } </p>
<p>h5              { font-size: .83em; margin: 1.5em 0 }<br />
h6              { font-size: .75em; margin: 1.67em 0 }<br />
h1, h2, h3, h4,<br />
h5, h6, b,<br />
strong          { font-weight: bolder }<br />
blockquote      { margin-left: 40px; margin-right: 40px }<br />
i, cite, em,<br />
var, address    { font-style: italic }<br />
pre, tt, code,<br />
kbd, samp       { font-family: monospace }<br />
pre             { white-space: pre }<br />
button, textarea,<br />
input, object, <br />
select          { display:inline-block; }<br />
big             { font-size: 1.17em }<br />
small, sub, sup { font-size: .83em }<br />
sub             { vertical-align: sub } <br />
sup             { vertical-align: super }<br />
table           { border-spacing: 2px; }<br />
thead, tbody,<br />
tfoot           { vertical-align: middle }<br />
td, th          { vertical-align: inherit }<br />
s, strike, del  { text-decoration: line-through }<br />
hr              { border: 1px inset }<br />
ol, ul, dir,<br />
menu, dd        { margin-left: 40px }<br />
ol              { list-style-type: decimal }<br />
ol ul, ul ol,<br />
ul ul, ol ol    { margin-top: 0; margin-bottom: 0 }<br />
u, ins          { text-decoration: underline }<br />
br:before       { content: "\A" }<br />
:before, :after { white-space: pre-line } </p>
<p>center          { text-align: center }<br />
abbr, acronym   { font-variant: small-caps; letter-spacing: 0.1em }<br />
:link, :visited { text-decoration: underline }<br />
:focus          { outline: thin dotted invert }</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/css/2010031246.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/technology/css/2010031246.html/feed</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>CSS Sprites技巧:单个图片插入多个链接</title>
		<link>http://www.zenoven.com/technology/css/2010031243.html</link>
		<comments>http://www.zenoven.com/technology/css/2010031243.html#comments</comments>
		<pubDate>Wed, 03 Mar 2010 05:24:48 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[精华文章]]></category>
		<category><![CDATA[CSS Sprites]]></category>
		<category><![CDATA[单个图片]]></category>
		<category><![CDATA[多个链接]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/?p=1243</guid>
		<description><![CDATA[<p>平时我们做网页的时候会用到img标签来插入图片，再结合a标签可以给图片加上链接，但是其实单独用a标签就可以实现这样的效果，而且可以在单个图片中插入多个链接。</p>
<p>本文的基本做法就是用CSS Sprites将多个图片合并为1个，用CSS中的background属性代替img标签，用background-position来实现多个图片链接的最终效果。</p>
<p>例如原来3个图片链接的HTML代码如下</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/css/2010031243.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p>平时我们做网页的时候会用到img标签来插入图片，再结合a标签可以给图片加上链接，但是其实单独用a标签就可以实现这样的效果，而且可以在单个图片中插入多个链接。</p>
<p>本文的基本做法就是用CSS Sprites将多个图片合并为1个，用CSS中的background属性代替img标签，用background-position来实现多个图片链接的最终效果。</p>
<p>例如原来3个图片链接的HTML代码如下</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/css/2010031243.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/technology/css/2010031243.html/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>WordPress单日志添加AD及sidebar小工具的应用</title>
		<link>http://www.zenoven.com/technology/useful/2010021238.html</link>
		<comments>http://www.zenoven.com/technology/useful/2010021238.html#comments</comments>
		<pubDate>Sun, 28 Feb 2010 07:44:20 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[精华文章]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[单日志]]></category>
		<category><![CDATA[小工具]]></category>
		<category><![CDATA[添加广告]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/?p=1238</guid>
		<description><![CDATA[<p><span style="color: #008000;">1、单日志添加AD(如Google AD)</span></p>
<p>WordPress中single.php是单篇日志模板，如果需要在单篇日志中加入GoogleAdSense或是其他广告，这样做。</p>
<p>找到你所在主题中single.php如下代码</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/useful/2010021238.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p><span style="color: #008000;">1、单日志添加AD(如Google AD)</span></p>
<p>WordPress中single.php是单篇日志模板，如果需要在单篇日志中加入GoogleAdSense或是其他广告，这样做。</p>
<p>找到你所在主题中single.php如下代码</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/useful/2010021238.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/technology/useful/2010021238.html/feed</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>人生就是在云端</title>
		<link>http://www.zenoven.com/life/other/2010021230.html</link>
		<comments>http://www.zenoven.com/life/other/2010021230.html#comments</comments>
		<pubDate>Sat, 27 Feb 2010 09:46:48 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[开心一笑]]></category>
		<category><![CDATA[杂记]]></category>
		<category><![CDATA[精华文章]]></category>
		<category><![CDATA[人生]]></category>
		<category><![CDATA[在云端]]></category>
		<category><![CDATA[硬盘]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/?p=1230</guid>
		<description><![CDATA[<blockquote><p>How much does your life weigh?Imaging for a second that you're carring a backpack. I want u to feel that the straps on your shoulders.Feel'em? Now I want you to pack it with all the stuff that u have in your life.Start with the little things, the things on shelves and in drawers,the knick-knacks,the collectibles.Feel the weights as that adds up. Then u start adding larger stuff, cloths, table-top appliances, lamps, linens, your TV. The backpack should be getting pretty heavy now. And u go bigger. Your couch, your bed, your kitchen table. Stuff it all in there. Your car, get it in there. Your home ,whether it is a studio apartment, or a two-bedroom house, I want u to staff it all into that backpack. Now try to walk. It's kind of hard, isn't it?</p>
<p>生活到底有多重？假设你背着一个背包，感受勒在你肩上的背带，感受到了么？我要你把生活中的一切都装入这个背包，从最小的物件开始，书架上的，抽屉里的，零食，一切乱七八糟的东西，感受重量不断增加。现在开始往里面装大点的物件，衣服，桌上的东西，台灯，毛巾枕头，电视机。现在它应该不小了，再往里面放更大的东西，你的沙发，床，餐桌，汽车，你的家，把他们统统装进去，现在，试着走走，是不是很沉重？</p></blockquote>
<p>这是&lt;&lt;在云端&gt;&gt;（Up in the Air）中的一段台词。这里面提到的关于背包，让我想到了自己。想到了硬盘，想到了生活，自己的背包。</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/2010021230.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<blockquote><p>How much does your life weigh?Imaging for a second that you're carring a backpack. I want u to feel that the straps on your shoulders.Feel'em? Now I want you to pack it with all the stuff that u have in your life.Start with the little things, the things on shelves and in drawers,the knick-knacks,the collectibles.Feel the weights as that adds up. Then u start adding larger stuff, cloths, table-top appliances, lamps, linens, your TV. The backpack should be getting pretty heavy now. And u go bigger. Your couch, your bed, your kitchen table. Stuff it all in there. Your car, get it in there. Your home ,whether it is a studio apartment, or a two-bedroom house, I want u to staff it all into that backpack. Now try to walk. It's kind of hard, isn't it?</p>
<p>生活到底有多重？假设你背着一个背包，感受勒在你肩上的背带，感受到了么？我要你把生活中的一切都装入这个背包，从最小的物件开始，书架上的，抽屉里的，零食，一切乱七八糟的东西，感受重量不断增加。现在开始往里面装大点的物件，衣服，桌上的东西，台灯，毛巾枕头，电视机。现在它应该不小了，再往里面放更大的东西，你的沙发，床，餐桌，汽车，你的家，把他们统统装进去，现在，试着走走，是不是很沉重？</p></blockquote>
<p>这是&lt;&lt;在云端&gt;&gt;（Up in the Air）中的一段台词。这里面提到的关于背包，让我想到了自己。想到了硬盘，想到了生活，自己的背包。</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/2010021230.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/life/other/2010021230.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>网站如何保持住流量</title>
		<link>http://www.zenoven.com/life/other/2010011150.html</link>
		<comments>http://www.zenoven.com/life/other/2010011150.html#comments</comments>
		<pubDate>Sun, 24 Jan 2010 13:02:13 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[SEO]]></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://www.zenoven.com/?p=1150</guid>
		<description><![CDATA[<p>对于博客或是相关类型的网站，如果不更新的话，流量似乎是很难维持住的，特别是对于排名不高，收录不多的朋友来说，这个问题好像更加突出。比如我，由于最近考试、回家等事情的影响，更新总是断断续续的，流量也不断下降。</p>
<p>那么我们该如何保持住流量呢？</p>
<p>要想解决这个问题，首先我们要问问自己，我们为什么要流量？要的是什么流量？你减少的是从哪里来的流量？</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/2010011150.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p>对于博客或是相关类型的网站，如果不更新的话，流量似乎是很难维持住的，特别是对于排名不高，收录不多的朋友来说，这个问题好像更加突出。比如我，由于最近考试、回家等事情的影响，更新总是断断续续的，流量也不断下降。</p>
<p>那么我们该如何保持住流量呢？</p>
<p>要想解决这个问题，首先我们要问问自己，我们为什么要流量？要的是什么流量？你减少的是从哪里来的流量？</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/2010011150.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/life/other/2010011150.html/feed</wfw:commentRss>
		<slash:comments>63</slash:comments>
		</item>
	</channel>
</rss>
