<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Theme Galaxy</title>
	
	<link>http://www.themegalaxy.net</link>
	<description>Out of this world WordPress Themes</description>
	<pubDate>Sat, 04 Apr 2009 10:02:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/themegalaxynet" type="application/rss+xml" /><feedburner:emailServiceId>themegalaxynet</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Using PHP to control dynamic content</title>
		<link>http://feedproxy.google.com/~r/themegalaxynet/~3/Tv0XYUQRGic/</link>
		<comments>http://www.themegalaxy.net/2009/04/using-php-to-control-dynamic-content/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 10:02:27 +0000</pubDate>
		<dc:creator>Dejan</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.themegalaxy.net/?p=378</guid>
		<description><![CDATA[<p>First here&#8217;s a bit better explanation of the title - How to control your dynamic output (posts, navigation, feeds&#8230;) with simple use of PHP, of course this can be used where every you have automatically created content, but since we develop themes here, we&#8217;ll stick to WordPress! </p>
<p>To demonstrate this i&#8217;ll be using 3 very common problems that you have&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>First here&#8217;s a bit better explanation of the title - How to control your dynamic output (posts, navigation, feeds&#8230;) with simple use of PHP, of course this can be used where every you have automatically created content, but since we develop themes here, we&#8217;ll stick to WordPress! </p>
<p>To demonstrate this i&#8217;ll be using 3 very common problems that you have probably ran into while developing themes, all of them are about main posts loop, but as i said you can use it where ever you want!</p>
<p><strong style="color:#333;">First problem, making the latest post different style</strong><br />
Idea is to put a counter into the main WordPress loop and simply tell on what ID (post) you want to apply another (or different) class. Like we used for <a href="http://themegalaxy.net/demo/andromeda/">Andromeda Theme</a></p>
<p><img src="http://www.themegalaxy.net/wp-content/uploads/2009/04/featuredpost.jpg" alt="featuredpost" title="featuredpost" width="535" height="364" class="alignnone size-full wp-image-382" /></p>
<div class="dean_ch" style="white-space: wrap;">
<span class="kw2">&lt;?php</span> <span class="re0">$i</span>=<span class="nu0">1</span>; <span class="kw2">?&gt;</span><br />
&nbsp;<br />
<span class="kw2">&lt;?php</span> <span class="kw1">while</span> <span class="br0">&#40;</span>have_posts<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#41;</span> : the_post<span class="br0">&#40;</span><span class="br0">&#41;</span>; <span class="kw2">?&gt;</span> &nbsp; &nbsp; &nbsp;<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; &lt;div id=<span class="st0">&quot;post-&lt;?php the_ID(); ?&gt;&quot;</span> <span class="kw2">class</span>=<span class="st0">&quot;post &lt;?php if ($i == 1) { echo &#8216;alt&#8217;; } ?&gt;&quot;</span>&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;post content<br />
&nbsp; &nbsp; &nbsp; &lt;/div&gt; &nbsp;<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp;<span class="kw2">&lt;?php</span> <span class="re0">$i</span>++; <span class="kw2">?&gt;</span></p>
<p><span class="kw2">&lt;?php</span> <span class="kw1">endwhile</span>; <span class="kw2">?&gt;</span><br />
&nbsp;</div>
<p><strong style="color:#333;">Second problem, repeating blocks can&#8217;t fit wrapper width because of last padding</strong><br />
This is like the most typical thing, you can see it everywhere and if you&#8217;re not CSS expert (because it can be fixed with CSS) let&#8217;s apply style without padding to the latest horizontal block in the row, call it <strong>last</strong> (and of course you have to define it in CSS like .last { padding:0px; } or something. </p>
<p><img src="http://www.themegalaxy.net/wp-content/uploads/2009/04/paddingright.jpg" alt="paddingright" title="paddingright" width="535" height="283" class="alignnone size-full wp-image-398" /></p>
<div class="dean_ch" style="white-space: wrap;">
<span class="kw2">&lt;?php</span> <span class="re0">$i</span>=<span class="nu0">1</span>; <span class="kw2">?&gt;</span><br />
&nbsp;<br />
<span class="kw2">&lt;?php</span> <span class="kw1">while</span> <span class="br0">&#40;</span>have_posts<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#41;</span> : the_post<span class="br0">&#40;</span><span class="br0">&#41;</span>; <span class="kw2">?&gt;</span> &nbsp; &nbsp; &nbsp;<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; &lt;div id=<span class="st0">&quot;post-&lt;?php the_ID(); ?&gt;&quot;</span> <span class="kw2">class</span>=<span class="st0">&quot;post &lt;?php if( $i % 3 == 0 ) echo &#8216; last&#8217;; ?&gt;&quot;</span>&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;post content<br />
&nbsp; &nbsp; &nbsp; &lt;/div&gt; &nbsp;<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp;<span class="kw2">&lt;?php</span> <span class="re0">$i</span>++; <span class="kw2">?&gt;</span></p>
<p><span class="kw2">&lt;?php</span> <span class="kw1">endwhile</span>; <span class="kw2">?&gt;</span><br />
&nbsp;</div>
<p>So you see, similar thing here, just we&#8217;re checking if module is == 0, so you can have this in every row for 3 posts not just for the first one </p>
<p><strong style="color:#333;">Third problem, different box heights breaking the layout</strong><br />
Here&#8217;s the situation, you have posts sorted like in previous example, so horizontal boxes in multiple lines but when they are different heights they most often don&#8217;t go in right order, so what we&#8217;re about to do is to put some clear both after every line. We&#8217;ve used this in our <a href="http://www.themegalaxy.net/demo/gemini/">Gemini Theme</a></p>
<p><img src="http://www.themegalaxy.net/wp-content/uploads/2009/04/heights.jpg" alt="heights" title="heights" width="535" height="283" class="alignnone size-full wp-image-407" /></p>
<div class="dean_ch" style="white-space: wrap;">
<span class="kw2">&lt;?php</span> <span class="re0">$i</span>=<span class="nu0">1</span>; <span class="kw2">?&gt;</span><br />
&nbsp;<br />
<span class="kw2">&lt;?php</span> <span class="kw1">while</span> <span class="br0">&#40;</span>have_posts<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#41;</span> : the_post<span class="br0">&#40;</span><span class="br0">&#41;</span>; <span class="kw2">?&gt;</span> &nbsp; &nbsp; &nbsp;<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; &lt;div id=<span class="st0">&quot;post-&lt;?php the_ID(); ?&gt;&quot;</span>&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;post content &#8230;<br />
&nbsp; &nbsp; &nbsp; &lt;/div&gt; &nbsp;<br />
&nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp;<span class="kw2">&lt;?php</span> <span class="kw1">if</span> <span class="br0">&#40;</span><span class="br0">&#40;</span><span class="re0">$i</span>%<span class="nu0">3</span><span class="br0">&#41;</span> == <span class="nu0">0</span><span class="br0">&#41;</span> <span class="br0">&#123;</span> <a href="http://www.php.net/echo"><span class="kw3">echo</span></a> <span class="st0">&quot;&lt;div style=&#8217;clear:both;&#8217;&gt;&lt;/div&gt;&quot;</span>; <span class="br0">&#125;</span> <span class="kw2">?&gt;</span></p>
<p>&nbsp; &nbsp; &nbsp;<span class="kw2">&lt;?php</span> <span class="re0">$i</span>++; <span class="kw2">?&gt;</span></p>
<p><span class="kw2">&lt;?php</span> <span class="kw1">endwhile</span>; <span class="kw2">?&gt;</span><br />
&nbsp;</div>
<img src="http://feeds.feedburner.com/~r/themegalaxynet/~4/Tv0XYUQRGic" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.themegalaxy.net/2009/04/using-php-to-control-dynamic-content/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.themegalaxy.net/2009/04/using-php-to-control-dynamic-content/</feedburner:origLink></item>
		<item>
		<title>Contest: Follow us on Twitter and win a theme…</title>
		<link>http://feedproxy.google.com/~r/themegalaxynet/~3/QKeDfc7wgUk/</link>
		<comments>http://www.themegalaxy.net/2009/03/contest-follow-us-on-twitter-and-win-a-theme/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 19:42:02 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.themegalaxy.net/?p=374</guid>
		<description><![CDATA[Theme Galaxy is excited to announce a new contest which could result in you winning a brand spanking new Theme Galaxy theme of your choice! It couldn't be simpler to enter...]]></description>
			<content:encoded><![CDATA[<p>All you need to do is <a href="http://twitter.com/themegalaxy" title="Follow us on Twitter">follow us on Twitter</a> before the end of March and you will automatically be entered into the prize draw! </p>
<p>Should you win, we shall contact you to find out your theme of choice before sending it to you via Email. So what are you waiting for?! <a href="http://twitter.com/themegalaxy" title="Follow us on Twitter">Follow us on Twitter</a> now!</p>
<img src="http://feeds.feedburner.com/~r/themegalaxynet/~4/QKeDfc7wgUk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.themegalaxy.net/2009/03/contest-follow-us-on-twitter-and-win-a-theme/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.themegalaxy.net/2009/03/contest-follow-us-on-twitter-and-win-a-theme/</feedburner:origLink></item>
		<item>
		<title>Cepheus is alive!</title>
		<link>http://feedproxy.google.com/~r/themegalaxynet/~3/psjIx7eeoKI/</link>
		<comments>http://www.themegalaxy.net/2009/03/cepheus-is-alive/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 19:39:38 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.themegalaxy.net/?p=370</guid>
		<description><![CDATA[<p>Our latest business theme <a href="/2009/03/cepheus/" title="Cepheus">Cepheus</a> is now live. Take a look at the <a href="/2009/03/cepheus/" title="Cepheus">Cepheus page</a> for more information and purchase options!</p>
<p>Also feel free to comment and tell us what you think, or leave a feedback on the left!</p>
]]></description>
			<content:encoded><![CDATA[<p>Our latest business theme <a href="/2009/03/cepheus/" title="Cepheus">Cepheus</a> is now live. Take a look at the <a href="/2009/03/cepheus/" title="Cepheus">Cepheus page</a> for more information and purchase options!</p>
<p>Also feel free to comment and tell us what you think, or leave a feedback on the left!</p>
<img src="http://feeds.feedburner.com/~r/themegalaxynet/~4/psjIx7eeoKI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.themegalaxy.net/2009/03/cepheus-is-alive/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.themegalaxy.net/2009/03/cepheus-is-alive/</feedburner:origLink></item>
		<item>
		<title>Cepheus</title>
		<link>http://feedproxy.google.com/~r/themegalaxynet/~3/noiR5vmRzc4/</link>
		<comments>http://www.themegalaxy.net/2009/03/cepheus/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 19:20:10 +0000</pubDate>
		<dc:creator>Dejan</dc:creator>
		
		<category><![CDATA[Business Themes]]></category>

		<category><![CDATA[6 color schemes]]></category>

		<category><![CDATA[Featured Product]]></category>

		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.themegalaxy.net/?p=368</guid>
		<description><![CDATA[<p>Firstly, Cepheus is available in 6 delicious flavours which will help you stand out from the crowd. Aside from this there are areas for latest news, reviews and an awesome tour page all of which are controlled through the Cepheus custom options page within your Dashboard.</p>
<p>Careful attention has been paid to whitespace and typography to ensure that the user can&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Firstly, Cepheus is available in 6 delicious flavours which will help you stand out from the crowd. Aside from this there are areas for latest news, reviews and an awesome tour page all of which are controlled through the Cepheus custom options page within your Dashboard.</p>
<p>Careful attention has been paid to whitespace and typography to ensure that the user can easily and efficiently obtain as much information as possible about your company/product without being overwhelmed or confused.</p>
<img src="http://feeds.feedburner.com/~r/themegalaxynet/~4/noiR5vmRzc4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.themegalaxy.net/2009/03/cepheus/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.themegalaxy.net/2009/03/cepheus/</feedburner:origLink></item>
		<item>
		<title>CSS shadow effect</title>
		<link>http://feedproxy.google.com/~r/themegalaxynet/~3/TGJzAmNF0pA/</link>
		<comments>http://www.themegalaxy.net/2009/02/css-shadow-effect/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 09:41:59 +0000</pubDate>
		<dc:creator>Dejan</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.themegalaxy.net/?p=331</guid>
		<description><![CDATA[<p>I know, we said we&#8217;ll focus on WordPress tutorials but, I can&#8217;t resist sharing cool CSS tricks from time to time like this one CSS shadow effect we&#8217;ve used for our <a href="http://www.themegalaxy.net/demo/vela/">Vela</a> theme. If you take a look at <a href="http://www.themegalaxy.net/demo/vela/">Vela</a> header you&#8217;ll see h1 and h2 text with blog title and description. <a href="http://www.themegalaxy.net/demo/vela/">Vela</a> comes with two different background images, one is very colorful&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>I know, we said we&#8217;ll focus on WordPress tutorials but, I can&#8217;t resist sharing cool CSS tricks from time to time like this one CSS shadow effect we&#8217;ve used for our <a href="http://www.themegalaxy.net/demo/vela/">Vela</a> theme. If you take a look at <a href="http://www.themegalaxy.net/demo/vela/">Vela</a> header you&#8217;ll see h1 and h2 text with blog title and description. <a href="http://www.themegalaxy.net/demo/vela/">Vela</a> comes with two different background images, one is very colorful and the other one is dark, so to keep text readable in this situation you have to use shadow or text border. And since there&#8217;s no enough support for text-shadow CSS3 property (only for Safari so far) you have to improvise.</p>
<p><a href="http://www.themegalaxy.net/demo/vela/"><img class="alignnone size-full wp-image-335" title="shadow" src="http://www.themegalaxy.net/wp-content/uploads/2009/02/shadow.gif" alt="shadow" width="535" height="110" /></a></p>
<p>What we&#8217;re going to use is pure CSS solution, but you can use for example some JavaScript with a simple loop or something&#8230; Here&#8217;s the code and after that an explanation.</p>
<div class="dean_ch" style="white-space: wrap;">
&lt;h1&gt;&lt;span&gt;&lt;a href=<span class="st0">&quot;#&quot;</span>&gt;Some text&lt;/a&gt;&lt;/span&gt;Some text&lt;/h1&gt;<br />
h1 <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; font-size<span class="re2">:<span class="re3">26px</span></span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; font-weight<span class="re2">:bold</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">color</span>:<span class="re0">#<span class="nu0">111</span></span>;<br />
<span class="br0">&#125;</span></p>
<p>h1 span<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; position<span class="re2">:absolute</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin<span class="re2">:-<span class="re3">1px</span></span> <span class="nu0">0</span> <span class="nu0">0</span> -<span class="re3">1px</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">color</span>:<span class="re0">#fff</span>;<br />
<span class="br0">&#125;</span></div>
<p>Yes, that&#8217;s all! Key element is span tag with same text which is positioned absolute and moved a bit. You can place it in any tag you want and also add links and everything like in example. This is tested on FF, IE6, IE7, IE8, Opera, Chrome and Safari.</p>
<img src="http://feeds.feedburner.com/~r/themegalaxynet/~4/TGJzAmNF0pA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.themegalaxy.net/2009/02/css-shadow-effect/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.themegalaxy.net/2009/02/css-shadow-effect/</feedburner:origLink></item>
		<item>
		<title>The Theme Galaxy Credit-Crunch-Busting Price Restructure</title>
		<link>http://feedproxy.google.com/~r/themegalaxynet/~3/k2-rElf_zzI/</link>
		<comments>http://www.themegalaxy.net/2009/02/the-theme-galaxy-credit-crunch-busting-price-restructure/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 22:21:51 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.themegalaxy.net/?p=347</guid>
		<description><![CDATA[<p>With the global economy drowning in the toilet bowl, it&#8217;s not an easy time to set up a web site and/or purchase the items required to do so. We at Theme Galaxy understand this and have taken it upon ourselves to introduce an all new pricing structure for our themes which we feel should ease our customers through this difficult&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>With the global economy drowning in the toilet bowl, it&#8217;s not an easy time to set up a web site and/or purchase the items required to do so. We at Theme Galaxy understand this and have taken it upon ourselves to introduce an all new pricing structure for our themes which we feel should ease our customers through this difficult time.</p>
<p>So without further ado&#8230; As of right now, you can purchase any of our awesome <a href="/category/themes/magazine-themes/" title="Magazine Themes">Magazine Themes</a> or <a href="/category/themes/personal-themes/" title="Personal Themes">Personal Themes</a> for the unprecedented low price of $40 for single licenses and just $80 for a developer license. That&#8217;s <strong>half the original price</strong> and better than any previous offers here at Theme Galaxy. </p>
<p><a href="/category/themes/business-themes/" title="Business Themes">Business Themes</a> and <a href="/category/themes/portfolio-themes/" title="Portfolio Themes">Portfolio Themes</a> have also been locked at $60 for single licenses and $120 for developer licenses. <strong>That&#8217;s 20% off original prices</strong>.</p>
<p>We hope you like the newly priced Theme Galaxy themes and that they are now closer to reach in these times of financial hardship! Get &#8216;em while they&#8217;re hot people!!!</p>
<img src="http://feeds.feedburner.com/~r/themegalaxynet/~4/k2-rElf_zzI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.themegalaxy.net/2009/02/the-theme-galaxy-credit-crunch-busting-price-restructure/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.themegalaxy.net/2009/02/the-theme-galaxy-credit-crunch-busting-price-restructure/</feedburner:origLink></item>
		<item>
		<title>Why choose a Theme Galaxy Theme?</title>
		<link>http://feedproxy.google.com/~r/themegalaxynet/~3/GWVC8ulVOPg/</link>
		<comments>http://www.themegalaxy.net/2009/02/why-choose-a-theme-galaxy-theme/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 18:29:15 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.themegalaxy.net/?p=304</guid>
		<description><![CDATA[<p>Of course we think that our themes are great, we wouldn&#8217;t be selling them otherwise. But there are an astounding amount of &#8220;Premium&#8221; WordPress themes out there which are &#8216;not-so-great&#8217;. But instead of putting you off the whole idea of purchasing a Premium Theme, I want to explain what makes ours in particular so great.</p>
<h3><strong>1. Design Process</strong></h3>
<p>Each of our themes&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Of course we think that our themes are great, we wouldn&#8217;t be selling them otherwise. But there are an astounding amount of &#8220;Premium&#8221; WordPress themes out there which are &#8216;not-so-great&#8217;. But instead of putting you off the whole idea of purchasing a Premium Theme, I want to explain what makes ours in particular so great.</p>
<h3><strong>1. Design Process</strong></h3>
<p>Each of our themes are designed from the ground up in Adobe Fireworks. We spend as much time designing each individual theme as we would if we were designing a custom web site for a client. There&#8217;s a great amount of attention to detail involved.</p>
<p>We also design every page, not just the homepage. This means that the same level of thought which went in to designing the homepage has gone into designing the entire theme. This results in a much more rounded product, which is consistently styled and functions intuitively.</p>
<p>As you may have noticed, several of our themes also come in a variety of colour schemes, or have the option to switch different design elements such as header graphics. Just that little something extra to make your theme a bit more personal, and a little different from the next one.</p>
<h3><strong>2. Features</strong></h3>
<p>As our themes are not designed and built to any brief, we try to create themes which will suit a range of different briefs at once. This has lead to the themes being categorised into Personal Themes, Business Themes, Magazine/News Themes and Portfolio Themes. What you will notice however is that a lot of our themes could fit in to one, two or all of these categories at once. We feel that is testimony to our attention to detail, and commitment to cram in as many features into our themes as we feel necessary for it&#8217;s targeted usage.</p>
<p>Whatever your sites purpose, we have a theme for you, and that theme will possess all of the features you require. And you know what, if you disagree then tell us, and there&#8217;s a good chance we will be able to add it for you upon purchase.</p>
<h3><strong>3. Coding</strong></h3>
<p>The quality of code is a huge part of what makes not just a good WordPress Theme, but a good web site. Rather than just port our designs into a generic WordPress setup, every single one of them is coded from the ground up into a fully functional xhtml/css template. This allows us to make the code as stable and accessible as possible.</p>
<p>The first thing we do of course is ensure that the html is valid, we then go through, checking to see if any bloat can be eliminated while adding comments to the html where it might be necessary.</p>
<p>Next we test the template in various browsers including Internet Explorer, Firefox and Safari on both Mac and PC platforms. This ensures that when it comes to integrate the design into a WordPress theme, we will have a high quality, accessible and standards compliant start point. </p>
<h3><strong>4. WordPress Integration</strong></h3>
<p>Speaking of WordPress integration&#8230; We take our template and begin adding the WordPress features to it, which runs in a similar vein to the previous process. Code is sorted, commented and optimised to be as lightweight as possible. We also strongly favour hard-coding many of our features, which means less plugins for you to configure with the theme, and less bloat in general. All of this comes together to perfect the product and give you a theme of the highest quality possible.</p>
<h3><strong>5. Support</strong></h3>
<p>Your Theme Galaxy experience doesn&#8217;t end upon downloading your new theme. Rather than leave you out-in-the-cold we&#8217;ve provided detailed documentation on how to install and configure each of our themes. So if there&#8217;s a feature which you don&#8217;t understand, or want to change, the chances are that you will be able to do so by quickly reading the corresponding literature. And if you still cant figure something out, try our support forum where we are ready to take your call! (We believe our support documentations and general theme quality must be very high, as the support forum is practically silent)!</p>
<p>So there you have it. 5 reasons that your next Premium WordPress Theme should come from our Galaxy.</p>
<img src="http://feeds.feedburner.com/~r/themegalaxynet/~4/GWVC8ulVOPg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.themegalaxy.net/2009/02/why-choose-a-theme-galaxy-theme/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.themegalaxy.net/2009/02/why-choose-a-theme-galaxy-theme/</feedburner:origLink></item>
		<item>
		<title>New personal theme Vela!</title>
		<link>http://feedproxy.google.com/~r/themegalaxynet/~3/9ZoZSheBG0s/</link>
		<comments>http://www.themegalaxy.net/2009/02/new-personal-theme-vela/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 18:20:33 +0000</pubDate>
		<dc:creator>Dejan</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.themegalaxy.net/?p=318</guid>
		<description><![CDATA[<p>If you wonder what&#8217;s been keeping us busy lately here it is, new personal theme - <a href="http://www.themegalaxy.net/2009/02/vela/">Vela</a>! Vela comes with two different background images which you can easily switch in your theme option page, and of course you can make your own background. </p>
<p>So feel free to check it out and leave us a comment with your opinion! Also there&#8217;s&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>If you wonder what&#8217;s been keeping us busy lately here it is, new personal theme - <a href="http://www.themegalaxy.net/2009/02/vela/">Vela</a>! Vela comes with two different background images which you can easily switch in your theme option page, and of course you can make your own background. </p>
<p>So feel free to check it out and leave us a comment with your opinion! Also there&#8217;s another really cool theme coming up soon, so to stay updated <a href="http://feeds.feedburner.com/themegalaxynet">subscribe</a>! </p>
<img src="http://feeds.feedburner.com/~r/themegalaxynet/~4/9ZoZSheBG0s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.themegalaxy.net/2009/02/new-personal-theme-vela/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.themegalaxy.net/2009/02/new-personal-theme-vela/</feedburner:origLink></item>
		<item>
		<title>Vela</title>
		<link>http://feedproxy.google.com/~r/themegalaxynet/~3/mHBg-E7g92A/</link>
		<comments>http://www.themegalaxy.net/2009/02/vela/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 18:01:18 +0000</pubDate>
		<dc:creator>Dejan</dc:creator>
		
		<category><![CDATA[Personal Themes]]></category>

		<category><![CDATA[2 background images]]></category>

		<category><![CDATA[Featured Posts]]></category>

		<category><![CDATA[Socialize]]></category>

		<guid isPermaLink="false">http://www.themegalaxy.net/?p=311</guid>
		<description><![CDATA[<p>Vela&#8217;s content is subtly styled to promote readability and we&#8217;ve created a contemporary homepage which is split into two equal columns, one for posts and one for info. The beauty of Vela lies in its variety of background images and use of beautiful typography mixed with vibrant details like the dual column homepage and standout date tabs.</p>
<p>Vela&#8217;s beauty is in&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Vela&#8217;s content is subtly styled to promote readability and we&#8217;ve created a contemporary homepage which is split into two equal columns, one for posts and one for info. The beauty of Vela lies in its variety of background images and use of beautiful typography mixed with vibrant details like the dual column homepage and standout date tabs.</p>
<p>Vela&#8217;s beauty is in it&#8217;s simplicity. It&#8217;s a personal blog, and you will get all of the features necessary for run your weblog. As has been mentioned, Vela also comes with interchangeable header/footer images.</p>
<img src="http://feeds.feedburner.com/~r/themegalaxynet/~4/mHBg-E7g92A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.themegalaxy.net/2009/02/vela/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.themegalaxy.net/2009/02/vela/</feedburner:origLink></item>
		<item>
		<title>ThemeGalaxy new blog part</title>
		<link>http://feedproxy.google.com/~r/themegalaxynet/~3/M3YWpLdAm6o/</link>
		<comments>http://www.themegalaxy.net/2009/02/themegalaxy-new-blog-part/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 18:36:03 +0000</pubDate>
		<dc:creator>Dejan</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.themegalaxy.net/?p=297</guid>
		<description><![CDATA[<p>We&#8217;re really happy to announce new part of <a href="http://themegalaxy.net">ThemeGalaxy</a> - <a href="http://www.themegalaxy.net/blog/">Blog</a> where you will be able to find articles about WordPress development, tips, tricks and design articles focused also on WordPress. </p>
<p>So stay tuned articles are coming up, and if you haven&#8217;t already subscribe <a href="http://feeds.feedburner.com/themegalaxynet">RSS</a> or <a href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=2277244&#038;loc=en_US">email</a>!</p>
]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re really happy to announce new part of <a href="http://themegalaxy.net">ThemeGalaxy</a> - <a href="http://www.themegalaxy.net/blog/">Blog</a> where you will be able to find articles about WordPress development, tips, tricks and design articles focused also on WordPress. </p>
<p>So stay tuned articles are coming up, and if you haven&#8217;t already subscribe <a href="http://feeds.feedburner.com/themegalaxynet">RSS</a> or <a href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=2277244&#038;loc=en_US">email</a>!</p>
<img src="http://feeds.feedburner.com/~r/themegalaxynet/~4/M3YWpLdAm6o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.themegalaxy.net/2009/02/themegalaxy-new-blog-part/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.themegalaxy.net/2009/02/themegalaxy-new-blog-part/</feedburner:origLink></item>
	</channel>
</rss>
