<?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>www.wpfood.com &#187; 125</title>
	<atom:link href="http://www.wpfood.com/tag/125/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wpfood.com</link>
	<description>WordPress for Beginners</description>
	<lastBuildDate>Fri, 05 Mar 2010 15:32:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WP125 Ad Management Plugin</title>
		<link>http://www.wpfood.com/2009/02/27/wp125-ad-management-plugin/</link>
		<comments>http://www.wpfood.com/2009/02/27/wp125-ad-management-plugin/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 18:19:47 +0000</pubDate>
		<dc:creator>Marco</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[125]]></category>
		<category><![CDATA[Ad Management]]></category>
		<category><![CDATA[advertisments]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[The stars]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WP125]]></category>

		<guid isPermaLink="false">http://www.wpfood.com/?p=202</guid>
		<description><![CDATA[With over 13,000 thousand downloads this plugin is hardly a ...]]></description>
			<content:encoded><![CDATA[<p>With over 13,000 thousand downloads this plugin is hardly a secret but better than a secret is the fact that it works right out of the box. Its great for basic ad management for those ubiquitous 125/125 boxes.</p>
<p>If your using the stars theme and don&#8217;t like updating those extra files on your server and want to do everything from your WordPress dashboard then this is the plugin for you.</p>
<p>Download it <a href="http://wordpress.org/extend/plugins/wp125/" target="_blank">here</a></p>
<p>http://wordpress.org/extend/plugins/wp125/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpfood.com/2009/02/27/wp125-ad-management-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Ad 125/125 Advertising Blocks</title>
		<link>http://www.wpfood.com/2009/02/15/how-to-ad-125125-advertising-blocks/</link>
		<comments>http://www.wpfood.com/2009/02/15/how-to-ad-125125-advertising-blocks/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 19:34:05 +0000</pubDate>
		<dc:creator>Marco</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[The stars]]></category>
		<category><![CDATA[125]]></category>
		<category><![CDATA[125x125]]></category>
		<category><![CDATA[ad blocks]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[Advertising Blocks]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[How to Ad]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[stars]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[thestars]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.wpfood.com/?p=42</guid>
		<description><![CDATA[Some people requested that they want the ability to add ...]]></description>
			<content:encoded><![CDATA[<p>Some people requested that they want the ability to add 125&#215;125 ads to their sidebar like the ones that I have so here it is.</p>
<p><strong>STEP ONE</strong></p>
<p>Add the below CSS to the bottom of your screen.css</p>
<pre class="brush: css;">/* Ad Blocks

---------------------------------------------------------------- */

.block

{

margin: 0px 0 0;

padding: 0 0 0px;

color: #aaa;

text-align: center;

text-transform: lowercase;

font-family: monospace;

line-height: .8em;

}

.halfblock

{

width:50%;

float:left;

padding:0;

margin:0;

}</pre>
<p><strong>STEP TWO</strong></p>
<p>Download and extract, then add these two files to your ads folder (example: themes/thsestars/ads/)</p>
<p>Download <a href="http://www.wpfood.com/download/125x125ads.zip">here</a></p>
<p>Alternatively you can just copy the files you have in your stars theme and then rename them ads-125&#215;125right.php and ads-125&#215;125right.php</p>
<p><strong>STEP THREE</strong></p>
<p>Add this code in your sidebar.php where you want the two 125&#215;125 ads to appear.</p>
<pre class="brush: php;">&lt;!-- 125/125 Ad blocks section --&gt;

&lt;li id=&quot;asides&quot;&gt;

&lt;div class=&quot;block&quot;&gt;

&lt;div class=&quot;halfblock&quot;&gt;

&lt;?php include (TEMPLATEPATH . '/ads/ads-125x125left.php'); ?&gt;&lt;/div&gt;&lt;div class=&quot;halfblock&quot;&gt;&lt;?php include (TEMPLATEPATH . '/ads/ads-125x125right.php'); ?&gt;

&lt;/div&gt;

&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;

&lt;/li&gt;

&lt;!-- End 125/125 Ad blocks section --&gt;</pre>
<p>When adding all of the above you must remember to add your ad spots using the left/right.php files or else nothing else will show up.</p>
<p><strong>Example:</strong></p>
<pre class="brush: xml;">&lt;a href=&quot;thelinktoyourad&quot; target=&quot;blank&quot;&gt;&lt;img src=&quot;thelinkwheretheimageisstored&quot; alt=&quot;nameofad&quot; /&gt;&lt;/a&gt;</pre>
<p>See the ads in action in my sidebar &#8212;&#8212;&#8212;&#8212;&gt;&gt;&gt;&gt;</p>
<p>Any trouble post below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpfood.com/2009/02/15/how-to-ad-125125-advertising-blocks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
