<?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>Modern Web Design Articles and Tutorials</title>
	<atom:link href="http://www.dlocc.com/articles/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dlocc.com/articles</link>
	<description></description>
	<lastBuildDate>Wed, 01 Sep 2010 23:22:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>No IE6, You Can’t Play!</title>
		<link>http://www.dlocc.com/articles/no-ie6-you-cant-play/</link>
		<comments>http://www.dlocc.com/articles/no-ie6-you-cant-play/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 23:19:08 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=2262</guid>
		<description><![CDATA[More and more sites are blocking access from IE6 users, and I couldn&#8217;t back them anymore. Not only is IE6 a bad choice for security reasons, if you have done any web design work you also know what a pain it is to comply to. Simply state, it breaks our cool tools! Check out this [...]]]></description>
			<content:encoded><![CDATA[<p>More and more sites are blocking access from IE6 users, and I couldn&#8217;t back them anymore.  Not only is IE6 a bad choice for security reasons, if you have done any web design work you also know what a pain it is to comply to.  Simply state, it breaks our cool tools! Check out this hilarious poster by the guys over at <a href="http://www.robotjohnny.com">robotjohnny.com</a> for <a href="http://www.momentile.com">momentile.com</a>.</p>
<p><a href="http://www.dlocc.com/articles/wp-content/uploads/2010/09/die-ie-6.jpg"><img src="http://www.dlocc.com/articles/wp-content/uploads/2010/09/die-ie-6-300x210.jpg" alt="IE6 can&#039;t play in the treehouse with all the other browsers" title="die-ie-6" width="300" height="210" class="alignnone size-medium wp-image-2263" /></a><br />
<span id="more-2262"></span></p>
<h2>What&#8217;s this Comic About?</h2>
<p>Basically all the &#8216;modern&#8217; browsers are playing in the treehouse and poor IE6 is disgruntled that he cannot.  He is sporting a 5 o&#8217;clock shadow and looks a little mean.  Meanwhile, Firefox is pointing out that IE7 is indeed related to the banned browser.  My question is this: why is IE7 still allowed in the treehouse?  Or any IE for that matter.  Internet Explorer 8 doesn&#8217;t even allow us to do anything cool with CSS3 or HTML5.  Bottom line, die IE die!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/no-ie6-you-cant-play/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Use a Facebook Like Button on Any Page</title>
		<link>http://www.dlocc.com/articles/how-to-use-a-facebook-like-button-on-any-page/</link>
		<comments>http://www.dlocc.com/articles/how-to-use-a-facebook-like-button-on-any-page/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 06:48:17 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=2230</guid>
		<description><![CDATA[The facebook like button is in. I know, you've been seeing it more and more around the web and now you want to implement it on your own website. I'll show you how to do just this using a little snippet of code that will allow you to add a dynamic Facebook "like" button to [...]]]></description>
			<content:encoded><![CDATA[<p>The facebook like button is in.  I know, you've been seeing it more and more around the web and now you want to implement it on your own website.  I'll show you how to do just this using a little snippet of code that will allow you to add a dynamic Facebook "like" button to any page on your website!</p>
<p><img src="http://www.dlocc.com/articles/wp-content/uploads/2010/07/facebook-like-button.jpg" alt="Implement a dynamic Facebook Like button" title="facebook-like-button" width="450" height="86" class="alignnone size-full wp-image-2237" /></p>
<span id="more-2230"></span>
<p>First off, why would you want this?  Let's say you have a blog and in the footer (or header... or sidebar) you'd like to have the facebook like button.  Well, it really isn't very practical to have to insert this in the footer of your post everytime you create a new entry.  Solution: let's leverage the power of PHP to make the Facebook like button dynamic!</p>
<h3>Facebook Like Button PHP Code</h3>
[inline]
<pre class="brush: php;">
 &lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=&lt;?php echo rawurlencode('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']); ?&gt;&amp;amp;layout=standard&amp;amp;show_faces=false&amp;amp;width=275&amp;amp;action=like&amp;amp;colorscheme=dark&amp;amp;height=35&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:275px; height:35px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
</pre>
[/inline]
<h4>Code Explanation</h4>
<p>What the code above will do is allow you to insert a <strong>dynamic like button</strong> in a common place on your website and have that button's url change according to the page the visitor is on (hence why I say dynamic).  For instance, on a WordPress site you could put the code in your sidebar.php file and the url to be 'liked' would be whatever page the visitor is on. </p>
<h4>Extra Tips</h4>
<p>If you don't want the url to change and only want the user to 'like' one url on your site (let's say the homepage for instance) then you could change the address to that static text.  This is in fact how the <a href="http://developers.facebook.com/docs/reference/plugins/like" title="Create a Facebook Like button">Facebook like button creation tool</a> works on their website.</p>
<p><strong>Also:</strong> Don't forget the power of PHP and, if you're on the WordPress CMS then you can also leverage the built in functions like bloginfo('url'); and more!  Simply replace </p>
<p>Hope you enjoy this snippet.  Also, FYI... Facebook has changed 'become a fan' to just like... Questions? Leave a comment below or <a href="/contact/" title="Contact DLOCC" />Contact DLOCC</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/how-to-use-a-facebook-like-button-on-any-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Setup XAMPP WordPress Virtual Hosts</title>
		<link>http://www.dlocc.com/articles/how-to-setup-xampp-wordpress-virtual-hosts/</link>
		<comments>http://www.dlocc.com/articles/how-to-setup-xampp-wordpress-virtual-hosts/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 02:07:53 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Virtual Hosting]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XAMPP]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=2216</guid>
		<description><![CDATA[I like to develop in a localized environment where I have to do minimal setup and configuration on the remote server when it's time to go live. Working with WordPress makes it very easy to do this and it's a breeze to setup with virtual hosts and the free XAMPP stack. Why do this? It [...]]]></description>
			<content:encoded><![CDATA[<p>I like to develop in a localized environment where I have to do minimal setup and configuration on the remote server when it's time to go live.  Working with WordPress makes it very easy to do this and it's a breeze to setup with virtual hosts and the free XAMPP stack.</p>

<p>Why do this?  It makes it very easy to move over the WordPress database when it's time to go live.  Developing locally is always in your best interest.  This method is preferred over 'going commando' because you can keep better control over your code and it's faster to develop.  Plus a whole slew of other reasons that you can Google if you feel like it.  Let's get started on setting up your WordPress install to use XAMPP's virtual hosting capabilities.</p> 
<img src="http://www.dlocc.com/articles/wp-content/uploads/2010/07/wordpress-apache-linux-mysql.jpg" alt="" title="wordpress-apache-linux-mysql" width="450" height="106" class="alignnone size-full wp-image-2226" />


<span id="more-2216"></span>

<p><strong>1.</strong> Open your <strong>Windows Hosts</strong> file by clicking on <strong><em>My Computer</em></strong> and navigating to "<strong>\Windows\system32\drivers\etc\</strong>"</p>

<img class="alignnone size-full wp-image-2217" title="system-files" src="http://www.dlocc.com/articles/wp-content/uploads/2010/07/system-files.jpg" alt="Windows Virtual Host Directory" width="541" height="232" />
<br  />

<p><strong>2.</strong> Add the following to the bottom of the hosts file by using your text editor of choice.  Notepad will work just fine.</p>

<p><strong>127.0.0.1    somesite.com<br />
127.0.0.1    www.somesite.com</strong></p>

<p>Note: Be sure to replace "somesite" with your actual WordPress website domain name</p>


<p><strong>3.</strong> Now navigate to your XAMPP <strong>httpd-vhosts.conf</strong> by navigating to: <strong>C:/XAMPP/apache/conf/extras</strong></p>

<img class="alignnone size-full wp-image-2219" title="http-vhosts" src="http://www.dlocc.com/articles/wp-content/uploads/2010/07/http-vhosts.jpg" alt="" width="550" height="415" />
<br  />

<p><strong>4</strong>. Uncomment the following line:</p>

<strong>NameVirtualHost *:80</strong>

<img class="alignnone size-full wp-image-2220" title="uncomment-line" src="http://www.dlocc.com/articles/wp-content/uploads/2010/07/uncomment-line.jpg" alt="Uncomment the following line in your XAMPP Virtual Hosts File" width="281" height="366" />
<br  />

<p><strong>5.</strong>Add the following at the bottom of the file and save the file before you close it:</p>

[inline]
<pre class="brush: plain;">
&lt;VirtualHost *:80&gt;
DocumentRoot “E:/xampp/htdocs/”
ServerName localhost
ServerAlias localhost
&lt;/VirtualHost&gt;

&lt;VirtualHost *:80&gt;
DocumentRoot “E:/xampp/htdocs/somesite”
ServerName www.somesite.com
ServerAlias www.somesite.com
&lt;/VirtualHost&gt;

&lt;VirtualHost *:80&gt;
DocumentRoot “E:/xampp/htdocs/somesite”
ServerName somesite.com
ServerAlias somesite.com
&lt;/VirtualHost&gt;
</pre>
[/inline]
<br  />
<p><strong>Wait! One last thing...</strong> Now <strong>restart </strong> Apache and MySQL (using XAMMP) and you should be good to go when you navigate your browser to the url you specified for your WordPress installation using the tutorial above (once you restart the services).  If you have any comments or questions be sure to use the comment box below or the <a href="/contact/" title="Contact Devin Walker" >Contact DLOCC</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/how-to-setup-xampp-wordpress-virtual-hosts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use JavaScript to Print an Image</title>
		<link>http://www.dlocc.com/articles/use-javascript-to-print-an-image/</link>
		<comments>http://www.dlocc.com/articles/use-javascript-to-print-an-image/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 23:17:21 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=2201</guid>
		<description><![CDATA[Using JavaScript you can have images print when clicked on. What this script will do for you is open whatever image is specified in the JavaScript in a new browser window along with the Print options window. This method is useful if you are looking for a way to have either a print button for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="#" onclick='javascript:window.open("http://www.dlocc.com/articles/wp-content/uploads/2010/07/printer-icon.png","mywindow","width=128,height=128,left=650,top=-1"); location.href="javascript:window.print()"'><img src="http://www.dlocc.com/articles/wp-content/uploads/2010/07/printer-icon.png" alt="" title="printer-icon" width="128" height="128" class="alignleft size-full wp-image-2199" /></a>Using JavaScript you can have images print when clicked on.  What this script will do for you is open whatever image is specified in the JavaScript in a new browser window along with the Print options window.</p>
<p>This method is useful if you are looking for a way to have either a print button for a specific image on a page.  Please refer to the demo to see exactly how this can be accomplished.  Remember to specify the image's width and height in the JavaScript onClick event.</p>
<span id="more-2201"></span>
<br  /><br  />
[inline]
<pre class="brush: jscript;">
&lt;img src=&quot;http://www.dlocc.com/articles/wp-content/uploads/2010/07/fluffy-kitten.jpg&quot; alt=&quot;Print this Fluffy Kitten by Clicking Below&quot; /&gt;
&lt;a href=&quot;#&quot; onclick='javascript:window.open(&quot;http://www.dlocc.com/articles/wp-content/uploads/2010/07/fluffy-kitten.jpg&quot;,&quot;mywindow&quot;,&quot;width=322,height=323,left=650,top=-1&quot;); location.href=&quot;javascript:window.print()&quot;'&gt;Click to Print the Image Above&lt;/a&gt;  
</pre>
[/inline]
<p>If you want to see the demo please click through and we'll show you how to use JavaScript to print images by clicking a link.</p>
<h3>Demo JavaScript Print Image Button:</h3>
<a  href="#"  onclick='javascript:window.open("http://www.dlocc.com/articles/wp-content/uploads/2010/07/fluffy-kitten.jpg","mywindow","width=322,height=323,left=650,top=-1"); location.href="javascript:window.print()"'><img src="http://www.dlocc.com/articles/wp-content/uploads/2010/07/fluffy-kitten.jpg" alt="Print this Fluffy Kitten by Clicking Below" /></a>
<a  href="#"  onclick='javascript:window.open("http://www.dlocc.com/articles/wp-content/uploads/2010/07/fluffy-kitten.jpg","mywindow","width=322,height=323,left=650,top=-1"); location.href="javascript:window.print()"'>Click to Print the Image Above</a>  ]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/use-javascript-to-print-an-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Office SharePoint</title>
		<link>http://www.dlocc.com/articles/microsoft-office-sharepoint/</link>
		<comments>http://www.dlocc.com/articles/microsoft-office-sharepoint/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 03:10:17 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[CMS]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=2191</guid>
		<description><![CDATA[After I graduated college I became very interested in working in the IT field, but also retain my web experience.  Microsoft Office SharePoint allowed me to do just that. ]]></description>
			<content:encoded><![CDATA[After I graduated college I became very interested in working in the IT field, but also retain my web experience.  Microsoft Office SharePoint allowed me to do just that.  I began learning the ins and outs of the ECM and helped implement it at my first company, <a href="http://www.anacomp.com" title="Anacomp, Inc.">Anacomp, Inc</a>.  For two years I worked with SharePoint daily and have published several articles on this website that rank very high among trouble-shooting searches.]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/microsoft-office-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Approval Experts</title>
		<link>http://www.dlocc.com/articles/the-approval-experts/</link>
		<comments>http://www.dlocc.com/articles/the-approval-experts/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 02:46:26 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=2182</guid>
		<description><![CDATA[The Approval Experts - Developed by Devin Walker for Jeran Fraser]]></description>
			<content:encoded><![CDATA[The Approval Experts - Developed by Devin Walker for Jeran Fraser]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/the-approval-experts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Heirarchical Sidebar Page Menus</title>
		<link>http://www.dlocc.com/articles/wordpress-heirarchical-sidebar-page-menus/</link>
		<comments>http://www.dlocc.com/articles/wordpress-heirarchical-sidebar-page-menus/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 00:49:56 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=2171</guid>
		<description><![CDATA[Let's say you want to show a hierarchical sidebar menu that displays a listing of current subpages. This is easy enough, but let's say that you have a top menu that shows all top-level pages. Once you click on a top level page from that menu it will take you there and in the sidebar [...]]]></description>
			<content:encoded><![CDATA[Let's say you want to show a hierarchical sidebar menu that displays a listing of current subpages.  This is easy enough, but let's say that you have a top menu that shows all top-level pages.  Once you click on a top level page from that menu it will take you there and in the sidebar show all subsequent child pages.  Now what if those child pages have a child?  You don't want all menu items to disappear when you click on one of those child pages.  That just looks funny.  Here's the bit of code that works great for me:

[inline]
<pre class="brush: php;">
&lt;?php 
if ((count($post-&gt;ancestors) &gt; 0) 
        &amp;&amp; ($data = array_reverse($post-&gt;ancestors)) 
        &amp;&amp; !is_null($data[0])){ 
	$data = wp_list_pages('title_li=&amp;echo=0&amp;child_of='.$data[0]); 
} else { 
        $data = wp_list_pages('title_li=&amp;echo=0&amp;child_of='.$post-&gt;ID); 	
} 
if (strlen($data) != '') {?&gt;
          &lt;ul class='nav'&gt;&lt;?php echo  $data; ?&gt;&lt;/ul&gt;	
&lt;?php } ?&gt;
</pre>
[/inline]]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/wordpress-heirarchical-sidebar-page-menus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Cat</title>
		<link>http://www.dlocc.com/articles/custom-cat/</link>
		<comments>http://www.dlocc.com/articles/custom-cat/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 02:01:38 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[e-Commerce]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=2161</guid>
		<description><![CDATA[Soundpress tool's Custom Cat brings together auto parts distributors and suppliers in a central location.]]></description>
			<content:encoded><![CDATA[SoundPress Tool's Custom Cat is a database-driven website built upon the ASP.NET MVC2 framework.  ]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/custom-cat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Green Learning Station</title>
		<link>http://www.dlocc.com/articles/green-learning-station/</link>
		<comments>http://www.dlocc.com/articles/green-learning-station/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 01:41:10 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=2154</guid>
		<description><![CDATA[The Green Learning Station is the place to learn sustainable practices for gardens and the systems that support them located in the heart of Cincinnati.]]></description>
			<content:encoded><![CDATA[Opening in fall 2010 on the grounds of the Civic Garden Center in the heart of Cincinnati, the Green Learning Station will be the place to learn sustainable practices for gardens and the systems that support them.]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/green-learning-station/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Alternating Classes</title>
		<link>http://www.dlocc.com/articles/wordpress-alternating-classes/</link>
		<comments>http://www.dlocc.com/articles/wordpress-alternating-classes/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 17:32:35 +0000</pubDate>
		<dc:creator>Devin Walker</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.dlocc.com/articles/?p=2122</guid>
		<description><![CDATA[It's often very useful to have alternating classes in for styling purposes. Let's say you want every other row to be a darker shading, this is very common and I'll show you how to implement this in WordPress using a simple bit of code. For my example here I will show you how to create [...]]]></description>
			<content:encoded><![CDATA[<p>It's often very useful to have alternating classes in for styling purposes.  Let's say you want every other row to be a darker shading, this is very common and I'll show you how to implement this in WordPress using a simple bit of code.</p>
<p>For my example here I will show you how to create alternating classes for use with the WordPress loop.  This way, when the loop pulls your posts from the db every post container will have a separate class name up to as many as we define in our array.  This method of alternating classes in WordPress will work for wherever you have a loop.  Therefore, your comments, categories, tags, etc. can all be styled up using this method.  Pretty cool huh? Let's see how this is done.</p> 
<span id="more-2122"></span>
<h3>First Define the Class Array</h3>
<p>The bit of code below should NOT be inside your WordPress loop, rather right before it.</p>
[inline]
<pre class="brush: php;">
&lt;?php 
    // let's setup some classes first for us to style
    $style_classes = array('dloccBox1','dloccBox2','dloccBox3');
    $style_index = 0;
?&gt;
</pre>
[/inline]

<h3>Next Echo the Classes</h3>
<p>Now that we have our array setup it's time to output the class names into the loop</p>
[inline]
<pre class="brush: php;">
&lt;?php query_posts('category_name=portfolio&amp;order=asc&amp;nopaging=true'); ?&gt;
	&lt;?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?&gt;
              &lt;div class=&quot;&lt;?php $k = $style_index%3; echo &quot;$style_classes[$k]&quot;; $style_index++ ?&gt;&quot;&gt;
                   &lt;?php the_content(); ?&gt;
              &lt;/div&gt;
       &lt;?php endwhile; else: ?&gt;
&lt;?php endif; ?&gt;
</pre>
[/inline]
<p>On the third line notice how we are using this bit of code to output a class name and then cycle to the next item in the array?  Now you are free to style as you wish!  Of course, make sure you test with Firebug that the classes are outputting as you want.  Let me know if you have any question by commenting below!</p>]]></content:encoded>
			<wfw:commentRss>http://www.dlocc.com/articles/wordpress-alternating-classes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
