<?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>The PhenixbluE &#187; RSS</title>
	<atom:link href="http://phenix.thephenixblue.com/category/web-design/rss-web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://phenix.thephenixblue.com</link>
	<description>Bringing Nonsense to the Masses since 2003!</description>
	<lastBuildDate>Wed, 10 Mar 2010 22:26:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WP Dynamic Highlight Menu</title>
		<link>http://phenix.thephenixblue.com/2009/09/wp-dynamic-highlight-menu/</link>
		<comments>http://phenix.thephenixblue.com/2009/09/wp-dynamic-highlight-menu/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 13:00:07 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=370</guid>
		<description><![CDATA[OK, so I have a major problem with brainstorming and researching a certain item, function, procedure, trick, hack etc for the current project I&#8217;m working on, never writing it down, and having to re-learn it all over again the next time I need to use the same thing. Since I&#8217;ve been trying to keep content [...]]]></description>
			<content:encoded><![CDATA[<p>OK, so I have a major problem with brainstorming and researching a certain item, function, procedure, trick, hack etc for the current project I&#8217;m working on, never writing it down, and having to re-learn it all over again the next time I need to use the same thing. Since I&#8217;ve been trying to keep content churning out on this site, I figured I could start posting stuff here to at least serve as a repository for all the stuff I will never remember off the top of my head [since no one really reads the site anyways]. Anywho, I found myself working on a WordPress project recently that had the simple need of a dynamic menu that highlighted the current page. Most people choose to go the easy route and use code similar to this:</p>
<h5><code><span style="color: #00ccff">&lt;ul id="nav"&gt;<br />
&lt;li&lt;?php if ( is_home() ) { echo 'class="current"'; } ?&gt;&gt;&lt;a href="#"&gt;Gallery&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&lt;?php if ( is_page('about') ) { echo 'class="current"'; } ?&gt;&gt;&lt;a href="#"&gt;About&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&lt;?php if ( is_page('submit') ) { echo 'class="current"'; } ?&gt;&gt;&lt;a href="#"&gt;Submit&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;</span></code></h5>
<p>Whereas this will do the trick for a finite menu where the names will never change, it&#8217;s not what I wanted for my client. With a little research in to some of the changes in the past couple versions of WP, I was able to get the desired results with a few lines of code:</p>
<p><span style="color: #00ccff">&lt;div id=&#8221;menu&#8221;&gt;<br />
&lt;!&#8211;Main navigation menu&#8211;&gt;<br />
&lt;ul&gt;<br />
&lt;?php wp_page_menu(&#8217;show_home=1&#8242;); ?&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;&lt;!&#8211; menu &#8211;&gt;</span></p>
<p>You might ask &#8220;How does it know what the current page is?&#8221; I say&#8230;..&#8221;WordPress is awesome and takes care of it for you these days! When using the <em><span style="color: #00ccff">wp_page_menu() </span></em>function, the &#8220;current_page_item&#8221; class is automatically added to the current selected page. The end result will be this:</p>
<pre><span style="color: #00ccff">&lt;li class="current_page_item"&gt;</span></pre>
<p>Rather than:</p>
<pre><span style="color: #00ccff">&lt;li class="page_item page-item-2"&gt;</span></pre>
<p>So the accompanying CSS would just apply the &#8220;current&#8221; styling to the &#8220;current_page_item&#8221; class, and you&#8217;re done!!!</p>
<p>The way I chose to do it makes for less code on the developer&#8217;s side, and also allows menu items to be updated dynamically when a user adds a new page, deletes and old one, updates a pages name, or changes the order. While I appreciate WP&#8217;s addition of the <span style="color: #00ccff">wp_page_menu()</span> function, I wish they would add the options to specify what item the class is attached to (list item or link), as well as the option to specify your own class name in place of &#8220;current_page_item.&#8221; I hope someone else finds this to be useful. As always I encourage comments and discussion!</p>
<p>-Phenix</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F09%2Fwp-dynamic-highlight-menu%2F&amp;linkname=WP%20Dynamic%20Highlight%20Menu" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F09_2Fwp-dynamic-highlight-menu_2F_amp_linkname=WP_20Dynamic_20Highlight_20Menu&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/09/wp-dynamic-highlight-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>53 CSS Techniques You Couldn&#8217;t Live Without</title>
		<link>http://phenix.thephenixblue.com/2009/09/53-css-techniques-you-couldnt-live-without/</link>
		<comments>http://phenix.thephenixblue.com/2009/09/53-css-techniques-you-couldnt-live-without/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 15:34:46 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[RSS]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=363</guid>
		<description><![CDATA[CSS is important. And it is being used more and more often. Cascading Style Sheets offer many advantages you don’t have in table-layouts – and first of all a strict separation between layout, or design of the page, and the information, presented on the page. Thus the design of pages can be easily changed, just [...]]]></description>
			<content:encoded><![CDATA[<p>CSS is important. And it is being used more and more often. Cascading Style Sheets offer many advantages you don’t have in table-layouts – and first of all a strict separation between layout, or design of the page, and the information, presented on the page. Thus the design of pages can be easily changed, just replacing a css-file with another one. Isn’t it great? Well, actually, it is.</p>
<p>Over the last few years web-developers have written many articles about CSS and developed many useful techniques, which can save you a lot of time – of course, if you are able to find them in time. Below you’ll find a list of techniques we , as web-architects, really couldn’t live without. They are essential and they indeed make our life easier. Let’s take a look at <strong>53 CSS-based techniques you should always have ready to hand if you develop web-sites</strong>. <em>Links checked: June/11 2008.</em></p>
<p>You might want to take a look at the article <a href="http://www.smashingmagazine.com/2008/02/21/powerful-css-techniques-for-effective-coding/" onclick="urchinTracker('/outgoing/www.smashingmagazine.com/2008/02/21/powerful-css-techniques-for-effective-coding/?referer=');">Powerful CSS-Techniques For Effective Coding</a>.</p>
<p>1. <a href="http://www.nundroo.com/navigation/" onclick="urchinTracker('/outgoing/www.nundroo.com/navigation/?referer=');">CSS Based Navigation</a></p>
<p><img src="http://media2.smashingmagazine.com/images/css/css-techniques0000.gif" alt="" width="485" height="170" /></p>
<p>2. <a href="http://superfluousbanter.org/archives/2004/05/navigation-matrix-reloaded/" onclick="urchinTracker('/outgoing/superfluousbanter.org/archives/2004/05/navigation-matrix-reloaded/?referer=');">Navigation Matrix Reloaded</a></p>
<p><a href="http://superfluousbanter.org/archives/2004/05/navigation-matrix-reloaded/" onclick="urchinTracker('/outgoing/superfluousbanter.org/archives/2004/05/navigation-matrix-reloaded/?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0001.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>3. <a href="http://exploding-boy.com/images/cssmenus/menus.html" onclick="urchinTracker('/outgoing/exploding-boy.com/images/cssmenus/menus.html?referer=');">CSS Tabs</a></p>
<p><a href="http://exploding-boy.com/images/cssmenus/menus.html" onclick="urchinTracker('/outgoing/exploding-boy.com/images/cssmenus/menus.html?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0002.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>4. <a href="http://www.khmerang.com/index.php?p=118" onclick="urchinTracker('/outgoing/www.khmerang.com/index.php?p=118&amp;referer=');">CSS Bar Graphs</a> (<a href="http://applestooranges.com/blog/post/css-for-bar-graphs/?id=55" onclick="urchinTracker('/outgoing/applestooranges.com/blog/post/css-for-bar-graphs/?id=55&amp;referer=');">CSS For Bar Graphs</a>)</p>
<p><a href="http://www.khmerang.com/index.php?p=118" onclick="urchinTracker('/outgoing/www.khmerang.com/index.php?p=118&amp;referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0003.gif" alt="CSS-Technique" width="485" height="170" /></a><span id="more-363"></span></p>
<p>5. <a href="http://icant.co.uk/sandbox/footercollapsetables/" onclick="urchinTracker('/outgoing/icant.co.uk/sandbox/footercollapsetables/?referer=');">Collapsing Tables: An Example</a></p>
<p><a href="http://icant.co.uk/sandbox/footercollapsetables/" onclick="urchinTracker('/outgoing/icant.co.uk/sandbox/footercollapsetables/?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0004.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>6. <a href="http://www.flog.co.nz/lab/ARC/ARC.htm" onclick="urchinTracker('/outgoing/www.flog.co.nz/lab/ARC/ARC.htm?referer=');">Adam’s Radio &amp; Checkbox Customisation Method</a></p>
<p><a href="http://www.flog.co.nz/lab/ARC/ARC.htm" onclick="urchinTracker('/outgoing/www.flog.co.nz/lab/ARC/ARC.htm?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0005.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>7. <a href="http://www.mezzoblue.com/tests/revised-image-replacement/" onclick="urchinTracker('/outgoing/www.mezzoblue.com/tests/revised-image-replacement/?referer=');">CSS Image Replacement</a></p>
<p><a href="http://www.mezzoblue.com/tests/revised-image-replacement/" onclick="urchinTracker('/outgoing/www.mezzoblue.com/tests/revised-image-replacement/?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0006.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>8. CSS Shadows (<a href="http://web-graphics.com/mtarchive/001589.php" onclick="urchinTracker('/outgoing/web-graphics.com/mtarchive/001589.php?referer=');">CSS Shadows Roundup</a>)</p>
<p><img src="http://media1.smashingmagazine.com/images/css/css-techniques0007.gif" alt="CSS-Technique" width="485" height="170" /></p>
<p>9. <a href="http://www.smileycat.com/miaow/archives/000044.html" onclick="urchinTracker('/outgoing/www.smileycat.com/miaow/archives/000044.html?referer=');">CSS Rounded Corners Roundup</a> (<a href="http://www.html.it/articoli/nifty/index.html" onclick="urchinTracker('/outgoing/www.html.it/articoli/nifty/index.html?referer=');">Nifty Corners</a>)</p>
<p><a href="http://www.smileycat.com/miaow/archives/000044.html" onclick="urchinTracker('/outgoing/www.smileycat.com/miaow/archives/000044.html?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0008.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>10. <a href="http://www.mandarindesign.com/troops.html" onclick="urchinTracker('/outgoing/www.mandarindesign.com/troops.html?referer=');">Drop Cap – Capital Letters with CSS</a></p>
<p><a href="http://www.mandarindesign.com/troops.html" onclick="urchinTracker('/outgoing/www.mandarindesign.com/troops.html?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0009.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>11. <a href="http://www.mandarindesign.com/troops.html#opacitybackgroundhard" onclick="urchinTracker('/outgoing/www.mandarindesign.com/troops.html_opacitybackgroundhard?referer=');">Define Image Opacity with CSS</a></p>
<p><a href="http://www.mandarindesign.com/troops.html#opacitybackgroundhard" onclick="urchinTracker('/outgoing/www.mandarindesign.com/troops.html_opacitybackgroundhard?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0010.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>12. <a href="http://www.smileycat.com/miaow/archives/000230.html" onclick="urchinTracker('/outgoing/www.smileycat.com/miaow/archives/000230.html?referer=');">How to Create a Block Hover Effect for a List of Links</a></p>
<p><a href="http://www.smileycat.com/miaow/archives/000230.html" onclick="urchinTracker('/outgoing/www.smileycat.com/miaow/archives/000230.html?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0011.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>13. <a href="http://www.sitepoint.com/test/pullquote.htm" onclick="urchinTracker('/outgoing/www.sitepoint.com/test/pullquote.htm?referer=');">Pullquotes with CSS</a> (<a href="http://www.456bereastreet.com/archive/200609/automatic_pullquotes_with_javascript_and_css/" onclick="urchinTracker('/outgoing/www.456bereastreet.com/archive/200609/automatic_pullquotes_with_javascript_and_css/?referer=');">Automatic Pullquotes with JavaScript and CSS</a></p>
<p><a href="http://www.sitepoint.com/test/pullquote.htm" onclick="urchinTracker('/outgoing/www.sitepoint.com/test/pullquote.htm?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0012.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>14. <a href="http://www.surfare.net/%7Etoolman/temp/diagram.html" onclick="urchinTracker('/outgoing/www.surfare.net/_7Etoolman/temp/diagram.html?referer=');">CSS Diagrams</a></p>
<p><a href="http://www.surfare.net/%7Etoolman/temp/diagram.html" onclick="urchinTracker('/outgoing/www.surfare.net/_7Etoolman/temp/diagram.html?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0013.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>15. <a href="http://couchfort.net/article/59/css-curves" onclick="urchinTracker('/outgoing/couchfort.net/article/59/css-curves?referer=');">CSS Curves</a></p>
<p><a href="http://couchfort.net/article/59/css-curves" onclick="urchinTracker('/outgoing/couchfort.net/article/59/css-curves?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0014.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>16. <a href="http://www.themaninblue.com/experiment/footerStickAlt/" onclick="urchinTracker('/outgoing/www.themaninblue.com/experiment/footerStickAlt/?referer=');">Footer Stick</a> allows for the footer of a Web page to appear either at the bottom of the browser window or the bottom of the Web page content – whichever is visually lowest.</p>
<p><a href="http://www.themaninblue.com/experiment/footerStickAlt/" onclick="urchinTracker('/outgoing/www.themaninblue.com/experiment/footerStickAlt/?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0015.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>17. <a href="http://www.frankmanno.com/ideas/css-imagemap/" onclick="urchinTracker('/outgoing/www.frankmanno.com/ideas/css-imagemap/?referer=');">CSS Image Map</a></p>
<p><a href="http://www.frankmanno.com/ideas/css-imagemap/" onclick="urchinTracker('/outgoing/www.frankmanno.com/ideas/css-imagemap/?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0016.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>18. <a href="http://moneytreesystems.com/css/picpopup.html" onclick="urchinTracker('/outgoing/moneytreesystems.com/css/picpopup.html?referer=');">CSS Image Pop-Up</a></p>
<p><a href="http://moneytreesystems.com/css/picpopup.html" onclick="urchinTracker('/outgoing/moneytreesystems.com/css/picpopup.html?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0017.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>19. CSS Image Preloader</p>
<p><img src="http://media1.smashingmagazine.com/images/css/css-techniques0018.gif" alt="CSS-Technique" width="485" height="170" /></p>
<p>20. <a href="http://www.ampsoft.net/webdesign-l/image-button.html" onclick="urchinTracker('/outgoing/www.ampsoft.net/webdesign-l/image-button.html?referer=');">CSS Image Replacement for Buttons</a></p>
<p><a href="http://www.ampsoft.net/webdesign-l/image-button.html" onclick="urchinTracker('/outgoing/www.ampsoft.net/webdesign-l/image-button.html?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0019.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>21. <a href="http://lab.arc90.com/2006/07/link_thumbnail.php" onclick="urchinTracker('/outgoing/lab.arc90.com/2006/07/link_thumbnail.php?referer=');">Link Thumbnail</a></p>
<p><a href="http://lab.arc90.com/2006/07/link_thumbnail.php" onclick="urchinTracker('/outgoing/lab.arc90.com/2006/07/link_thumbnail.php?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0020.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>22. <a href="http://mikecherim.com/experiments/css_map_pop.php" onclick="urchinTracker('/outgoing/mikecherim.com/experiments/css_map_pop.php?referer=');">CSS Map Pop</a></p>
<p><a href="http://mikecherim.com/experiments/css_map_pop.php" onclick="urchinTracker('/outgoing/mikecherim.com/experiments/css_map_pop.php?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0021.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>23. <a href="http://mikecherim.com/gbcms_xml/news_page.php?id=12" onclick="urchinTracker('/outgoing/mikecherim.com/gbcms_xml/news_page.php?id=12&amp;referer=');">PHP-based CSS Style Switcher</a></p>
<p><a href="http://mikecherim.com/gbcms_xml/news_page.php?id=12" onclick="urchinTracker('/outgoing/mikecherim.com/gbcms_xml/news_page.php?id=12&amp;referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0022.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>24. <a href="http://mikecherim.com/gbcms_xml/news_page.php?id=0" onclick="urchinTracker('/outgoing/mikecherim.com/gbcms_xml/news_page.php?id=0&amp;referer=');">CSS Unordered List Calender</a> (<a href="http://veerle.duoh.com/blog/comments/a_css_styled_calendar/" onclick="urchinTracker('/outgoing/veerle.duoh.com/blog/comments/a_css_styled_calendar/?referer=');">CSS Styled Calender</a>)</p>
<p><a href="http://mikecherim.com/gbcms_xml/news_page.php?id=0" onclick="urchinTracker('/outgoing/mikecherim.com/gbcms_xml/news_page.php?id=0&amp;referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0023.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>25. <a href="http://www.smashingmagazine.com/2006/11/11/css-based-forms-modern-solutions/" onclick="urchinTracker('/outgoing/www.smashingmagazine.com/2006/11/11/css-based-forms-modern-solutions/?referer=');">CSS-Based Forms: Techniques</a></p>
<p><a href="http://www.smashingmagazine.com/2006/11/11/css-based-forms-modern-solutions/" onclick="urchinTracker('/outgoing/www.smashingmagazine.com/2006/11/11/css-based-forms-modern-solutions/?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0024.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>26. <a href="http://www.smashingmagazine.com/2006/12/29/css-based-tables-modern-solutions/" onclick="urchinTracker('/outgoing/www.smashingmagazine.com/2006/12/29/css-based-tables-modern-solutions/?referer=');">CSS-Based Tables: Techniques</a></p>
<p><a href="http://www.smashingmagazine.com/2006/12/29/css-based-tables-modern-solutions/" onclick="urchinTracker('/outgoing/www.smashingmagazine.com/2006/12/29/css-based-tables-modern-solutions/?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0025.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>27. <a href="http://css-discuss.incutio.com/?page=PrintStylesheets" onclick="urchinTracker('/outgoing/css-discuss.incutio.com/?page=PrintStylesheets&amp;referer=');">Printing Web-Documents and CSS</a></p>
<p><a href="http://css-discuss.incutio.com/?page=PrintStylesheets" onclick="urchinTracker('/outgoing/css-discuss.incutio.com/?page=PrintStylesheets&amp;referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0027.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>28. <a href="http://www.alistapart.com/articles/improvingprint/" onclick="urchinTracker('/outgoing/www.alistapart.com/articles/improvingprint/?referer=');">Improved Links-Display for Print-Layouts with CSS</a></p>
<p><a href="http://www.alistapart.com/articles/improvingprint/" onclick="urchinTracker('/outgoing/www.alistapart.com/articles/improvingprint/?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0026.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>29. <a href="http://www.ukthoughts.co.uk/journal/css-submit-buttons" onclick="urchinTracker('/outgoing/www.ukthoughts.co.uk/journal/css-submit-buttons?referer=');">CSS-Submit Buttons</a></p>
<p><a href="http://www.ukthoughts.co.uk/journal/css-submit-buttons" onclick="urchinTracker('/outgoing/www.ukthoughts.co.uk/journal/css-submit-buttons?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0028.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>30. <a href="http://www.456bereastreet.com/lab/teaser/" onclick="urchinTracker('/outgoing/www.456bereastreet.com/lab/teaser/?referer=');">CSS Teaser Box</a></p>
<p><a href="http://www.456bereastreet.com/lab/teaser/" onclick="urchinTracker('/outgoing/www.456bereastreet.com/lab/teaser/?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0029.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>31. <a href="http://www.macworld.com/2005/12/secrets/januarycreate/index.php" onclick="urchinTracker('/outgoing/www.macworld.com/2005/12/secrets/januarycreate/index.php?referer=');">CSS Tricks for Custom Bullets</a></p>
<p><a href="http://www.macworld.com/2005/12/secrets/januarycreate/index.php" onclick="urchinTracker('/outgoing/www.macworld.com/2005/12/secrets/januarycreate/index.php?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0030.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>32. <a href="http://www.colly.com/index.php?/weblog/comments/ticked_off_links_reloaded" onclick="urchinTracker('/outgoing/www.colly.com/index.php?/weblog/comments/ticked_off_links_reloaded&amp;referer=');">Ticked Off Links Reloaded</a></p>
<p><a href="http://www.colly.com/index.php?/weblog/comments/ticked_off_links_reloaded" onclick="urchinTracker('/outgoing/www.colly.com/index.php?/weblog/comments/ticked_off_links_reloaded&amp;referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0031.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>33. <a href="http://www.deltatangobravo.com/images/zoom/" onclick="urchinTracker('/outgoing/www.deltatangobravo.com/images/zoom/?referer=');">CSS Zooming</a></p>
<p><a href="http://www.deltatangobravo.com/images/zoom/" onclick="urchinTracker('/outgoing/www.deltatangobravo.com/images/zoom/?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0032.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>34. <a href="http://komodomedia.com/blog/index.php/2005/08/24/creating-a-star-rater-using-css/" onclick="urchinTracker('/outgoing/komodomedia.com/blog/index.php/2005/08/24/creating-a-star-rater-using-css/?referer=');">Creating a Star Rater using CSS</a></p>
<p><a href="http://komodomedia.com/blog/index.php/2005/08/24/creating-a-star-rater-using-css/" onclick="urchinTracker('/outgoing/komodomedia.com/blog/index.php/2005/08/24/creating-a-star-rater-using-css/?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0033.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>35. <a href="http://webdesign.maratz.com/lab/visited_links_styling/" onclick="urchinTracker('/outgoing/webdesign.maratz.com/lab/visited_links_styling/?referer=');">The ways to style visited Links</a></p>
<p><a href="http://webdesign.maratz.com/lab/visited_links_styling/" onclick="urchinTracker('/outgoing/webdesign.maratz.com/lab/visited_links_styling/?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0034.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>36. <a href="http://webdesign.maratz.com/lab/pdf_links_labeling/" onclick="urchinTracker('/outgoing/webdesign.maratz.com/lab/pdf_links_labeling/?referer=');">PDF, ZIP, DOC Links Labeling</a></p>
<p><a href="http://webdesign.maratz.com/lab/pdf_links_labeling/" onclick="urchinTracker('/outgoing/webdesign.maratz.com/lab/pdf_links_labeling/?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0035.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>37. Displaying Percentages with CSS</p>
<p><img src="http://media2.smashingmagazine.com/images/css/css-techniques0036.gif" alt="CSS-Technique" width="485" height="170" /></p>
<p>38. <a href="http://ghettocooler.net/2005/11/13/image-floats-without-the-text-wrap/" onclick="urchinTracker('/outgoing/ghettocooler.net/2005/11/13/image-floats-without-the-text-wrap/?referer=');">Image Floats without the Text Wrap</a></p>
<p><a href="http://ghettocooler.net/2005/11/13/image-floats-without-the-text-wrap/" onclick="urchinTracker('/outgoing/ghettocooler.net/2005/11/13/image-floats-without-the-text-wrap/?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0037.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>39. <a href="http://webdesign.maratz.com/lab/new_window_link/" onclick="urchinTracker('/outgoing/webdesign.maratz.com/lab/new_window_link/?referer=');">Let visitors decide, whether or not will they open link in a new window</a></p>
<p><a href="http://webdesign.maratz.com/lab/new_window_link/" onclick="urchinTracker('/outgoing/webdesign.maratz.com/lab/new_window_link/?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0038.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>40. <a href="http://www.maxdesign.com.au/presentation/external/" onclick="urchinTracker('/outgoing/www.maxdesign.com.au/presentation/external/?referer=');">Simple accessible external links</a></p>
<p><a href="http://www.maxdesign.com.au/presentation/external/" onclick="urchinTracker('/outgoing/www.maxdesign.com.au/presentation/external/?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0039.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>41. <a href="http://24ways.org/2005/splintered-striper" onclick="urchinTracker('/outgoing/24ways.org/2005/splintered-striper?referer=');">Zebra Table with JavaScript and CSS</a></p>
<p><a href="http://24ways.org/2005/splintered-striper" onclick="urchinTracker('/outgoing/24ways.org/2005/splintered-striper?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0040.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>42. <a href="http://www.jakpsatweb.cz/css/css-vertical-center-solution.html" onclick="urchinTracker('/outgoing/www.jakpsatweb.cz/css/css-vertical-center-solution.html?referer=');">Vertical Centering with CSS</a> (<a href="http://www.456bereastreet.com/lab/centered/both/" onclick="urchinTracker('/outgoing/www.456bereastreet.com/lab/centered/both/?referer=');">Horizontal and Vertical Centering with CSS</a></p>
<p><a href="http://www.jakpsatweb.cz/css/css-vertical-center-solution.html" onclick="urchinTracker('/outgoing/www.jakpsatweb.cz/css/css-vertical-center-solution.html?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0041.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>43. <a href="http://lab.arc90.com/2006/05/unobtrusive_sidenotes.php" onclick="urchinTracker('/outgoing/lab.arc90.com/2006/05/unobtrusive_sidenotes.php?referer=');">Unobtrusive Sidenotes</a></p>
<p><a href="http://lab.arc90.com/2006/05/unobtrusive_sidenotes.php" onclick="urchinTracker('/outgoing/lab.arc90.com/2006/05/unobtrusive_sidenotes.php?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0042.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>44. <a href="http://lab.arc90.com/2006/07/image_caption_1.php" onclick="urchinTracker('/outgoing/lab.arc90.com/2006/07/image_caption_1.php?referer=');">Image Caption with CSS</a> (<a href="http://www.boagworld.com/archives/2006/07/styled_images_with_caption.html" onclick="urchinTracker('/outgoing/www.boagworld.com/archives/2006/07/styled_images_with_caption.html?referer=');">Styled Images with Caption</a>)</p>
<p><a href="http://lab.arc90.com/2006/07/image_caption_1.php" onclick="urchinTracker('/outgoing/lab.arc90.com/2006/07/image_caption_1.php?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0043.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>45. <a href="http://petewilliamsagency.com/css/examples/pie/" onclick="urchinTracker('/outgoing/petewilliamsagency.com/css/examples/pie/?referer=');">Dynamic Piechart with CSS</a></p>
<p><a href="http://petewilliamsagency.com/css/examples/pie/" onclick="urchinTracker('/outgoing/petewilliamsagency.com/css/examples/pie/?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0044.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>46. <a href="http://www.brandspankingnew.net/archive/2005/07/format_footnote.html" onclick="urchinTracker('/outgoing/www.brandspankingnew.net/archive/2005/07/format_footnote.html?referer=');">Format Footnotes with CSS</a></p>
<p><a href="http://www.brandspankingnew.net/archive/2005/07/format_footnote.html" onclick="urchinTracker('/outgoing/www.brandspankingnew.net/archive/2005/07/format_footnote.html?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0045.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>47. <a href="http://www.alexandersperl.de/tutorials/css/sitemap.html" onclick="urchinTracker('/outgoing/www.alexandersperl.de/tutorials/css/sitemap.html?referer=');">Hierarchical Sitemap with CSS</a></p>
<p><a href="http://www.alexandersperl.de/tutorials/css/sitemap.html" onclick="urchinTracker('/outgoing/www.alexandersperl.de/tutorials/css/sitemap.html?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0046.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>48. <a href="http://www.colly.com/index.php?/weblog/comments/snooks_resizable_underlines/" onclick="urchinTracker('/outgoing/www.colly.com/index.php?/weblog/comments/snooks_resizable_underlines/&amp;referer=');">Snook’s Resizable Underlines</a></p>
<p><a href="http://www.colly.com/index.php?/weblog/comments/snooks_resizable_underlines/" onclick="urchinTracker('/outgoing/www.colly.com/index.php?/weblog/comments/snooks_resizable_underlines/&amp;referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0047.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>49. <a href="http://www.alistapart.com/articles/switchymclayout" onclick="urchinTracker('/outgoing/www.alistapart.com/articles/switchymclayout?referer=');">Switchy McLayout: An Adaptive Layout Technique</a></p>
<p><a href="http://www.alistapart.com/articles/switchymclayout" onclick="urchinTracker('/outgoing/www.alistapart.com/articles/switchymclayout?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0048.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>50. <a href="http://www.scottjehl.com/v7/index.php/process/stylemap_visual_sitemap/" onclick="urchinTracker('/outgoing/www.scottjehl.com/v7/index.php/process/stylemap_visual_sitemap/?referer=');">StyleMap: CSS+HTML Visual Sitemap</a></p>
<p><a href="http://www.scottjehl.com/v7/index.php/process/stylemap_visual_sitemap/" onclick="urchinTracker('/outgoing/www.scottjehl.com/v7/index.php/process/stylemap_visual_sitemap/?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0049.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>51. <a href="http://www.devlounge.net/articles/custom-reading-width-beta" onclick="urchinTracker('/outgoing/www.devlounge.net/articles/custom-reading-width-beta?referer=');">Custom Reading Width</a></p>
<p><a href="http://www.devlounge.net/articles/custom-reading-width-beta" onclick="urchinTracker('/outgoing/www.devlounge.net/articles/custom-reading-width-beta?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0050.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>52. <a href="http://www.bioneural.net/2006/04/01/create-a-valid-css-alert-message/" onclick="urchinTracker('/outgoing/www.bioneural.net/2006/04/01/create-a-valid-css-alert-message/?referer=');">CSS Alert Message</a></p>
<p><a href="http://www.bioneural.net/2006/04/01/create-a-valid-css-alert-message/" onclick="urchinTracker('/outgoing/www.bioneural.net/2006/04/01/create-a-valid-css-alert-message/?referer=');"><img src="http://media1.smashingmagazine.com/images/css/css-techniques0051.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>53. <a href="http://24ways.org/2006/css-production-notes" onclick="urchinTracker('/outgoing/24ways.org/2006/css-production-notes?referer=');">CSS Production Notes</a></p>
<p><a href="http://24ways.org/2006/css-production-notes" onclick="urchinTracker('/outgoing/24ways.org/2006/css-production-notes?referer=');"><img src="http://media2.smashingmagazine.com/images/css/css-techniques0052.gif" alt="CSS-Technique" width="485" height="170" /></a></p>
<p>Compliments of <a title="53 CSS Techniques" href="http://www.smashingmagazine.com/2007/01/19/53-css-techniques-you-couldnt-live-without/" onclick="urchinTracker('/outgoing/www.smashingmagazine.com/2007/01/19/53-css-techniques-you-couldnt-live-without/?referer=');">Smashing Magazine</a>!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F09%2F53-css-techniques-you-couldnt-live-without%2F&amp;linkname=53%20CSS%20Techniques%20You%20Couldn%26%238217%3Bt%20Live%20Without" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F09_2F53-css-techniques-you-couldnt-live-without_2F_amp_linkname=53_20CSS_20Techniques_20You_20Couldn_26_238217_3Bt_20Live_20Without&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/09/53-css-techniques-you-couldnt-live-without/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress.org Has problems!</title>
		<link>http://phenix.thephenixblue.com/2009/09/wordpress-org-has-problems/</link>
		<comments>http://phenix.thephenixblue.com/2009/09/wordpress-org-has-problems/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 20:45:00 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Problems]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[problems]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=341</guid>
		<description><![CDATA[So, while browsing around today I decided to take a visit to Wordpress.org. To my astonishment their site was experiencing issues (around 4:30 EST). If I had to guess, the issues were stylesheet related, but it rendered there page in a format devoid of position styling (font and links looked to be ok). Here&#8217;s a [...]]]></description>
			<content:encoded><![CDATA[<p>So, while browsing around today I decided to take a visit to Wordpress.org. To my astonishment their site was experiencing issues (around 4:30 EST). If I had to guess, the issues were stylesheet related, but it rendered there page in a format devoid of position styling (font and links looked to be ok). Here&#8217;s a snapshot I did:</p>
<p style="text-align: center"><img class="size-full wp-image-342   aligncenter" src="http://phenix.thephenixblue.com/files/2009/09/Screen-shot-2009-09-02-at-4.38.26-PM.png" alt="When stylesheets go bad!" width="545" height="340" /></p>
<p>Hope they get this fixed soon!</p>
<p>-Phenix</p>
<p>P.S. This is why they need to hire me!!!</p>
<p><span style="color: #ff9900">UPDATE&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</span></p>
<p>As of around 4:54pm EST it looks like they got everything fixed!</p>
<p>-Phenix</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F09%2Fwordpress-org-has-problems%2F&amp;linkname=Wordpress.org%20Has%20problems%21" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F09_2Fwordpress-org-has-problems_2F_amp_linkname=Wordpress.org_20Has_20problems_21&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/09/wordpress-org-has-problems/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Top 50 WordPress Tutorials</title>
		<link>http://phenix.thephenixblue.com/2009/04/top-50-wp-tuts/</link>
		<comments>http://phenix.thephenixblue.com/2009/04/top-50-wp-tuts/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 03:55:07 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=205</guid>
		<description><![CDATA[ 
 



As a web developer, you can broaden your potential client base and add value for existing clients by listing &#8216;Wordpress&#8217; as an area of expertise. Of course, unless you want to bluff your way through jobs, you&#8217;d better have the skill to back-up that claim. This collection will help.
See original article here.
 
 

Wordpress Basics
 
1. Unraveling the [...]]]></description>
			<content:encoded><![CDATA[<p> </p>
<div id="post-3157" class="exerpt"><img class="alignleft" src="http://nettuts.s3.amazonaws.com/218_50wptuts/wp_preview.jpg" alt="" width="180" height="180" /> </p>
<p><span><br />
</span></p>
<div class="text">
<p>As a web developer, you can broaden your potential client base and add value for existing clients by listing &#8216;Wordpress&#8217; as an area of expertise. Of course, unless you want to bluff your way through jobs, you&#8217;d better have the skill to back-up that claim. This collection will help.</p>
<p>See original article <a title="Top 50 WordPress Tutorials" href="http://net.tutsplus.com/articles/web-roundups/top-50-wordpress-tutorials/" onclick="urchinTracker('/outgoing/net.tutsplus.com/articles/web-roundups/top-50-wordpress-tutorials/?referer=');">here</a>.</p>
<p> </p>
<p> </p></div>
</div>
<h3>Wordpress Basics</h3>
<p> </p>
<h4>1. Unraveling the Secrets of the comments.php File</h4>
<p>Nettuts+ author Gilles Maes has written an in-depth <a href="http://nettuts.com/news/unraveling-the-secrets-of-wordpress-commentsphp-file/" onclick="urchinTracker('/outgoing/nettuts.com/news/unraveling-the-secrets-of-wordpress-commentsphp-file/?referer=');">overview of the comments.php file</a> and how to make the most of the template.</p>
<h4>2. How to Become a Wordpress Developer</h4>
<p><a href="http://www.ithemes.com/" onclick="urchinTracker('/outgoing/www.ithemes.com/?referer=');">iThemes</a> has a tutorial on <a href="http://ithemes.com/the-wordpress-developer-toolkit/" onclick="urchinTracker('/outgoing/ithemes.com/the-wordpress-developer-toolkit/?referer=');">how to become a Wordpress developer</a>. The article covers development tools, best plugins, suggestions for getting clients, and more.</p>
<h4>3. Multiple Wordpress Installations Using a Single Database</h4>
<p>Streamline your Wordpress set-up by installing multiple instances of Wordpress on <a href="http://www.optiniche.com/blog/392/multiple-installs-single-database/" onclick="urchinTracker('/outgoing/www.optiniche.com/blog/392/multiple-installs-single-database/?referer=');">the same database</a>.</p>
<p><span id="more-205"></span></p>
<h3>Theme Tutorials</h3>
<p> </p>
<h4>4. How to Create a Wordpress Theme from Scratch</h4>
<p>Nettuts+ author Sam Parkinson gives a thorough overview of <a href="http://nettuts.com/site-builds/how-to-create-a-wordpress-theme-from-scratch/" onclick="urchinTracker('/outgoing/nettuts.com/site-builds/how-to-create-a-wordpress-theme-from-scratch/?referer=');">how to make your own custom theme from scratch</a>, complete with source code.</p>
<h4>5. So You Want to Create Wordpress Themes, Huh?</h4>
<p>A lengthy and thorough <a href="http://www.wpdesigner.com/2007/02/19/so-you-want-to-create-wordpress-themes-huh/" onclick="urchinTracker('/outgoing/www.wpdesigner.com/2007/02/19/so-you-want-to-create-wordpress-themes-huh/?referer=');">series of tutorials</a> covering nearly every aspect of Wordpress theme development. A must-read for beginners.</p>
<h4>6. WordPress for Designers: Video Series</h4>
<p>Drew Douglass will teach us, using easy to understand screencasts, exactly <a href="http://blog.themeforest.net/screencasts/new-wp-video-series-and-free-rockstar-book/" onclick="urchinTracker('/outgoing/blog.themeforest.net/screencasts/new-wp-video-series-and-free-rockstar-book/?referer=');">how to design for WordPress.</a></p>
<h4>7. Wordpress Theme Hacks</h4>
<p>A collection of <a href="http://www.webdesignerwall.com/tutorials/wordpress-theme-hacks/" onclick="urchinTracker('/outgoing/www.webdesignerwall.com/tutorials/wordpress-theme-hacks/?referer=');">simple Wordpress hacks</a> that you&#8217;ll find yourself reusing all the time when working with themes.</p>
<h4>8. Designing for Wordpress Screencast</h4>
<p><a href="http://css-tricks.com/" onclick="urchinTracker('/outgoing/css-tricks.com/?referer=');">CSSTricks</a> has an excellent 3-step screencast that starts with the <a href="http://css-tricks.com/video-screencasts/25-designing-for-wordpress-part-one/" onclick="urchinTracker('/outgoing/css-tricks.com/video-screencasts/25-designing-for-wordpress-part-one/?referer=');">basics of solid theme design</a> (<a href="http://css-tricks.com/video-screencasts/26-designing-for-wordpress-part-two/" onclick="urchinTracker('/outgoing/css-tricks.com/video-screencasts/26-designing-for-wordpress-part-two/?referer=');">step 2</a> and <a href="http://css-tricks.com/video-screencasts/27-designing-for-wordpress-part-three/" onclick="urchinTracker('/outgoing/css-tricks.com/video-screencasts/27-designing-for-wordpress-part-three/?referer=');">step 3</a>).</p>
<h4>9. Turning a Web Template Into a Wordpress Theme</h4>
<p>Instead of using one of the many standard Wordpress themes, you could <a href="http://max.limpag.com/2006/09/01/video-tutorial-wordpress-theme/" onclick="urchinTracker('/outgoing/max.limpag.com/2006/09/01/video-tutorial-wordpress-theme/?referer=');">convert a web template into a Wordpress theme</a> with this video tutorial.</p>
<h4>10. Wordpress CSS Guides</h4>
<p>A slightly-dated but still useful guide on <a href="http://www.tamba2.org.uk/wordpress/graphicalcss/" onclick="urchinTracker('/outgoing/www.tamba2.org.uk/wordpress/graphicalcss/?referer=');">how to alter the CSS on default themes</a> to create your own personalized theme.</p>
<h4>11. How to Create a Wordpress Theme in 5 Minutes</h4>
<p><a href="http://www.bothack.wordpress.com/" onclick="urchinTracker('/outgoing/www.bothack.wordpress.com/?referer=');">Bothack</a> has a quick-n-dirty rundown on how to <a href="http://bothack.wordpress.com/2006/09/17/how-to-create-a-wordpress-template-in-5-minutes/" onclick="urchinTracker('/outgoing/bothack.wordpress.com/2006/09/17/how-to-create-a-wordpress-template-in-5-minutes/?referer=');">create your own Wordpress theme in 5 minutes</a>.</p>
<h4>12. Mastering Wordpress Theme Hacks and Techniques</h4>
<p><a href="http://www.nuope.com/" onclick="urchinTracker('/outgoing/www.nuope.com/?referer=');">Nuope</a> has a 4-part series on <a href="http://www.noupe.com/tutorial/the-powerful-guide-to-master-your-wordpress.html" onclick="urchinTracker('/outgoing/www.noupe.com/tutorial/the-powerful-guide-to-master-your-wordpress.html?referer=');">Mastering CSS</a>, one of which is <a href="http://www.noupe.com/wordpress/mastering-your-wordpress-theme-hacks-and-techniques.html" onclick="urchinTracker('/outgoing/www.noupe.com/wordpress/mastering-your-wordpress-theme-hacks-and-techniques.html?referer=');">how to master Wordpress theme hacks</a>.</p>
<h4>13. Blog Posts in Different Columns</h4>
<p>If you&#8217;re wanting a little more advanced look and feel to your blog, try <a href="http://www.cre8d-design.com/2006/03/wordpress-tutorial-blog-posts-in-different-columns/" onclick="urchinTracker('/outgoing/www.cre8d-design.com/2006/03/wordpress-tutorial-blog-posts-in-different-columns/?referer=');">setting the posts to display in different columns</a>.</p>
<h4>14. Adding Tabs to Your Theme&#8217;s Sidebar</h4>
<p>Here&#8217;s a quick hack that <a href="http://rubiqube.com/wordpress-tutorial-adding-tabs-to-your-blog-sidebar/" onclick="urchinTracker('/outgoing/rubiqube.com/wordpress-tutorial-adding-tabs-to-your-blog-sidebar/?referer=');">adds tabs to your sidebar</a> using <a href="http://developer.yahoo.com/yui/tabview/" onclick="urchinTracker('/outgoing/developer.yahoo.com/yui/tabview/?referer=');">Yahoo! Tab View</a>.</p>
<h4>15. Category Styling</h4>
<p>This tutorial shows how to add messages in the theme for <a href="http://vandelaydesign.com/blog/wordpress/category-styling/" onclick="urchinTracker('/outgoing/vandelaydesign.com/blog/wordpress/category-styling/?referer=');">posts in a certain category</a> using CSS.</p>
<h4>16. Multiple Page Layouts in a Single Template</h4>
<p>If you&#8217;re looking for a more diversified template for sub-pages in a template, check out <a href="http://www.darrenhoyt.com/2007/12/26/multiple-wordpress-page-layouts-in-one-single-template/" onclick="urchinTracker('/outgoing/www.darrenhoyt.com/2007/12/26/multiple-wordpress-page-layouts-in-one-single-template/?referer=');">this quick tutorial for mutiple page layouts in a single template</a>.</p>
<h4>17. Rounded Corner Tab Menus</h4>
<p><a href="http://rubiqube.com/" onclick="urchinTracker('/outgoing/rubiqube.com/?referer=');">Rubique</a> has a quick tutorial on how to use CSS to <a href="http://rubiqube.com/wordpress-tutorial-rounded-corner-tab-menu-using-css/" onclick="urchinTracker('/outgoing/rubiqube.com/wordpress-tutorial-rounded-corner-tab-menu-using-css/?referer=');">make rounded corners</a> for your Wordpress menus.</p>
<h4>18. Dynamic Classes or ID&#8217;s</h4>
<p><a href="http://elliotjaystocks.com/" onclick="urchinTracker('/outgoing/elliotjaystocks.com/?referer=');">Elliot Jay Stocks</a> as a useful tutorial on how to <a href="http://elliotjaystocks.com/blog/archive/2008/wordpress-tutorialhow-to-apply-a-dynamic-body-class-or-id/" onclick="urchinTracker('/outgoing/elliotjaystocks.com/blog/archive/2008/wordpress-tutorialhow-to-apply-a-dynamic-body-class-or-id/?referer=');">apply a dynamic body class or ID to your templates</a>, for styling purposes.</p>
<h4>19. Formatting Images for Feed Readers</h4>
<p>How to <a href="http://www.pearsonified.com/2007/06/how-to-format-images-for-feed-readers.php" onclick="urchinTracker('/outgoing/www.pearsonified.com/2007/06/how-to-format-images-for-feed-readers.php?referer=');">make sure your images are looking good</a> in many of your blog follower&#8217;s favorite medium: the feed reader.</p>
<h4>20. How to Highlight Author Comments in Wordpress</h4>
<p>Google blogger <a href="http://www.mattcutts.com/" onclick="urchinTracker('/outgoing/www.mattcutts.com/?referer=');">Matt Cutts</a> offers some advice on <a href="http://www.mattcutts.com/blog/highlight-author-comments-wordpress/" onclick="urchinTracker('/outgoing/www.mattcutts.com/blog/highlight-author-comments-wordpress/?referer=');">how to style your author comments</a> differently than the rest of the reader comments.</p>
<h4>21. Customizing Widgets Using CSS</h4>
<p>Widgets are a great way to quickly add information to your layout (namely the sidebar). Here&#8217;s a tutorial on<a href="http://rubiqube.com/wordpress-tutorial-customizing-widgets-using-css/" onclick="urchinTracker('/outgoing/rubiqube.com/wordpress-tutorial-customizing-widgets-using-css/?referer=');">how to style the widgets using CSS</a>.</p>
<h4>22. Using Sliding Doors with Wordpress Navigation</h4>
<p>The <a href="http://www.alistapart.com/articles/slidingdoors/" onclick="urchinTracker('/outgoing/www.alistapart.com/articles/slidingdoors/?referer=');">Sliding Doors</a> technique is a great way to utilize CSS and background images to make tabbed navigation. WPHacks shows us <a href="http://wphacks.com/sliding-doors-wordpress-navigation-css-technique/" onclick="urchinTracker('/outgoing/wphacks.com/sliding-doors-wordpress-navigation-css-technique/?referer=');">how to utilize Sliding Doors to enhance Wordpress navigation</a>.</p>
<h4>23. Wordpress Categories in a Horizontal Drop-down Menu</h4>
<p>How to use CSS and Javascript to make a <a href="http://anthologyoi.com/wordpress/displaying-wordpress-categories-in-a-horizontal-dropdown-menu.html" onclick="urchinTracker('/outgoing/anthologyoi.com/wordpress/displaying-wordpress-categories-in-a-horizontal-dropdown-menu.html?referer=');">horizontal drop-down menubar</a>.</p>
<h4>24. Separate Comments from Trackbacks</h4>
<p>It&#8217;s a good idea to <a href="http://wphacks.com/how-to-separate-wordpress-comments-and-trackbacks/" onclick="urchinTracker('/outgoing/wphacks.com/how-to-separate-wordpress-comments-and-trackbacks/?referer=');">separate trackbacks from your comments</a>.</p>
<h4>25. Creating a Widget Ready Footer</h4>
<p>There&#8217;s a trend for blogs to have footers that feature columns of extra information. Learn how to create a<a href="http://help-developer.com/index.php/2008/07/creating-a-widget-ready-footer-in-wordpress/" onclick="urchinTracker('/outgoing/help-developer.com/index.php/2008/07/creating-a-widget-ready-footer-in-wordpress/?referer=');">widget-ready Wordpress footer</a>.</p>
<h4>26. Make a Featured Post Carousel</h4>
<p>Many blogs use a featured post carousel to show recent posts or flagship content. <a href="http://nettuts.com/working-with-cmss/how-to-make-a-featured-post-carousel-for-wordpress/" onclick="urchinTracker('/outgoing/nettuts.com/working-with-cmss/how-to-make-a-featured-post-carousel-for-wordpress/?referer=');">Learn how to create this nifty feature</a> with Nettuts+ author James Lao.</p>
<h4>27. How to Lay Text Over Images</h4>
<p>Add a little flair to your blog and <a href="http://5thirtyone.com/archives/875" onclick="urchinTracker('/outgoing/5thirtyone.com/archives/875?referer=');">add some text to your flagship images</a> by only using Wordpress custom fields.</p>
<h4>28. The Date/Image Hack</h4>
<p><a href="http://www.yugatech.com/blog/wordpress/wp-date-image-hack/" onclick="urchinTracker('/outgoing/www.yugatech.com/blog/wordpress/wp-date-image-hack/?referer=');">Interesting tutorial</a> on how to combine a combination of images, CSS and Wordpress hooks in order to graphically display the date of the published post.</p>
<h4>29. Dynamic Sticky Pages</h4>
<p>Learn how to <a href="http://www.maxpower.ca/wordpress-hack-creating-a-dynamic-sticky/2005/04/23/" onclick="urchinTracker('/outgoing/www.maxpower.ca/wordpress-hack-creating-a-dynamic-sticky/2005/04/23/?referer=');">dynamically make posts stay on top longer</a> in category and archive listings using multiple loops.</p>
<div class="tutorial_image"><img src="http://nettuts.s3.amazonaws.com/066_WordpressThemeFromScratch/3.jpg" alt="" /></div>
<h3>Plugins</h3>
<p> </p>
<h4>30. Your First WP Plugin</h4>
<p>Mark Jaquith has a short-and-sweet screencast on how to create <a href="http://markjaquith.wordpress.com/2006/03/04/wp-tutorial-your-first-wp-plugin/" onclick="urchinTracker('/outgoing/markjaquith.wordpress.com/2006/03/04/wp-tutorial-your-first-wp-plugin/?referer=');">your first Wordpress plugin</a> in under 5 minutes.</p>
<h4>31. How to Write a Simple Wordpress Plugin</h4>
<p>A <a href="http://asymptomatic.net/2005/02/22/1350/how-to-write-a-simple-wordpress-plugin" onclick="urchinTracker('/outgoing/asymptomatic.net/2005/02/22/1350/how-to-write-a-simple-wordpress-plugin?referer=');">step-by-step guide</a> to a simple and fun Wordpress plugin.</p>
<h4>32. Screencast on Writing a Wordpress Plugins</h4>
<p>If you&#8217;re rather see a visual demonstration of how to write a Wordpress plugin, look no further than the <a href="http://weblogtoolsvideos.com/video/How-to-make-a-wordpress-plugi" onclick="urchinTracker('/outgoing/weblogtoolsvideos.com/video/How-to-make-a-wordpress-plugi?referer=');">Weblog Tools Collection screencast</a>.</p>
<div class="tutorial_image"><img src="http://nettuts.s3.amazonaws.com/016_UserLinkFeed/7.jpg" alt="" /></div>
<h3>The Backend</h3>
<p> </p>
<h4>33. Custom Write Panels in the Wordpress Backend</h4>
<p>Design blog <a href="http://www.wefunction.com/" onclick="urchinTracker('/outgoing/www.wefunction.com/?referer=');">WeFunction</a> shows us how to <a href="http://wefunction.com/2008/10/tutorial-creating-custom-write-panels-in-wordpress/" onclick="urchinTracker('/outgoing/wefunction.com/2008/10/tutorial-creating-custom-write-panels-in-wordpress/?referer=');">create extra write panels</a> for adding extra bits to the &#8220;Write&#8221; page of the admin area.</p>
<h4>34. Wordpress as a CMS</h4>
<p>Wordpress isn&#8217;t just a blogging tool, <a href="http://css-tricks.com/video-screencasts/41-wordpress-as-a-cms/" onclick="urchinTracker('/outgoing/css-tricks.com/video-screencasts/41-wordpress-as-a-cms/?referer=');">it can also be a CMS</a> with the help of some plugins and theme retooling.</p>
<h4>35. Exporting Wordpress Data</h4>
<p>Learn how to import and export your Wordpress posts and comments with <a href="http://wordpresstraining.com/videos/install-and-configure/import-and-export-wordpress-data/#more-19" onclick="urchinTracker('/outgoing/wordpresstraining.com/videos/install-and-configure/import-and-export-wordpress-data/_more-19?referer=');">this handy screencast</a>.</p>
<div class="tutorial_image"><img src="http://nettuts.s3.amazonaws.com/218_50wptuts/custom_write_panel.jpg" alt="" /></div>
<h3>Miscellaneous</h3>
<p> </p>
<h4>36. Embedding Wordpress into OS Commerce</h4>
<p><a href="http://www.oscommerce.com/" onclick="urchinTracker('/outgoing/www.oscommerce.com/?referer=');">OS Commerce</a> is a popular open source ecommerce shopping script that many web developers use to sell goods. Here&#8217;s a tutorial on <a href="http://michaelwender.com/2005/11/28/embedding-wordpress-into-os-commerce/" onclick="urchinTracker('/outgoing/michaelwender.com/2005/11/28/embedding-wordpress-into-os-commerce/?referer=');">how to embed a Wordpress blog into an OS Commerce installation</a>.</p>
<h4>37. Creating An Automatic Sitemap</h4>
<p>Sitemaps help users navigate the site, as well as allow search engines to have quick access to all of your blog&#8217;s pages. Here&#8217;s a tutorial on how to create an <a href="http://www.jimwestergren.com/tutorial-automatic-sitemap-in-wordpress/" onclick="urchinTracker('/outgoing/www.jimwestergren.com/tutorial-automatic-sitemap-in-wordpress/?referer=');">automatic sitemap</a> for your Wordpress installation.</p>
<h4>38. Build a Dynamic Design Portfolio</h4>
<p>A terrific guide on how to utilize the <em>query_posts</em> tag to <a href="http://www.darrenhoyt.com/2007/08/24/build-a-dynamic-design-portfolio-with-wordpress/" onclick="urchinTracker('/outgoing/www.darrenhoyt.com/2007/08/24/build-a-dynamic-design-portfolio-with-wordpress/?referer=');">create a design portfolio with Wordpress</a>.</p>
<h4>39. Create a User Contributed Link Feed w/ Wordpress Comments</h4>
<p>If you&#8217;re wanting to add a Nettuts+ style link feed, Collis has an excellent tutorial on <a href="http://nettuts.com/working-with-cmss/hack-together-a-user-contributed-link-feed-with-wordpress-comments/" onclick="urchinTracker('/outgoing/nettuts.com/working-with-cmss/hack-together-a-user-contributed-link-feed-with-wordpress-comments/?referer=');">how to utilize Wordpress comments to create the feed</a>.</p>
<h4>40. A Wordpress-Powered Membership Directory</h4>
<p><a href="http://www.wpdesigner.com/" onclick="urchinTracker('/outgoing/www.wpdesigner.com/?referer=');">WPDesigner</a> shows us how to <a href="http://www.wpdesigner.com/2008/03/01/how-to-use-wordpress-as-a-membership-directory/" onclick="urchinTracker('/outgoing/www.wpdesigner.com/2008/03/01/how-to-use-wordpress-as-a-membership-directory/?referer=');">create a membership directory using a standard installation of Wordpress</a> and some customization.</p>
<h4>41. Remove Categories in the Wordpress Loop</h4>
<p>Sometimes excluding certain posts in categories from showing in the Wordpress loop is important. Here&#8217;s a quick tutorial with sample code on <a href="http://bloggercamp.com/blogging-tips/blogging-tips-wordpress-tips/remove-several-categories-from-the-loop-in-wordpress/" onclick="urchinTracker('/outgoing/bloggercamp.com/blogging-tips/blogging-tips-wordpress-tips/remove-several-categories-from-the-loop-in-wordpress/?referer=');">how to exclude certain categories</a> in your templates.</p>
<h4>42. Add a Twitter Field to your Form</h4>
<p><a href="http://vimeo.com/2326653" onclick="urchinTracker('/outgoing/vimeo.com/2326653?referer=');">How to install the twitip-id plugin</a> to include a field for commenters to leave their Twitter ID.</p>
<h4>43. Enabling HTTPS for Wordpress.com Blogs Screencast</h4>
<p>The <a href="http://www.wordpress.org/" onclick="urchinTracker('/outgoing/www.wordpress.org/?referer=');">Wordpress team</a> has put together a how-to video on <a href="http://support.wordpress.com/https/" onclick="urchinTracker('/outgoing/support.wordpress.com/https/?referer=');">enabling HTTPS</a> on Wordpress.com blogs.</p>
<h4>44. How to Add Photo Captions</h4>
<p>Good photo captions aren&#8217;t that something that Wordpress themes usually come with out of the box. This screencast shows how to correctly <a href="http://www.viddler.com/explore/Miss604/videos/11/" onclick="urchinTracker('/outgoing/www.viddler.com/explore/Miss604/videos/11/?referer=');">add photo captions</a> into your posts.</p>
<h4>45. Make a Random Post Button</h4>
<p><a href="http://wpguy.com/tutorials/how-to-make-a-random-post-button/" onclick="urchinTracker('/outgoing/wpguy.com/tutorials/how-to-make-a-random-post-button/?referer=');">Adding a random post button</a> is only a SQL query and PHP snippet away.</p>
<h4>46. RSS-Only Posts</h4>
<p>This tutorial shows you <a href="http://courtneytuttle.com/2007/12/06/creating-posts-that-appear-only-in-rss/" onclick="urchinTracker('/outgoing/courtneytuttle.com/2007/12/06/creating-posts-that-appear-only-in-rss/?referer=');">how to create posts that only appear in RSS feeds</a>, in hopes to improve RSS subscriber counts.</p>
<h4>47. Wordpress SEO</h4>
<p><a href="http://yoast.com/" onclick="urchinTracker('/outgoing/yoast.com/?referer=');">Yaost</a> has a lengthy tutorial on how to <a href="http://yoast.com/articles/wordpress-seo/" onclick="urchinTracker('/outgoing/yoast.com/articles/wordpress-seo/?referer=');">squeeze the most SEO out of your Wordpress blog</a>.</p>
<h4>48. Learn How to Make Your Blog Accessible</h4>
<p>Most blogs don&#8217;t conform to WAI/WCAG standards in terms of accessibility. Learn how to meet these standards with Bruce Lawson&#8217;s <a href="http://www.brucelawson.co.uk/2005/wordpress-accessibility-hacks/" onclick="urchinTracker('/outgoing/www.brucelawson.co.uk/2005/wordpress-accessibility-hacks/?referer=');">accessibility hacks</a>.</p>
<h4>49. Definitive Guide to Semantic Web Markup for Blogs</h4>
<p>Although not strictly a Wordpress tutorial, Chris Pearson&#8217;s <a href="http://www.pearsonified.com/2007/04/definitive-guide-to-semantic-markup.php" onclick="urchinTracker('/outgoing/www.pearsonified.com/2007/04/definitive-guide-to-semantic-markup.php?referer=');">guide to semantic web markup for blogs</a> is a must-read for anyone wanting to maximize their results in search engines.</p>
<h4>50. Digg-proof Your Wordpress</h4>
<p><a href="http://blog.circlesixdesign.com/2007/01/22/diggproof/" onclick="urchinTracker('/outgoing/blog.circlesixdesign.com/2007/01/22/diggproof/?referer=');">Learn how to configure</a> MySQL, Apache and other things to keep your site humming when it lands on the front page of Digg.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F04%2Ftop-50-wp-tuts%2F&amp;linkname=Top%2050%20WordPress%20Tutorials" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F04_2Ftop-50-wp-tuts_2F_amp_linkname=Top_2050_20WordPress_20Tutorials&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/04/top-50-wp-tuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RSS Email Subscription</title>
		<link>http://phenix.thephenixblue.com/2009/03/rss-email-subscription/</link>
		<comments>http://phenix.thephenixblue.com/2009/03/rss-email-subscription/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 23:29:08 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[RSS]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[modify]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[subscription]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=59</guid>
		<description><![CDATA[Ok everyone, I finally got my RSS email subscription working (located at the top of my site). This will allow you to follow my blog updates and posts with an email sent out once a day. I&#8217;m using the FeedBurner  service now owned by Google. I&#8217;ve modified Google&#8217;s code a little to support the custom [...]]]></description>
			<content:encoded><![CDATA[<p>Ok everyone, I finally got my RSS email subscription working (located at the top of my site). This will allow you to follow my blog updates and posts with an email sent out once a day. I&#8217;m using the FeedBurner  service now owned by Google. I&#8217;ve modified Google&#8217;s code a little to support the custom form of my theme. Hit me up if you have any problems, or would like to know how I modified Google&#8217;s script.</p>
<p>-Phenix</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F03%2Frss-email-subscription%2F&amp;linkname=RSS%20Email%20Subscription" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F03_2Frss-email-subscription_2F_amp_linkname=RSS_20Email_20Subscription&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/03/rss-email-subscription/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
