<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: More-Than-Zebra style wordpress loop</title>
	<atom:link href="http://www.transformationpowertools.com/wordpress/zebra-style-wordpress-loop/feed" rel="self" type="application/rss+xml" />
	<link>http://www.transformationpowertools.com/wordpress/zebra-style-wordpress-loop</link>
	<description>for personal growth and transformation</description>
	<lastBuildDate>Wed, 25 Jan 2012 22:03:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: alchymyth</title>
		<link>http://www.transformationpowertools.com/wordpress/zebra-style-wordpress-loop#comment-5983</link>
		<dc:creator>alchymyth</dc:creator>
		<pubDate>Mon, 24 Oct 2011 09:17:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=591#comment-5983</guid>
		<description>&lt;blockquote&gt;how to assign more than one class&lt;/blockquote&gt;

either double the code and make one with &#039;left&#039;,&#039;right&#039;,center&#039; instead of &#039;one&#039;,&#039;two&#039;,&#039;three&#039;; in which case you could even use two cycles with different numbers of elements, therefor getting an asynchroneous formatting. or use the existing one and build your styles on it; example: &lt;code&gt;.one img {float:left;} .two img {float:right;} .three img { display:block;margin:0 auto;}&lt;/code&gt;
and you can add these new classes into the &lt;a href=&quot;http://codex.wordpress.org/Function_Reference/post_class&quot; rel=&quot;nofollow&quot;&gt;&#039;post_class()&#039;&lt;/a&gt; as described in &lt;a href=&quot;http://www.transformationpowertools.com/wordpress/alternating-post-backgrounds-twentyten&quot; rel=&quot;nofollow&quot;&gt;my other post&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<blockquote><p>how to assign more than one class</p></blockquote>
<p>either double the code and make one with &#8216;left&#8217;,'right&#8217;,center&#8217; instead of &#8216;one&#8217;,'two&#8217;,'three&#8217;; in which case you could even use two cycles with different numbers of elements, therefor getting an asynchroneous formatting. or use the existing one and build your styles on it; example: <code>.one img {float:left;} .two img {float:right;} .three img { display:block;margin:0 auto;}</code><br />
and you can add these new classes into the <a href="http://codex.wordpress.org/Function_Reference/post_class" rel="nofollow">&#8216;post_class()&#8217;</a> as described in <a href="http://www.transformationpowertools.com/wordpress/alternating-post-backgrounds-twentyten" rel="nofollow">my other post</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Loop, Halco Velcro</title>
		<link>http://www.transformationpowertools.com/wordpress/zebra-style-wordpress-loop#comment-5980</link>
		<dc:creator>Loop, Halco Velcro</dc:creator>
		<pubDate>Mon, 24 Oct 2011 06:01:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=591#comment-5980</guid>
		<description>Fantastic Tutorial, one thing I would like to know, and would be very greatful for, is how to assign more than one class to allow not only a different Background but also a different icon or image alignment.</description>
		<content:encoded><![CDATA[<p>Fantastic Tutorial, one thing I would like to know, and would be very greatful for, is how to assign more than one class to allow not only a different Background but also a different icon or image alignment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Loop, Halco Velcro</title>
		<link>http://www.transformationpowertools.com/wordpress/zebra-style-wordpress-loop#comment-5979</link>
		<dc:creator>Loop, Halco Velcro</dc:creator>
		<pubDate>Mon, 24 Oct 2011 05:56:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=591#comment-5979</guid>
		<description>you can extend this method to create any number of cyclic classes and you can use it in any situation in your wordpress templates, where you loop through some output – lists, foreach, for, while, posts</description>
		<content:encoded><![CDATA[<p>you can extend this method to create any number of cyclic classes and you can use it in any situation in your wordpress templates, where you loop through some output – lists, foreach, for, while, posts</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alchymyth</title>
		<link>http://www.transformationpowertools.com/wordpress/zebra-style-wordpress-loop#comment-5590</link>
		<dc:creator>alchymyth</dc:creator>
		<pubDate>Thu, 18 Aug 2011 16:20:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=591#comment-5590</guid>
		<description>this method is adding an alternating css class to the post div; everything else in the styles could be done using cascading styles;
for instance: 
assume a html structure like:
&lt;code&gt;&lt;div class=&quot;post &lt;?php echo $extra_class; ?&gt;&quot;&gt; ... &lt;span class=&quot;arrow&quot;&gt;&lt;/span&gt; ... &lt;/div&gt;&lt;!--formatted--&gt;&lt;/code&gt; 
then you could have the different arrow by using css lke this:
&lt;code&gt;.even .arrow { background: url(images/leftarrow.jpg; }
.odd .arrow { background: url(images/rightarrow.jpg; }&lt;/code&gt;

for more details, it would be better to have a specific example to work with.</description>
		<content:encoded><![CDATA[<p>this method is adding an alternating css class to the post div; everything else in the styles could be done using cascading styles;<br />
for instance:<br />
assume a html structure like:<br />
<code>&lt;div class=&quot;post &lt;?php echo $extra_class; ?&gt;&quot;&gt; ... &lt;span class=&quot;arrow&quot;&gt;&lt;/span&gt; ... &lt;/div&gt;<!--formatted--></code><br />
then you could have the different arrow by using css lke this:<br />
<code>.even .arrow { background: url(images/leftarrow.jpg; }<br />
.odd .arrow { background: url(images/rightarrow.jpg; }</code></p>
<p>for more details, it would be better to have a specific example to work with.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.transformationpowertools.com/wordpress/zebra-style-wordpress-loop#comment-5588</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Thu, 18 Aug 2011 14:35:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=591#comment-5588</guid>
		<description>Look like the comment removed my code

e.g. &lt;code&gt; &lt;?php $c++;
                    if( $c % 2 == 0 ) $bg = &#039; &#039; &amp;&amp; $arrow = &#039;leftarrow&#039;;
                    else $bg = &#039;alt-color&#039; &amp;&amp; $arrow = &#039;rightarrow&#039;; ?&gt; &lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Look like the comment removed my code</p>
<p>e.g. <code> &lt;?php $c++;<br />
                    if( $c % 2 == 0 ) $bg = &#039; &#039; &amp;&amp; $arrow = &#039;leftarrow&#039;;<br />
                    else $bg = &#039;alt-color&#039; &amp;&amp; $arrow = &#039;rightarrow&#039;; ?&gt; </code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.transformationpowertools.com/wordpress/zebra-style-wordpress-loop#comment-5587</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Thu, 18 Aug 2011 14:34:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=591#comment-5587</guid>
		<description>Fantastic Tutorial, one thing I would like to know, and would be very greatful for, is how to assign more than one class to allow not only a different Background but also a different icon or image alignment.

e.g.            

so one post will show a not only an alternative background colour but also a differnt arrow image (left or right)

Thanks Again,

Alex</description>
		<content:encoded><![CDATA[<p>Fantastic Tutorial, one thing I would like to know, and would be very greatful for, is how to assign more than one class to allow not only a different Background but also a different icon or image alignment.</p>
<p>e.g.            </p>
<p>so one post will show a not only an alternative background colour but also a differnt arrow image (left or right)</p>
<p>Thanks Again,</p>
<p>Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wp-popular.com &#187; Blog Archive &#187; TransformationPowerTools » Zebra style wordpress loop &#124; for personal growth and transformation</title>
		<link>http://www.transformationpowertools.com/wordpress/zebra-style-wordpress-loop#comment-584</link>
		<dc:creator>wp-popular.com &#187; Blog Archive &#187; TransformationPowerTools » Zebra style wordpress loop &#124; for personal growth and transformation</dc:creator>
		<pubDate>Fri, 06 Aug 2010 20:55:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=591#comment-584</guid>
		<description>[...] Continued here: TransformationPowerTools » Zebra style wordpress loop &#124; for personal growth and transformation [...]</description>
		<content:encoded><![CDATA[<p>[...] Continued here: TransformationPowerTools » Zebra style wordpress loop | for personal growth and transformation [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

