<?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>Miralize.com&#187; Web Design  &#8211; Miralize Design</title>
	<atom:link href="http://miralize.com/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://miralize.com</link>
	<description>The blog/portfolio of Sean O&#039; Grady</description>
	<lastBuildDate>Tue, 07 Sep 2010 12:31:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Create a Tweet This Button with Shortened URLs</title>
		<link>http://miralize.com/tutorials/create-a-tweet-this-button-with-shortened-urls/</link>
		<comments>http://miralize.com/tutorials/create-a-tweet-this-button-with-shortened-urls/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 12:40:25 +0000</pubDate>
		<dc:creator>Sean O'Grady</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://miralize.com/?p=713</guid>
		<description><![CDATA[Because micro-blogging services like Twitter have a character limit of 140 characters, it is paramount that you shorten your links as much as possible. WordPress does not do this natively but that does not mean that it is difficult. We can include our code in the functions page for an easy,  repetivitve action. You can [...]]]></description>
			<content:encoded><![CDATA[<p>Because micro-blogging services like Twitter have a character limit of 140 characters, it is paramount that you shorten your links as much as possible. WordPress does not do this natively but that does not mean that it is difficult. We can include our code in the functions page for an easy,  repetivitve action. You can see an example of how it looks below this post. Is.gd probably outputs the shortest links, but you can use most other url shortners for this tutorial. Open your templates functions.php and include the following code.</p>
<pre lang="php">function getTinyUrl($url) {
  $tinyurl = file_get_contents("http://is.gd/api.php?longurl=".$url);
  return $tinyurl;
}</pre>
<p>What this code means is that we create new function called &#8220;createTinyLink&#8221; and allow a parameter of &#8220;$url&#8221; to be grabbed so it can be convereted into a tinyURL. Then we create a new variable called &#8220;$tinylink&#8221; and let that equal to the contents of the function on the is.gd website. I got that link from <a href="http://is.gd/api_info.php">here</a>. But you could also use Bit.ly or Tinyurl just as simply. The code then returns the contents into where we want it displayed.</p>
<p>After this we go into the single.php (or any page) and enter in:</p>
<pre lang="php"><a href="<?php $turl = tinyurl(get_permalink($post->ID));
		echo ($turl); ?>">Tweet this</a></pre>
<p>This creates a link that says Tweet this and the url will be a link to Twitter.com that can update your status with Currently Reading : [The title of the post] and the shortened link to the article.</p>
<p>There you have it extremely easy and very cool addition to your blog, without slowing it down with a million plugins.</p>
]]></content:encoded>
			<wfw:commentRss>http://miralize.com/tutorials/create-a-tweet-this-button-with-shortened-urls/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>100 Amazing Design Blogs To Subscribe To</title>
		<link>http://miralize.com/showcase/100-amazing-design-blogs-to-subscribe-to/</link>
		<comments>http://miralize.com/showcase/100-amazing-design-blogs-to-subscribe-to/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 16:52:47 +0000</pubDate>
		<dc:creator>Sean O'Grady</dc:creator>
				<category><![CDATA[Showcase]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[alex]]></category>
		<category><![CDATA[beautiful life]]></category>
		<category><![CDATA[buga]]></category>
		<category><![CDATA[chris wallace]]></category>
		<category><![CDATA[coda]]></category>
		<category><![CDATA[crane]]></category>
		<category><![CDATA[css tricks]]></category>
		<category><![CDATA[cult]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[designs]]></category>
		<category><![CDATA[Favourites]]></category>
		<category><![CDATA[feedly]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[firefox addon]]></category>
		<category><![CDATA[followers]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[miralize]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[rss reader]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[soh]]></category>
		<category><![CDATA[spectrum]]></category>
		<category><![CDATA[spoon]]></category>
		<category><![CDATA[subscription url]]></category>
		<category><![CDATA[swan]]></category>
		<category><![CDATA[tanaka]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[urls]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xhtml]]></category>
		<category><![CDATA[za]]></category>

		<guid isPermaLink="false">http://miralize.com/?p=823</guid>
		<description><![CDATA[It is important as a designer, to build a good collection of resources for constant inspiration. That's why I subscribe to over 100 feeds all in different areas of design, to gain see a wide spectrum of knowledge. My RSS reader of choice used to be Google Reader, but more recently I've been using the Firefox addon <a href="http://feedly.com">Feedly</a> , which extends Google Reader's capabilities and adds Twitter and FriendFeed integration.]]></description>
			<content:encoded><![CDATA[<p>It is important as a designer, to build a good collection of resources for constant inspiration. That&#8217;s why I subscribe to over 100 feeds all in different areas of design, to gain see a wide spectrum of knowledge. My RSS reader of choice used to be Google Reader, but more recently I&#8217;ve been using the Firefox addon <a href="http://feedly.com">Feedly</a> , which extends Google Reader&#8217;s capabilities and adds Twitter and FriendFeed integration.</p>
<p>Here I will list over a 100 blogs for you to subscribe to, but also I will give a link to download all the URLs so they can be easily imported into Google Reader.<br />
<span id="more-823"></span></p>
<ol>
<li>Net Magazine &#8211; <a href="http://www.netmag.co.uk/">Blog URL</a> &#8211; <a href="http://www.netmag.co.uk/zine.rss">Subscription URL</a></li>
<li>A List Apart &#8211; <a href="http://www.alistapart.com/">Blog URL</a> &#8211; <a href="http://www.alistapart.com/site/rss">Subscription URL</a></li>
<li>A Propostional Structure &#8211; <a href="http://www.victoriamacarthur.com/">Blog URL</a> &#8211; <a href="http://www.victoriamacarthur.com/?feed=rss2">Subscription URL</a></li>
<li>AETUTS &#8211; <a href="http://ae.tutsplus.com">Blog URL</a> &#8211; <a href="http://feedproxy.google.com/aetuts">Subscription URL</a></li>
<li>Alex Buga &#8211; <a href="http://alexbuga.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/alexbuga">Subscription URL</a></li>
<li>AndySowards.com &#8211; <a href="http://www.andysowards.com/blog/">Blog URL</a> &#8211; <a href="http://www.andysowards.com/blog/feed">Subscription URL</a></li>
<li>Beautiful Life &#8211; <a href="http://www.beautifullife.info/">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/beautifullifeblog">Subscription URL</a></li>
<li>Coda.co.za &#8211; <a href="http://coda.co.za/blog/">Blog URL</a> &#8211; <a href="http://coda.co.za/blog/feed">Subscription URL</a></li>
<li>Soh Tanaka &#8211; <a href="http://www.sohtanaka.com/">Blog URL</a> &#8211; <a href="http://www.sohtanaka.com/feed/">Subscription URL</a></li>
<li>Spoon Graphics &#8211; <a href="http://www.blog.spoongraphics.co.uk/">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/SpoonGraphics">Subscription URL</a></li>
<li>Build Internet &#8211; <a href="http://buildinternet.com/">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/buildinternet">Subscription URL</a></li>
<li>Catswhocode &#8211; <a href="http://catswhocode.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/Catswhocode">Subscription URL</a></li>
<li>cdharrison &#8211; <a href="http://cdharrison.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/cdharrison">Subscription URL</a></li>
<li>Cgtuts &#8211; <a href="http://cg.tutsplus.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/Cgtuts">Subscription URL</a></li>
<li>Chris Wallace &#8211; <a href="http://www.chris-wallace.com/">Blog URL</a> &#8211; <a href="http://www.chris-wallace.com/feed/">Subscription URL</a></li>
<li>Colorburned &#8211; <a href="http://colorburned.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/Colorburned">Subscription URL</a></li>
<li>Contrast &#8211; <a href="http://contrast.ie/blog">Blog URL</a> &#8211; <a href="http://feeds.feedburner.com/contrast/blog">Subscription URL</a></li>
<li>Crane Factory &#8211; <a href="http://www.cranefactory.com">Blog URL</a> &#8211; <a href="http://www.cranefactory.com/feed">Subscription URL</a></li>
<li>Creattica Daily &#8211; <a href="http://daily.creattica.com/">Blog URL</a> &#8211; <a href="http://feedproxy.google.com/creattica">Subscription URL</a></li>
<li>Css-Tricks &#8211; <a href="http://css-tricks.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/CssTricks">Subscription URL</a></li>
<li>Cult Foo  &#8211; <a href="http://www.cult-f.net">Blog URL</a> &#8211; <a href="http://feedproxy.google.com/Cult-foo">Subscription URL</a></li>
<li>Design Daily News &#8211; <a href="http://www.designer-daily.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/DailyDesignerNews">Subscription URL</a></li>
<li>Design Pitstop &#8211; <a href="http://blog.georgegumpert.com/">Blog URL</a> &#8211; <a href="http://blog.georgegumpert.com/feed/">Subscription URL</a></li>
<li>Design Reviver &#8211; <a href="http://designreviver.com/">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/DesignReviver?format=xml">Subscription URL</a></li>
<li>Design Swan &#8211; <a href="http://www.designswan.com/">Blog URL</a> &#8211; <a href="http://www.designswan.com/feed">Subscription URL</a></li>
<li>Design Your Way &#8211; <a href="http://designyourway.net">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/boogiesbc">Subscription URL</a></li>
<li>Designeezy &#8211; <a href="http://www.designeezy.com/">Blog URL</a> &#8211; <a href="http://www.designeezy.com/index.php/feed/">Subscription URL</a></li>
<li>Design M.ag &#8211; <a href="http://designm.ag">Blog URL</a> &#8211; <a href="http://feeds.feedburner.com/designmag">Subscription URL</a></li>
<li>Desizn Tech &#8211; <a href="http://desizntech.info/">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/DesiznTech">Subscription URL</a></li>
<li>Digging into WordPress &#8211; <a href="http://diggingintowordpress.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/DiggingIntoWordpress?format=xml">Subscription URL</a></li>
<li>DigMo! &#8211; <a href="http://digmo.co.uk">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/co/IXDs">Subscription URL</a></li>
<li>Directory for Designers &#8211; <a href="http://directoryfordesigners.com/">Blog URL</a> &#8211; <a href="http://directoryfordesigners.com/feed">Subscription URL</a></li>
<li>DG Labs &#8211; <a href="http://labs.dariux.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/dglabs">Subscription URL</a></li>
<li>Flashtuts &#8211; <a href="http://flash.tutsplus.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/Flashtuts">Subscription URL</a></li>
<li>For the Lose &#8211; <a href="http://forthelose.org/">Blog URL</a> &#8211; <a href="http://forthelose.org/feed">Subscription URL</a></li>
<li>Smashing Apps &#8211; <a href="http://www.smashingapps.com/">Blog URL</a> &#8211; <a href="http://www.smashingapps.com/feed">Subscription URL</a></li>
<li>Freelance Switch &#8211; <a href="http://freelanceswitch.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/FreelanceSwitch">Subscription URL</a></li>
<li>Fuel Your Coding &#8211; <a href="http://fuelyourcoding.com/">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/fuelyourcoding?format=xml">Subscription URL</a></li>
<li>Function &#8211; <a href="http://wefunction.com/">Blog URL</a> &#8211; <a href="http://wefunction.com/feed/">Subscription URL</a></li>
<li>Hack WordPress &#8211; <a href="http://wphacks.com/">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/HackWordpress">Subscription URL</a></li>
<li>Hongkait &#8211; <a href="http://hongkait.com">Blog URL</a> &#8211; <a href="http://feedproxy.google.com/24thfloor">Subscription URL</a></li>
<li>In The Woods &#8211; <a href="http://blog.themeforest.com">Blog URL</a> &#8211; <a href="http://feedproxy.google.com/themeforest">Subscription URL</a></li>
<li>Insic Design &#8211; <a href="http://blog.insicdesigns.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/insicdesigns">Subscription URL</a></li>
<li>instantShift &#8211; <a href="http://instantshift.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/iShift">Subscription URL</a></li>
<li>Jack of All Trades &#8211; <a href="http://marcgrabanski.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/allTrades">Subscription URL</a></li>
<li>jQuery for Designers &#8211; <a href="http://jqueryfordesigners.com/">Blog URL</a> &#8211; <a href="http://jqueryfordesigners.com/feed/">Subscription URL</a></li>
<li>jQuery Style &#8211; <a href="http://jQueryStyle.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/jQueryStyleAll">Subscription URL</a></li>
<li>Just Creative Design &#8211; <a href="http://justcreativedesign.com/">Blog URL</a> &#8211; <a href="http://feeds.feedburner.com/justcreativedesignblog">Subscription URL</a></li>
<li>Jeffrey Way &#8211; <a href="http://jeff-way.com/">Blog URL</a> &#8211; <a href="http://jeff-way.com/feed/">Subscription URL</a></li>
<li>Learning jQuery &#8211; <a href="http://www.learningjquery.com/">Blog URL</a> &#8211; <a href="http://www.learningjquery.com/feed">Subscription URL</a></li>
<li>Lee Munroe &#8211; <a href="http://leemunroe.com">Blog URL</a> &#8211; <a href="http://feeds.feedburner.com/LeeMunroeBlog">Subscription URL</a></li>
<li>Line 25 &#8211; <a href="http://line25.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/Line25">Subscription URL</a></li>
<li>Logo Design Love &#8211; <a href="http://logodesignlove.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/logodesignlove">Subscription URL</a></li>
<li>Lovely Package &#8211; <a href=" http://lovelypackage.com/">Blog URL</a> &#8211; <a href=" http://lovelypackage.com/feed/">Subscription URL</a></li>
<li>Marco Prljic &#8211; <a href="http://markoprljic.iz.hr/">Blog URL</a> &#8211; <a href="http://markoprljic.iz.hr/feed/">Subscription URL</a></li>
<li>Massa Moda &#8211; <a href="http://massamoda.wordpress.com/">Blog URL</a> &#8211; <a href="http://massamoda.wordpress.com/feed/">Subscription URL</a></li>
<li>Ben McRedmond &#8211; <a href="http://blog.benmcredmond.com/">Blog URL</a> &#8211; <a href="http://blog.benmcredmond.com/rss">Subscription URL</a></li>
<li>Mayhem Studios &#8211; <a href="http://www.mayhemstudios.com/blog/">Blog URL</a> &#8211; <a href="http://www.mayhemstudios.com/blog/rss.xml">Subscription URL</a></li>
<li>Minervity &#8211; <a href="http://www.minervity.com/">Blog URL</a> &#8211; <a href="http://feedproxy.google.com/Minervity">Subscription URL</a></li>
<li>Nettuts &#8211; <a href="http://nettuts.com/">Blog URL</a> &#8211; <a href="http://nettuts.com/feed/">Subscription URL</a></li>
<li>Nometech &#8211; <a href="http://nometech.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/Nometech">Subscription URL</a></li>
<li>Noupe &#8211; <a href="http://noupe.com">Blog URL</a> &#8211; <a href="http://feeds.feedburner.com/Noupe">Subscription URL</a></li>
<li>Outlaw Design &#8211; <a href="http://www.outlawdesignblog.com/">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/OutlawDesign">Subscription URL</a></li>
<li>Pimp My WordPress &#8211; <a href="http://pimpmywordpress.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/pimpmywordpress">Subscription URL</a></li>
<li>Pineapple Magazine &#8211; <a href="http://pineapplemag.com">Blog URL</a> &#8211; <a href="http://pineapplemag.com/inside/feed/">Subscription URL</a></li>
<li>Pro Blog Design &#8211; <a href="http://www.problogdesign.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/ProBlogDesign?format=xml">Subscription URL</a></li>
<li>PSDFan &#8211; <a href="http://psdan.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/psdfan">Subscription URL</a></li>
<li>PSDTuts &#8211; <a href="http://psdtuts.com/">Blog URL</a> &#8211; <a href="http://psdtuts.com/feed/">Subscription URL</a></li>
<li>PSDVibe &#8211; <a href="http://psdvibe.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/psdvibe">Subscription URL</a></li>
<li>PS Hero &#8211; <a href="http://pshero.com/">Blog URL</a> &#8211; <a href="http://pshero.com/feed">Subscription URL</a></li>
<li>Six Revisions &#8211; <a href="http://sixrevisions.com">Blog URL</a> &#8211; <a href="http://feeds.feedburner.com/SixRevisions">Subscription URL</a></li>
<li>Smashing Magazine &#8211; <a href="http://smashingmagazine.com">Blog URL</a> &#8211; <a href="http://rss1.smashingmagazine.com/feed/">Subscription URL</a></li>
<li>Speckyboy &#8211; <a href="http://speckyboy.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/Speckyboy-WordpressAndDesign">Subscription URL</a></li>
<li>SpyreStudios &#8211; <a href="http://spyrestudios.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/SpyreStudios">Subscription URL</a></li>
<li>Swedish Fika &#8211; <a href="http://swedishfika.com/">Blog URL</a> &#8211; <a href="http://swedishfika.com/feed/">Subscription URL</a></li>
<li>The Design O&#8217;Blog &#8211; <a href="http://www.nikibrown.com/designoblog/">Blog URL</a> &#8211; <a href="http://feeds.feedburner.com/designoblog">Subscription URL</a></li>
<li>The Netsetter &#8211; <a href="http://thenetsetter.com/">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/TheNetsetter">Subscription URL</a></li>
<li>The River Current &#8211; <a href="http://blog.graphicriver.net/">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/TheRiverCurrent">Subscription URL</a></li>
<li>The Ux Booth &#8211; <a href="http://www.uxbooth.com">Blog URL</a> &#8211; <a href="http://feedproxy.google.com/uxbooth">Subscription URL</a></li>
<li>The Dieline &#8211; <a href="http://thedieline.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/TheDieline">Subscription URL</a></li>
<li>Tutorial9 &#8211; <a href="http://tutorial9.net">Blog URL</a> &#8211; <a href="http://feedproxy.google.com/tutorial9">Subscription URL</a></li>
<li>Tutorial Magazine &#8211; <a href="http://TutorialMagazine.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/TutorialMagazine">Subscription URL</a></li>
<li>Vandelay Design Blog &#8211; <a href="http://vandelaydesign.com/">Blog URL</a> &#8211; <a href="http://feeds.feedburner.com/vandelay">Subscription URL</a></li>
<li>Vectortuts &#8211; <a href="http://vectortuts.com/">Blog URL</a> &#8211; <a href="http://vectortuts.com/feed/">Subscription URL</a></li>
<li>Veerle.Douh &#8211; <a href="http://veerle.duoh.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/veerlesblog">Subscription URL</a></li>
<li>Web Design From Scratch &#8211; <a href="http://webdesignfromscratch.com">Blog URL</a> &#8211; <a href="http://webdesignfromscratch.com/rss.xml">Subscription URL</a></li>
<li>Web Design Ledger &#8211; <a href="http://webdesignledger.com/">Blog URL</a> &#8211; <a href="http://webdesignledger.com/feed">Subscription URL</a></li>
<li>Web Design Dev &#8211; <a href="http://www.webdesigndev.com">Blog URL</a> &#8211; <a href="http://feeds.feedburner.com/LearnWebdesign">Subscription URL</a></li>
<li>Web Designer Magazine &#8211; <a href="http://www.webdesignermag.co.uk/">Blog URL</a> &#8211; <a href="http://www.webdesignermag.co.uk/feed/">Subscription URL</a></li>
<li>Web Designer Wall &#8211; <a href="http://WebDesignerWall.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/WebDesignerWall">Subscription URL</a></li>
<li>Web Standardistas &#8211; <a href="http://www.webstandardistas.com/">Blog URL</a> &#8211; <a href="http://www.webstandardistas.com/atom.xml">Subscription URL</a></li>
<li>WebAir Blog &#8211; <a href="http://www.webair.it/blog/">Blog URL</a> &#8211; <a href="http://www.webair.it/blog/feed/">Subscription URL</a></li>
<li>WebPageFx &#8211; <a href="http://www.webpagefx.com/">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/WebpagefxBlog">Subscription URL</a></li>
<li>Woork &#8211; <a href="http://woork.blogspot.com/">Blog URL</a> &#8211; <a href="http://woork.blogspot.com/feeds/posts/default?alt=rss">Subscription URL</a></li>
<li>WPazo &#8211; <a href="http://wpazo.com/">Blog URL</a> &#8211; <a href="http://wpazo.com/feed/">Subscription URL</a></li>
<li>Wp Candy &#8211; <a href="http://wpcandy.com/">Blog URL</a> &#8211; <a href="http://feeds.feedburner.com/wpcandy">Subscription URL</a></li>
<li>Yen Design &#8211; <a href="http://yensdesign.com/">Blog URL</a> &#8211; <a href="http://feeds.feedburner.com/yensdesign-rss">Subscription URL</a></li>
<li>Yoast &#8211; <a href="http://yoast.com">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/joostdevalk">Subscription URL</a></li>
<li>You the Designer &#8211; <a href="http://www.youthedesigner.com/">Blog URL</a> &#8211; <a href="http://feeds2.feedburner.com/YouTheDesigner">Subscription URL</a></li>
</ol>
<p>For those who are wondering where the 100th blog is, you&#8217;re already <a href="http://miralize.com">on it </a> <img src='http://miralize.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>I reccomend all of these site for anyone looking to build their library of decent helpful and informative blogs..</p>
<p>To import it directly into Google Reader, please follow this <a href="http://www.google.com/reader/bundle/user%2F11528790701467917733%2Fbundle%2FDesign">link</a>. You can also download the OPML file <a href="http://www.google.com/reader/public/subscriptions/user%2F11528790701467917733%2Fbundle%2FDesign">here</a></p>
<p>Subscribe to <a href="http://feeds2.feedburner.com/miralize">my RSS feed</a> for more great articles.</p>
]]></content:encoded>
			<wfw:commentRss>http://miralize.com/showcase/100-amazing-design-blogs-to-subscribe-to/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Design a WordPress 2.7 Theme – Day 3 : Dynamic Sidebar and Functional Footer</title>
		<link>http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme-day-3-dynamic-sidebar-and-functional-footer/</link>
		<comments>http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme-day-3-dynamic-sidebar-and-functional-footer/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 11:07:51 +0000</pubDate>
		<dc:creator>Sean O'Grady</dc:creator>
				<category><![CDATA[Wordpress Theme]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[designs]]></category>
		<category><![CDATA[followers]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme-day-3-dynamic-sidebar-and-functional-footer/</guid>
		<description><![CDATA[Introduction Although the main content is always the most important part of a web design, the secondary content plays a fundamental role in guiding the user through the website. The sidebar helps direct the flow of the page, gives it useful information, and can display some of the most important aspects of your website. Seeing [...]]]></description>
			<content:encoded><![CDATA[<h4>Introduction</h4>
<p>Although the main content is always the most important part of a web design, the secondary content plays a fundamental role in guiding the user through the website. The sidebar helps direct the flow of the page, gives it useful information, and can display some of the most important aspects of your website.</p>
<p>Seeing as these tutorials are based off of WordPress 2.7, there is no need to go into detail about static sidebars. You can easily add these in, with your knowledge of XHTML and the use of the very detailed WordPress Codex.</p>
<p>Footers are also a very important feature of your site. Because they are at the bottom, they are often overlooked. Many people don’t realise how important it is to have something to look at once you finish reading a post and so the footer is an ideal opportunity to maintain readership.<br />
<span id="more-556"></span></p>
<h4>Functions.php</h4>
<p><strong>Functions.php</strong> is used to add the dynamic sidebars and to format it. For this design, I am adding two widgetized sidebars, one for the right of the content and one for the footer .Add the following into your functions.php</p>
<p><a class="downloadlink" href="http://miralize.com/wp-content/uploads/2009/03/day3/functions.php.txt">Download the functions.php text</a></p>
<p><strong>name</strong> – The name we give our sidebars</p>
<p><strong>before_widget</strong> – This allows us to structure our widgets</p>
<p><strong>after_widget</strong> – This closes the tags opened in the before_widget</p>
<p><strong>before_title – </strong>Lets us add a heading before the widget content</p>
<p><strong>after_title</strong> – Closes the heading tag</p>
<p>We also added classes called ‘<strong>widget</strong>’ , ‘<strong>footerbox</strong>’ , and ‘<strong>%2$s</strong>’. The ‘<strong>%2$s</strong>’ is used to allow plugins to give their own class so we can customise each widget separately.</p>
<h4>Adding the Sidebar</h4>
<p>So now we have two sidebars</p>
<p><a href="http://miralize.com/wp-content/uploads/2009/03/image4.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://miralize.com/wp-content/uploads/2009/03/image-thumb3.png" border="0" alt="image" width="240" height="64" /></a></p>
<p>This is what they look like in the admin panel. The only problem  is that we have nothing in our template files to show our widgets. This can be rectified easily</p>
<p>Go into <strong>sidebar.php</strong> and copy in the following lines of code in between the <strong>‘secondary’ div tag</strong></p>
<p><a class="downloadlink" href="http://miralize.com/miralize.com/wp-content/uploads/2009/03/day3/dynamicwidgets.txt">Download dynamicwidgets.txt</a></p>
<p>Now upload <strong>sidebar.php</strong> and you should see your widgets underneath your posts</p>
<p><a href="http://miralize.com/wp-content/uploads/2009/03/image5.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://miralize.com/wp-content/uploads/2009/03/image-thumb4.png" border="0" alt="image" width="600" height="375" /></a></p>
<h4>Add Functionality To The Footer</h4>
<p>Now we are going to add the exact same code, in a different manner and in a different place, to add functions to the sidebar.</p>
<p>Add the following just after <strong>&lt;div id=”footer”&gt;</strong></p>
<p><a class="downloadlink" href="http://miralize.com/miralize.com/wp-content/uploads/2009/03/day3/footerwidgets.txt">Download footerwidgets.txt here</a><strong></strong></p>
<p>This places in an unordered list, with the dynamic sidebar “footer” enclosed. I’ve also added a div around the footer text “Copyright etc.. “ to make it easier to style.</p>
<h4>Conclusion</h4>
<p>So at the end of this lesson your files should be along the lines of these</p>
<p><a class="downloadlink" href="http://miralize.com/miralize.com/wp-content/uploads/2009/03/day3/sidebar.php.txt">Download the sidebar.php text</a></p>
<p><a class="downloadlink" href="http://miralize.com/miralize.com/wp-content/uploads/2009/03/day3/footer.php.txt">Download the footer.php text</a></p>
<p>It&#8217;s not much of a design but we are getting there. On Day 4 of Design a WordPress 2.7 Theme, we will be adding CSS (Finally!) just to structure our page a bit. Remember to <a href="http://miralize.com/rss">Subscribe to my RSS Feed</a> for daily updates.</p>
]]></content:encoded>
			<wfw:commentRss>http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme-day-3-dynamic-sidebar-and-functional-footer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design a WordPress 2.7 Theme – Day 2 : File Separating and The Loop</title>
		<link>http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme-day-2-file-separating-and-the-loop/</link>
		<comments>http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme-day-2-file-separating-and-the-loop/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 00:00:38 +0000</pubDate>
		<dc:creator>Sean O'Grady</dc:creator>
				<category><![CDATA[Wordpress Theme]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[designs]]></category>
		<category><![CDATA[followers]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[headers]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://miralize.com/?p=525</guid>
		<description><![CDATA[Introduction You have your basic page structure, but there are none of your posts visible. Because there is a lot of PHP needed, and because it can get messy some times, WordPress give you an easier way to separate your template theme pages into different files. With WordPress, you can and it is extreemly easy! [...]]]></description>
			<content:encoded><![CDATA[<h4>Introduction</h4>
<p>You have your basic page structure, but there are none of your posts visible. Because there is a lot of PHP needed, and because it can get messy some times, WordPress give you an easier way to separate your template theme pages into different files. With WordPress, you can and it is extreemly easy!</p>
<p><span id="more-525"></span></p>
<h4>File Separation</h4>
<p>Open  any IDE, and make five new pages</p>
<ul>
<li><strong>header.php</strong></li>
<li><strong>sidebar.php</strong></li>
<li><strong>footer.php</strong></li>
<li><strong>page.php</strong></li>
<li><strong>single.php</strong></li>
</ul>
<p>Now go into you<strong> index.php, </strong>cut everything from the top to the end of <strong>&lt;div id=”primary”,</strong> and place it in the <strong>header.php</strong>. Then go back into your index.php and type <strong>&lt;?php get_header(); ?&gt;. </strong>This tells your index,php to import the header file</p>
<p>We are now going to do the same for the sidebar and the footer. Cut from <strong>&lt;!&#8211;END PRIMARY –&gt;</strong> to <strong>&lt;!&#8211;END CONTENT &#8211;&gt;&lt;/div&gt;</strong> and place it  into sidebar.php. Then in<strong> index.php</strong> type<strong> &lt;?php get_sidebar(); ?&gt;.</strong></p>
<p>And finally from <strong>&lt;div id=&#8221;footer&#8221;&gt;</strong> to <strong>&lt;/html&gt; </strong>place everything into <strong>footer.php</strong>, and in <strong>index.php</strong> finally type <strong>&lt;?php get_footer(); ?&gt;</strong></p>
<p>Your index.php should now have three lines of PHP code. You now have the basis of a WordPress themes, without the post or pages, or sidebar, ooh and your missing all your styling. Basically you have most of the grunt work done. You should be so proud. Lets move onto more interesting things shall we?</p>
<p><strong>NOTE: These are proprietary tags i.e. if you type in &lt;?php get_menu(); ?&gt; and hope to have menu.php imported, this will not work.</strong></p>
<h4>The Loop</h4>
<p>The loop is where your posts are displayed. It is called The Loop because it loops a script to display several posts dynamically.</p>
<p>Add the following between your header and sidebar import</p>
<p><strong>&lt;?php if(have_posts()) : ?&gt;</strong><strong>&lt;?php while(have_posts()) : the_post(); ?&gt;</strong></p>
<p><strong>&lt;?php endwhile; ?&gt;</strong></p>
<p><strong>&lt;?php endif; ?&gt;</strong></p>
<p>This code checks for posts, repeats the number of posts until finished, then it ends the script. Simple enough. Now in between <strong>&lt;?php while(have_posts()) : the_post(); ?&gt;</strong> and <strong>&lt;?php endwhile; ?&gt;</strong> type in the following code</p>
<p><a class="downloadlink" href="http://miralize.com/wp-content/uploads/2009/03/day2/loopentry.txt">Download loopentry.txt here</a></p>
<h4>Conclusion</h4>
<p>So at the end of this lesson you should:</p>
<ul>
<li>Have six files with<strong> index.php</strong>, <strong>single.php</strong> and <strong>page.php</strong> importing the header, sidebar and footer.</li>
<li>The loop displaying your posts</li>
<li>A navigation at the bottom to get you go backwards and forwards.</li>
</ul>
<h4>Next</h4>
<p>On Day 3 of our Design a WordPress 2.7 Theme, we will be covering the dynamic sidebar and other adding functionality to our footer. Make sure you <a href="http://miralize.com/rss">Subscribe  to my RSS</a>, if you don’t want to miss the rest of these posts.</p>
<p>Also please <a href="http://miralize.com/web-design/wordpress-theme/">go back</a> and have a look at the other tutorials in the post.</p>
]]></content:encoded>
			<wfw:commentRss>http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme-day-2-file-separating-and-the-loop/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Design a WordPress 2.7 Theme – Day 1 : Structure and Heading</title>
		<link>http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme-day-1-structure-and-heading/</link>
		<comments>http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme-day-1-structure-and-heading/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 23:06:23 +0000</pubDate>
		<dc:creator>Sean O'Grady</dc:creator>
				<category><![CDATA[Wordpress Theme]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[colour]]></category>
		<category><![CDATA[colours]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[day1]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[designs]]></category>
		<category><![CDATA[dreamweaver]]></category>
		<category><![CDATA[followers]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[miralize]]></category>
		<category><![CDATA[s]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://miralize.com/?p=471</guid>
		<description><![CDATA[Introduction The first thing to consider when designing a WordPress theme is to think about the layout of site. Who is it for, why do they need it, how many columns, what colours? For this tutorial, I will be working on something to give away for free on this site ( a sort of follow-up [...]]]></description>
			<content:encoded><![CDATA[<h4>Introduction</h4>
<p>The first thing to consider when designing a WordPress theme is to think about the layout of site. Who is it for, why do they need it, how many columns, what colours? For this tutorial, I will be working on something to give away for free on this site ( a sort of follow-up to the series).  I cant decide on your design, so you will have to get all of these beforehand.<span id="more-471"></span></p>
<h4>The Heading</h4>
<p>So to start, open up Dreamweaver (or any other IDE) and create a PHP file and name it <strong>index.php</strong>. Then create a CSS file and name it<strong> style.css</strong>. In you <strong>index.php,</strong> there will be some text already in your code. Take every thing out of the <strong>&lt;head&gt;</strong> tag and substitute it for the following:</p>
<p><a href="http://miralize.com/wp-content/uploads/2009/03/day1/head.txt" class="downloadlink">Download head.txt here</a></p>
<p><strong>&lt;?php wp_title (); ?&gt;  – </strong>This gives dynamic info as the Page Title. This is extremely useful for SEO as it changes for every post.</p>
<p><strong>&lt;?php bloginfo(&#8216;template_directory&#8217;); ?&gt; &amp; &lt;?php bloginfo(&#8216;stylesheet_url&#8217;); ?&gt; – </strong>This just gives the location of the template directory and stylesheet. The first one is useful if you need to add a second CSS file (like I will be doing soon), JavaScript file, or an image. <strong></strong></p>
<p><strong>&lt;?php wp_head(); ?&gt; – </strong>This exports the files WordPress and its plug-ins needs to the HTML. Some of this include widget specific CSS, J-Query embedding, or just  new title-bar text.</p>
<h4>Stylesheet setup</h4>
<p>Head into style.css and remove everything inside it.  Now because WP uses the stylesheet for all the template metadata (Useful Information), it is vital that you write this code correctly.</p>
<p><a href="http://miralize.com/wp-content/uploads/2009/03/day1/stylemeta.txt" class="downloadlink">Download stylemeta.txt here</a></p>
<p>This just gives data, like the version of the template, template name etc… You can edit it accordingly. This is all we will be doing in the CSS today, we will not go that far so soon. For now, we will just work on the HTML.</p>
<h4>The Basic Structure.</h4>
<p>Ok now we are going to write the basic structure of our theme. We are not going to be implementing CSS just yet. I like to use a blank file with all this code already written but you can see it all here. Put all of this into the <strong>&lt;body&gt;</strong> tag.</p>
<p><a href="http://http://miralize.com/wp-content/uploads/2009/03/day1/body.txt" class="downloadlink">Download body.txt here</a></p>
<p>This is just basic formatting, feel free to change it around as much as you like, just remember what id’s you use to make sure you don’t get confused with mine. Most of it is self-explanatory. However you will notice I have added a few PHP phrases <strong>&lt;? wp_list_pages(&#8216;title_li=&amp;depth=1&#8242;); ?&gt;</strong> &#8211; This prints out links for our menu. This is often an overlooked part of designing a WordPress theme, but it makes things easier in the long run. “depth=1” Makes sure that no sub-pages are seen. If you want to remove that go ahead but for this theme, I’m leaving it out <strong>&lt;? bloginfo(&#8216;url&#8217;);?&gt;</strong> &amp;<strong> &lt;? bloginfo(&#8216;name&#8217;);?&gt; –</strong> This are handy tags to print out the URL and Name of the blog.</p>
<h4>Testing</h4>
<p>Now upload these files onto your web server in a folder in your <strong>wp-content/themes/</strong> folder. Now enable your theme in the Backend and see if things are correct. You should see a page with your site name and a list of your pages, with no styling, and a footer with copyright information.</p>
<h4>Conclusion</h4>
<p>So at the end of this lesson you should:</p>
<ul>
<li>Be familiar with the <strong>PHP</strong> involved in the <strong>&lt;head&gt;</strong> tag</li>
<li>Have the metadata implemented in the <strong>CSS</strong></li>
<li>Have a basic webpage structure ready for CSS Styling</li>
</ul>
<p>Your HTML Page should look like this</p>
<p><a href="http://http://miralize.com/wp-content/uploads/2009/03/day1/day1.txt" class="downloadlink">Download day1.txt here</a></p>
<h4>Next</h4>
<p>On Day 2 of our Design a WordPress 2.7 Theme, we will be covering the loop and other php snippets to go into our theme. Make sure you S<a href="http://miralize.com/rss">ubscribe  to my RSS</a>, if you don’t want to miss the rest of these posts. Also please <a href="http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme/ ">go back</a> and have a look at the other tutorials in the post.</p>
]]></content:encoded>
			<wfw:commentRss>http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme-day-1-structure-and-heading/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Design a WordPress 2.7 Theme</title>
		<link>http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme/</link>
		<comments>http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 22:44:35 +0000</pubDate>
		<dc:creator>Sean O'Grady</dc:creator>
				<category><![CDATA[Wordpress Theme]]></category>
		<category><![CDATA[ambitious series]]></category>
		<category><![CDATA[basic knowledge]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[coda]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[designs]]></category>
		<category><![CDATA[dreamweaver]]></category>
		<category><![CDATA[expression]]></category>
		<category><![CDATA[Favourites]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[header design]]></category>
		<category><![CDATA[headers]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[web designer]]></category>
		<category><![CDATA[web developer]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress themes]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://miralize.com/?p=448</guid>
		<description><![CDATA[Ok so I&#8217;m a fan of tutorials that show you step by step as to how to accomplish something. One of my favourites, and one that has helped me in my quest in becoming a Web Designer is WPDesigners.com&#8217;s &#8211; So you want to create WordPress themes huh?. It was so detailed and informative, but [...]]]></description>
			<content:encoded><![CDATA[<p>Ok so I&#8217;m a fan of tutorials that show you step by step as to how to accomplish something. One of my favourites, and one that has helped me in my quest in becoming a Web Designer is <a href="http://www.wpdesigner.com/2007/02/19/so-you-want-to-create-wordpress-themes-huh/">WPDesigners.com&#8217;s &#8211; So you want to create WordPress themes huh?</a>. It was so detailed and informative, but sadly that was 2007, and now it&#8217;s time for a refresh.</p>
<p>Seeing as he doesn&#8217;t seem to be doing so, I thought I might give it a shot. This is an extremely ambitious series of posts, as this is a fairly new blog, from a fairly new blogger/web designer. So please, don&#8217;t treat my words as gospel, and always strive for improvement. I shall be doing these posts every two -three days so please stick around. If you have any trouble you can find me <a href="http://twitter.com/miralize">here</a> <a href="http://twitter.com/miralize"></a><span id="more-448"></span></p>
<h4>You will need</h4>
<ul>
<li>A Self-hosted <a href="http://wordpress.org">WordPress</a> blog</li>
<li>Basic Knowledge of xHTML and CSS</li>
<li>A IDE (Dreamweaver, Expression, Coda etc&#8230;)</li>
<li>A inline browser tool such as <a href="http://www.getfirebug.com">Firebug</a> and <a href="http://https://addons.mozilla.org/en-US/firefox/addon/60">Web Developer Toolbar</a></li>
</ul>
<h4>Lessons</h4>
<ul>
<li><a href="http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme-day-1-structure-and-heading/">Day 1 &#8211; The Basic Structure and Header</a></li>
<li><a href="http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme-day-2-file-separating-and-the-loop/">Day 2 &#8211; File Separating And The Loop</a></li>
<li><a href="http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme-day-3-dynamic-sidebar-and-functional-footer/"Day 3 - Dynamic Sidebar and Functional Footer</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://miralize.com/web-design/wordpress-theme/design-a-wordpress-27-theme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New Blog Theme &#8211; Its Ninja-tastic</title>
		<link>http://miralize.com/showcase/new-blog-theme-its-ninja-tastic/</link>
		<comments>http://miralize.com/showcase/new-blog-theme-its-ninja-tastic/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 23:38:31 +0000</pubDate>
		<dc:creator>Sean O'Grady</dc:creator>
				<category><![CDATA[Showcase]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[designs]]></category>
		<category><![CDATA[illustrator]]></category>

		<guid isPermaLink="false">http://miralize.com/?p=369</guid>
		<description><![CDATA[Yes this is my bluesy design for Miralize.com and I quite like it. Yes there are some kinks to be worked out, but this is my new design. I need to add a few things (like styling to the comments), but they shouldn&#8217;t take that long, and I wanted to get this design out as [...]]]></description>
			<content:encoded><![CDATA[<p>Yes this is my bluesy design for Miralize.com and I quite like it. Yes there are some kinks to be worked out, but this <strong>is</strong> my new design. I need to add a few things (like styling to the comments), but they shouldn&#8217;t take that long, and I wanted to get this design out as fast as possible.</p>
<p>I really like the ninja illustration I did for this site.I think it adds something different to the site. The whole site is designed to be fast-loading, with only two images, and a heck of a lot of CSS, I got it to look like this. Pretty impressive, huh? <img src='http://miralize.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  Haha I&#8217;m proud, but im not that arrogant.</p>
<p>Hope you enjoy it,</p>
<p>Sean</p>
]]></content:encoded>
			<wfw:commentRss>http://miralize.com/showcase/new-blog-theme-its-ninja-tastic/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Media Virgins Style Redesign</title>
		<link>http://miralize.com/showcase/media-virgins-style-redesign/</link>
		<comments>http://miralize.com/showcase/media-virgins-style-redesign/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 18:26:06 +0000</pubDate>
		<dc:creator>Sean O'Grady</dc:creator>
				<category><![CDATA[Showcase]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[media virgins]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://miralize.com/?p=326</guid>
		<description><![CDATA[I love the new style of Media Virgins, the home of first year at Tipperay Institute, for several reasons. Its design is simple yet not boring. People often say dark grey is the new black, but the dark grey I think adds elegance and professionalism to this new design. Probably my favourite piece of this [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_327" class="wp-caption alignleft" style="width: 310px"><a rel="attachment wp-att-327" href="http://miralize.com/showcase/media-virgins-style-redesign/attachment/untitled-1-2-2/"><img class="size-medium wp-image-327" title="Media Virgins" src="http://miralize.com/wp-content/uploads/2009/02/untitled-1-300x114.png" alt="Media Virgins" width="300" height="114" /></a><p class="wp-caption-text">Media Virgins</p></div>
<p>I love the new style of <a href="http://www.mediavirgins.com/">Media Virgins</a>, the home of first year at Tipperay Institute, for several reasons. Its design is simple yet not boring. People often say dark grey is the new black, but the dark grey I think adds elegance and professionalism to this new design.</p>
<p>Probably my favourite piece of this design is the sidebar with alternating shades of grey, that make it eay to stand out. This was also one of the most tasking pieces as I had to fiddle around with WordPress for a bit to get it to work properly. The footer also is a nice piece. I was never that much of a fan of content in footers but once I finished it I was surprised at how well it fit in with the sites flow.</p>
<p>This one is quite a different project than ones I usually work on. I administer this blog, and so I had the creative room to do what I wanted and I am pretty pleased. I had the chance to brand this design over several social networks to add conformity and continuity to the site. I had done several other designs beforehand (4 to be prescice), yet I was never happy with how they had turned out. Im pretty sure that this one will last for a bit and I hope people enjoy it. There is still several kinks to work out so if anyone see&#8217;s any, please comment below.</p>
<p><a href="http://mediavirgins.com">[Media Virgins]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://miralize.com/showcase/media-virgins-style-redesign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Firefox Plugins for Web Developers</title>
		<link>http://miralize.com/web-design/best-firefox-plugins-for-web-developers/</link>
		<comments>http://miralize.com/web-design/best-firefox-plugins-for-web-developers/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 08:22:42 +0000</pubDate>
		<dc:creator>Sean O'Grady</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://psdetails.com/?p=95</guid>
		<description><![CDATA[Ok so if you havent been sitting in a soundproof bunker for the last 5 years, you have probably heard of Firefox. And as a budding developer, I tend to use its extensive plugins to help me. Take a look at my best. Web Developer Toolbar &#8211; This is a fantastic tool that &#8220;Adds a [...]]]></description>
			<content:encoded><![CDATA[<p>Ok so if you havent been sitting in a soundproof bunker for the last 5 years, you have probably heard of <a href="http://getfirefox.com">Firefox</a>. And as a budding developer, I tend to use its extensive plugins to help me. Take a look at my best.</p>
<p><span id="more-95"></span></p>
<ol>
<li><a href="https://addons.mozilla.org/firefox/addon/60">Web Developer Toolbar</a> &#8211; This is a fantastic tool that &#8220;Adds a menu and a toolbar with various web developer tools&#8221; such as viewing and editing CSS in browser (also editing html), Displaying the divs on a page, checking if the site is css and xhtml valid, disable and enable almost everything. This is the best for web design and development.<a href="https://addons.mozilla.org/en-US/firefox/downloads/file/28678/web_developer-1.1.6-fx.xpi">Download Here</a></li>
<li><a href="http://www.stumbleupon.com/">StumbleUpon</a> &#8211; StumbleUpon? I thought that was a social networking site. You would be correct but it is also a handy repository for finding articles about web development. Just add topics like css,php, etc to your topics and click Stumble! on the toolbar. the best thing in my eyes about this is that you can do it at your own pace, there is no rush, it is totally random and you can do it whenever your bored. <a href="https://addons.mozilla.org/en-US/firefox/downloads/file/34258/stumbleupon-3.26-fx+mz+sm.xpi">Download 3.26 Here </a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/271">Colorzilla</a> &#8211; Besides the american (wrong) spelling of &#8220;COLOUR&#8221;, this is great tool for when you dont want drag a screenshot into Photoshop to get a Hex Colour. Just clicking the icon will bring up an eye dropper cursor that allows you to find the HEX and RGB of a colour  in a flash. <a href="https://addons.mozilla.org/en-US/firefox/downloads/file/30620/colorzilla-2.0-.xpi">Download Here</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/539">MeasureIt</a> &#8211; Again to save time loading up Photoshop. Just click and drag and you get an instead x and y value of the length of the selection. Even works when you zoom in! <a href="https://addons.mozilla.org/en-US/firefox/downloads/file/30333/measureit-0.3.8-fx.xpi">Download Here</a></li>
<li>This is a great site. Must have for all web-developers</li>
<li><a href="http://getfirebug.com">Firebug</a> &#8211; This is probably one of the most useful addons you can get for Firefox. Showing Javascript errors, the structure of the HTML, shows you the JSON responses, the css of a particular element, and the loading time of a page, firebug is a great tool. This is a must-have addon for all Web Developers -<a href="http://getfirebug.com">Download Here</a></li>
</ol>
<p>Hope you enjoyed it. Please Digg if you like it</p>
]]></content:encoded>
			<wfw:commentRss>http://miralize.com/web-design/best-firefox-plugins-for-web-developers/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>CSS Gallery List</title>
		<link>http://miralize.com/showcase/css-gallery-list/</link>
		<comments>http://miralize.com/showcase/css-gallery-list/#comments</comments>
		<pubDate>Sun, 27 Jul 2008 20:51:14 +0000</pubDate>
		<dc:creator>Sean O'Grady</dc:creator>
				<category><![CDATA[Showcase]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://psdetails.com/?p=70</guid>
		<description><![CDATA[Usually bloggers often choose to list some of the best designs in their blogs but I think I&#8217;m going to try something a little different. Rather than post a list of the &#8220;Best&#8221; in my eyes I will give you a list of the galleries often voted by thousands. These sites are a must-see for [...]]]></description>
			<content:encoded><![CDATA[<p>Usually bloggers often choose to list some of the best designs in their blogs but I think I&#8217;m going to try something a little different. Rather than post a list of the &#8220;Best&#8221; in my eyes I will give you a list of the galleries often voted by thousands. These sites are a must-see for inspiration. Undoubtebly they have sometimes been abused by ripping but they help none-the-less</p>
<p><span id="more-70"></span></p>
<ul>
<li><a href="http://www.cssbeauty.com/">CSS Beauty</a></li>
<li><a href="http://cssblast.ru/">CSS Blast</a></li>
<li><a href="http://www.cssbloom.com/">CSSBloom</a></li>
<li><a href="http://www.cssclip.com/">CSS Clip</a></li>
<li><a href="http://www.csscollection.com/">CSS Collection</a></li>
<li><a href="http://css-demo.com/">CSS-Demo</a></li>
<li><a href="http://www.css-design-yorkshire.com/">CSS Design Yorkshire</a></li>
<li><a href="http://www.cssdrive.com/">CSS Drive- Categorized CSS gallery and examples</a></li>
<li><a href="http://www.ceeses.com/">CeeSeS</a></li>
<li><a href="http://galerie.crooco.com/index.php?p=galerie">CESKO</a></li>
<li><a href="http://www.creative-pakistan.com/">Creative-Pakistan</a></li>
<li><a href="http://www.cssfill.com/">CSSFill</a></li>
<li><a href="http://cssgalaxy.com/">CSS Galaxy</a></li>
<li><a href="http://csshazard.com/">CSS Hazard</a></li>
<li><a href="http://www.cssheaven.com/">CSS Heaven</a></li>
<li><a href="http://www.cssimport.com/">CSS ImportCSS</a></li>
<li><a href="http://www.nv30.com/mt/blogomania/">CSS-Mania</a></li>
<li><a href="http://cssprincess.com/">CSS Princess</a></li>
<li><a href="http://www.cssreboot.com/gallery/">CSS Reboot</a></li>
<li><a href="http://www.cssremix.com/">CSS Remix</a></li>
<li><a href="http://csssmoothoperator.com/">CSS smooth operator // Tite site collection</a></li>
<li><a href="http://www.csstux.com/">csstux &#8211; The best dressed sites on the web</a></li>
<li><a href="http://www.cssvault.com/">CSS Vault &#8211; The Web’s CSS Site</a></li>
<li><a href="http://www.css-website.com/">CSS Website</a></li>
<li><a href="http://www.csszengarden.com/">CSS Zen Garden: The Beauty in CSS Design</a></li>
<li><a href="http://www.designshack.co.uk/index.php">Design Shack &#8211; Inspirational CSS and Blog Design</a></li>
<li><a href="http://www.cssliquid.com/category/gallery/">Liquid Designs</a></li>
<li><a href="http://www.piepmatzel.de/">Piepmatzel</a></li>
<li><a href="http://www.stylecrunch.com/">Style Crunch</a></li>
<li><a href="http://www.stylegala.com/">Stylegala</a></li>
<li><a href="http://www.submitcss.com/">Submit CSS</a></li>
<li><a href="http://www.unmatchedstyle.com/gallery/">Unmatched Style</a></li>
<li><a href="http://www.w3csites.com/sites.asp">W3 Compliant Sites</a></li>
<li><a href="http://www.webdigity.com/cssGallery/">Webdigity</a></li>
<li><a rel="tag" href="http://www.webstandardsawards.com/">Web Standards Awards</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://miralize.com/showcase/css-gallery-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
