<?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>Running A Website &#187; wordpress themes</title>
	<atom:link href="http://www.runningawebsite.com/tag/wordpress-themes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.runningawebsite.com</link>
	<description>Practical tips and advice for running a successful website!</description>
	<lastBuildDate>Wed, 18 Aug 2010 22:44:08 +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>WordPress Plugin Tip &#8211; MySQL Transactions with $wpdb</title>
		<link>http://www.runningawebsite.com/wordpress-plugin-tip-mysql-transactions-with-wpdb/</link>
		<comments>http://www.runningawebsite.com/wordpress-plugin-tip-mysql-transactions-with-wpdb/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 09:00:09 +0000</pubDate>
		<dc:creator>Dan Harrison</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://www.runningawebsite.com/?p=1000</guid>
		<description><![CDATA[This tip is more for WordPress theme and plugin developers. I&#8217;ve been working on a client project that required MySQL transactions, as I needed to perform multiple deletions on multiple tables, where the data was interdependent. Since I was writing a WordPress plugin, I wanted a way of doing a MySQL database transaction, using the ...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.runningawebsite.com%2Fwordpress-plugin-tip-mysql-transactions-with-wpdb%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.runningawebsite.com%2Fwordpress-plugin-tip-mysql-transactions-with-wpdb%2F&amp;source=DanJHarrison&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><img src="http://www.runningawebsite.com/wp-content/uploads/2010/05/Wordpress-Logo-Newspaper-Style-150x150.jpg" alt="" title="Wordpress Logo Newspaper Style" width="150" height="150" class="alignleft size-thumbnail wp-image-1002" /></p>
<p>This tip is more for WordPress theme and plugin developers. I&#8217;ve been working on a client project that required MySQL transactions, as I needed to perform multiple deletions on multiple tables, where the data was interdependent. Since I was writing a WordPress plugin, I wanted a way of doing a <strong>MySQL database transaction</strong>, <strong>using the WordPress database object</strong> <a href="http://codex.wordpress.org/Function_Reference/wpdb_Class">$wpdb</a>.</p>
<p><span id="more-1000"></span></p>
<p>When you create a connection to a MySQL database, you end up with a connection handle. This is essentially a way of communicating with the database down the same pipe. When you render a page in WordPress (front end or admin area), the <strong>$wpdb</strong> database object has already been initialised and opened up a connection to the database. Therefore we can recycle this database connection for our own needs. </p>
<p>The $wpdb object saves the database handle as <strong>$wpdb->dbh</strong> (<strong>dbh</strong> = <strong>D</strong>ata<strong>b</strong>ase <strong>H</strong>andle). Therefore we just use <strong>$wpdb->dbh</strong> in place of our normal database handle that we&#8217;d otherwise use in PHP.</p>
<h3>Code Example</h3>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>?php
<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// @ prefix used to suppress errors, but you should do your own</span>
<span style="color: #666666; font-style: italic;">// error checking by checking return values from each mysql_query()</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// Start Transaction</span>
<span style="color: #339933;">@</span><span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;BEGIN&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">dbh</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// Do some expensive/related queries here</span>
<span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;DELETE FROM table WHERE form_id = '1' &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;DELETE FROM data WHERE form_id = '1' &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$error</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #666666; font-style: italic;">// Error occured, don't save any changes</span>
    <span style="color: #339933;">@</span><span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;ROLLBACK&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">dbh</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
   <span style="color: #666666; font-style: italic;">// All ok, save the changes</span>
   <span style="color: #339933;">@</span><span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;COMMIT&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">dbh</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Based on this, you can do your usual PHP and WordPress magic to do what you need. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.runningawebsite.com/wordpress-plugin-tip-mysql-transactions-with-wpdb/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Running a Website – Getting Started</title>
		<link>http://www.runningawebsite.com/running-a-website-getting-started/</link>
		<comments>http://www.runningawebsite.com/running-a-website-getting-started/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 14:44:34 +0000</pubDate>
		<dc:creator>Dan Harrison</dc:creator>
				<category><![CDATA[Website Basics]]></category>
		<category><![CDATA[domains]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[webmaster tools]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://www.danharrison.co.uk/?p=634</guid>
		<description><![CDATA[If you&#8217;re looking to create a website, here are a few tips that are strongly recommended to help you get off to a great start. This page is frequently updated, so do bookmark it! Table of Contents Common Web Terms Registering a Domain Name Visitor Tracking Content Management Systems WordPress Resources Google Tools Building Backlinks ...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.runningawebsite.com%2Frunning-a-website-getting-started%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.runningawebsite.com%2Frunning-a-website-getting-started%2F&amp;source=DanJHarrison&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><img src="http://www.runningawebsite.com/wp-content/uploads/2009/10/toolbox-300x200.jpg" alt="" title="work tools" width="300" height="200" class="aligncenter size-medium wp-image-855" /></p>
<p>If you&#8217;re looking to create a website, here are a few tips that are strongly recommended to help you get off to a great start. This page is frequently updated, so do bookmark it!<span id="more-634"></span></p>
<h3>Table of Contents</h3>
<ul>
<li><a href="#terms">Common Web Terms</a></li>
<li><a href="#domains">Registering a Domain Name</a></li>
<li><a href="#tracking">Visitor Tracking</a></li>
<li><a href="#cms">Content Management Systems</a></li>
<li><a href="#wordpress">WordPress Resources</a></li>
<li><a href="#googletools">Google Tools</a></li>
<li><a href="#backlinks">Building Backlinks</a></li>
<li><a href="#networking">Growing a network</a></li>
<li><a href="#businesscards">Business Cards</a></li>
<li><a href="#logodesign">Logo Design</a></li>
<li><a href="#forums">Asking Questions and Getting Help</a></li>
</ul>
<p><a name="terms"></a><br />
<h3>Common Web Terms</h3>
<p>These are terms and acronyms that you&#8217;ll frequently come across whilst running a website.</p>
<dl>
<dt>URL – Uniform Resource Locator</dt>
<dd>String that identifies a specific resource on the web</dd>
<dd>e.g. http://news.bbc.co.uk/1/hi/uk/8054699.stm</dd>
<dt>HTTP &#8211; Hypertext Transfer Protocol</dt>
<dd>Way of transferring data from server to web browser</dd>
<dt>HTML – Hypertext Markup Language</dt>
<dd>A basic language defining structure and content of a web page</dd>
<dt>CSS – Cascading Style Sheets</dt>
<dd>A layer on top of HTML, adds formatting. e.g. fonts, colours, sizes, alignment, position</dd>
<dt>SSL – Secure Sockets Layer</dt>
<dd>Cryptographic protocols for securely transmitting data over the internet</dd>
<dt>PHP – Hypertext Preprocessor</dt>
<dd>Server-side programming language</dd>
<dt>AJAX – Asynchronous JavaScript and XML</dt>
<dd>A group of internet technologies for interactive web applications/pages/web sites</dd>
<dt>RSS &#8211; Really Simple Syndication</dt>
<dd>Format for delivering info from a regularly updated website</dd>
</dl>
<p>There are loads more common terms. Here&#8217;s where you can find out more:</p>
<ul>
<li><a href="http://www.w3schools.com/site/site_glossary.asp">W3Schools Web Glossary</a></li>
<li><a href="http://www.dailyblogtips.com/the-bloggers-glossary/">Daily Blog Tips &#8211; Bloggers Glossary</a></li>
<li><a href="http://www.smashingmagazine.com/2009/05/21/web-design-industry-jargon-glossary-and-resources/">Web Design Industry Jargon: Glossary and Resources</a> (very useful)</li>
</ul>
<p><a name="domains"></a><br />
<h3>Registering a Domain Name</h3>
<p>There are lots of tips and tricks for registering a domain name, so I&#8217;ve dedicated a whole site that gives you a great deal of <a href="http://www.puredomains.co.uk">UK domain name advice</a>, called <a href="http://www.puredomains.co.uk">Pure Domains</a>.</p>
<p><a name="tracking"></a><br />
<h3>Visitor Tracking</h3>
<p>You should track who visits your website. This allows you to determine how people are finding your site, and what keywords they use when searching for your site on the search engines.</p>
<ul>
<li><a href="https://www.google.com/analytics">Google Analytics</a> &#8211; probably the most useful free tracking tool. You get very detailed analysis of your traffic, more than you&#8217;ll need for quite a while. Excellent for beginners and advanced users.</li>
<li><a href="http://www.statcounter.com/">StatCounter</a> &#8211; a free tracking tool that gives you up-to-the-minute updates on who&#8217;s visiting your site. The analysis tools are not great, but it&#8217;s useful if you&#8217;ve got a massive peak in traffic and you want to know why. More suited to advanced users.</li>
</ul>
<p><a name="cms"></a><br />
<h3>Content Management Systems (CMS)</h3>
<p>Content Management Systems are a fancy way of saying:</p>
<blockquote><p>software that allows me to easily update the pages on my website without fiddling with the design aspects</p></blockquote>
<p>There are many free content management systems, since they&#8217;re developed on the open-source model.</p>
<ul>
<li><a href="#wordpress">WordPress</a> &#8211; My personal favourite. Primarily a blogging platform, but is perfectly suited any website where there are potentially lots of pages of information.</li>
<li><a href="http://drupal.org/">Drupal</a> &#8211; A popular CMS, but definitely aimed at users wanting more technical control over their site.</li>
<li><a href="http://www.joomla.org/">Joomla</a> &#8211; more of a portal-based CMS.</li>
<li><strong>Want more?</strong> You can try out lots of open-source content management systems for yourself at <a href="http://www.opensourcecms.com/">Open Source CMS</a></li>
</ul>
<p><a name="wordpress"></a><br />
<h3>WordPress Resources</h3>
<p>WordPress is an extremely customisable content management system (CMS), originally designed for running blogs, but is suitable for running any website that releases periodic information (such as news articles). WordPress is not suited to ecommerce, but you could use WordPress for pretty much any other type of website. WordPress allows you to have multiple users with different access who can contribute and help run the site.</p>
<ul>
<li><a href="http://www.wordpress.org">WordPress.org</a> &#8211; The organisation that develops WordPress, and where you can download it to install on your own web hosting.</li>
<li><a href="http://www.wordpress.com">WordPress.com</a> &#8211; Where you can create your own free WordPress blog without having your own web hosting. A great place to start if you&#8217;ve never used WordPress before.</li>
</ul>
<p><a name="googletools"></a><br />
<h3>Google Tools</h3>
<ul>
<li><a href="https://www.google.com/webmasters/tools">Google Webmaster Tools</a> &#8211; Allows you to submit a sitemap, which allows Google to find all of the pages on your website. It also provides statistics on how often your website is being crawled, and what position your site appears in Google search results for keywords.</li>
<li><a href="https://www.google.com/local/add/">Google Local Business Center</a> &#8211; Allows you to register your business address and contact details. When someone searches for a business like yours in your area, your details will typically be shown about the normal search results. Those details will be shown on a map with a pin pointing your business location. It&#8217;s free, and it&#8217;s a great way to get your business, club or society listed in Google.</li>
</ul>
<p><a name="backlinks"></a><br />
<h3>Building Backlinks</h3>
<p><strong>The Do&#8217;s</strong></p>
<ul>
<li>Do ask for links from related sites</li>
<li>Exchanges (ok if only a few)</li>
<li>One way links (ideal)</li>
<li>Do get involved in guest blogging</li>
<li>Do put your link in forum signatures</li>
<li>Do build up networks (on and offline)</li>
</ul>
<p><strong>The Don&#8217;ts</strong></p>
<ul>
<li>Don’t buy links</li>
<li>Don’t spam blogs/forums/etc</li>
<li>Avoid getting links from unrelated websites</li>
<li>Don’t ask for links on link pages</li>
<li>Don’t focus too much on directories</li>
<li>Don&#8217;t do too much of any 1 thing.</li>
</ul>
<p><strong>Recommended Resources</strong></p>
<p>The do&#8217;s and don&#8217;ts listed above are very high level. Here are some more detailed tips on link building.</p>
<ul>
<li><strong>SEOMoz &#8211; <a href="http://www.seomoz.org/blog/link-building-from-a-to-z">Link Building from A to Z</a></strong> &#8211; SEOMoz are highly respected in the SEO world. These tips are the current best practice tips.</li>
</ul>
<p><a name="networking"></a><br />
<h3>Growing a network</h3>
<p>Growing a network is one of the most important ways to promote your website. Find people with similar interests if you run a club or society. If you run a business, find a business networking group to expand your contacts. This is a great way to get visitors to your site, and sometimes a way for you to exchange links.</p>
<p><a name="businesscards"></a><br />
<h3>Business Cards</h3>
<p>If you run a society or a business, business cards are a simple and easy way to remind people of your website. I really recommend <a href="http://www.moo.com">Moo.com</a> for getting business cards done. They are pretty cheap (around £10 for 50 cards), and extremely high quality. The best aspect of their service is that you can choose up to 50 different images per order, which means you can create really interesting cards at no extra cost.</p>
<p><a name="logodesign"></a><br />
<h3>Logo Design</h3>
<p>Creating a logo that represents your website or business is a fundamental step that can help you establish your brand. Having a memorable logo also means your customers and visitors are more likely to remember you.</p>
<p>I&#8217;ve written a detailed article on <a href="http://www.runningawebsite.com/how-to-get-an-affordable-and-unique-logo-design/">how to get cheap logo graphics designed</a>, which I highly recommend if you need a new logo.</p>
<p><a name="forums"></a><br />
<h3>Asking Questions and Getting Help</h3>
<p>No doubt there will be questions that you have in the future, so here are two forums that I recommend where you can ask all kinds of website questions.</p>
<ul>
<li><a href="http://www.lovingtech.net/forums/">LovingTech Forums</a> &#8211; Forums dedicated to everything that&#8217;s webmaster related.</li>
<li><a href="http://www.ukbusinessforums.co.uk/forums/">UK Business Forums</a> &#8211; Forums dedicated to UK business, but they have very good Internet and IT boards.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.runningawebsite.com/running-a-website-getting-started/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I use Artisteer for creating WordPress Themes</title>
		<link>http://www.runningawebsite.com/why-i-use-artisteer-for-creating-wordpress-themes/</link>
		<comments>http://www.runningawebsite.com/why-i-use-artisteer-for-creating-wordpress-themes/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 09:00:43 +0000</pubDate>
		<dc:creator>Dan Harrison</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Artisteer]]></category>
		<category><![CDATA[popular]]></category>
		<category><![CDATA[template design]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[wordpress theme design]]></category>
		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://www.danharrison.co.uk/?p=350</guid>
		<description><![CDATA[This article is all about a template design tool called Artisteer. Artisteer is a essentially a design application that allows you to create your own great looking templates that can be used with Joomla, Drupal and WordPress without needing any technical skills or needing to know how to use Photoshop or Dreamweaver. When you&#8217;re creating ...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.runningawebsite.com%2Fwhy-i-use-artisteer-for-creating-wordpress-themes%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.runningawebsite.com%2Fwhy-i-use-artisteer-for-creating-wordpress-themes%2F&amp;source=DanJHarrison&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_351" class="wp-caption aligncenter" style="width: 310px"><img src="http://www.runningawebsite.com/wp-content/uploads/2009/07/Artisteer-Main-Image-300x207.png" alt="" title="Artisteer - Main Screen" width="300" height="207" class="size-medium wp-image-351" /><p class="wp-caption-text">Artiseer Startup Screen</p></div>
<p>This article is all about a template design tool called <a href="http://www.runningawebsite.com/recommends/artisteer" rel="nofollow">Artisteer</a>. Artisteer is a essentially a design application that allows you to create your own great looking templates that can be used with Joomla, Drupal and WordPress without needing any technical skills or needing to know how to use Photoshop or Dreamweaver.</p>
<p>When you&#8217;re creating lots of websites, coming up with unique designs all the time is hard work, particularly if you&#8217;re not artistic. Artisteer comes with loads of ready-made elements which you can blend together to create a great looking and unique theme. So for plenty more compelling reasons why its worth using Artisteer, keep reading!<span id="more-350"></span></p>
<div style="text-align: center; border: 0px;">
<a href="http://click.linksynergy.com/fs-bin/click?id=5X9ApXdPS40&#038;offerid=173903.10000041&#038;type=4&#038;subid=0" rel="nofollow"><img alt="Artisteer - CMS Template Generator" border="0" src="http://cdn.extensoft.com/Artisteer/banners/CMS/cms_468x60.gif"></a><img style="display: none;" border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=5X9ApXdPS40&#038;bids=173903.10000041&#038;type=4&#038;subid=0">
</div>
<h3>The Suggest Design Feature</h3>
<p>The most useful part of <a href="http://www.runningawebsite.com/recommends/artisteer" rel="nofollow">Artisteer</a> is that you can ask the software to suggest ideas for you. When you first open the Artisteer application, you&#8217;ll be presented with an initial design. If you look at the toolbar, you&#8217;ll see a <strong>Suggest Design</strong> button. Each time you click the <strong>Suggest Design</strong> button, Artisteer will generate a completely unique design with a random layout, background, header, colour scheme, menu, and more.</p>
<div id="attachment_361" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.runningawebsite.com/wp-content/uploads/2009/07/Artisteer-Toolbar.png"><img src="http://www.runningawebsite.com/wp-content/uploads/2009/07/Artisteer-Toolbar-300x57.png" alt="" title="Artisteer - Toolbar" width="300" height="57" class="size-medium wp-image-361" /></a><p class="wp-caption-text">The Ideas Toolbar</p></div>
<p>If you only want inspiration on just a single element, such as the header, then you just click on the <strong>Suggest Header</strong>, or <strong>Suggest Colour</strong> button to choose a random colour scheme. You can get a suggestion on virtually any part of the design just by clicking on one of the suggest buttons.</p>
<div id="attachment_367" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.runningawebsite.com/wp-content/uploads/2009/07/Artiseer-Start-Design.png"><img src="http://www.runningawebsite.com/wp-content/uploads/2009/07/Artiseer-Start-Design-300x197.png" alt="" title="Artiseer - Start Design" width="300" height="197" class="size-medium wp-image-367" /></a><p class="wp-caption-text">Initial Design</p></div>
<div id="attachment_366" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.runningawebsite.com/wp-content/uploads/2009/07/Artiseer-Random-Header.png"><img src="http://www.runningawebsite.com/wp-content/uploads/2009/07/Artiseer-Random-Header-300x197.png" alt="" title="Artiseer - Random Header" width="300" height="197" class="size-medium wp-image-366" /></a><p class="wp-caption-text">Random Header</p></div>
<div id="attachment_365" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.runningawebsite.com/wp-content/uploads/2009/07/Artiseer-Random-Colour.png"><img src="http://www.runningawebsite.com/wp-content/uploads/2009/07/Artiseer-Random-Colour-300x197.png" alt="" title="Artiseer - Random Colour" width="300" height="197" class="size-medium wp-image-365" /></a><p class="wp-caption-text">Random Colour</p></div>
<div id="attachment_370" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.runningawebsite.com/wp-content/uploads/2009/07/Artiseer-Random-Sheet-Colour-and-Layout.png"><img src="http://www.runningawebsite.com/wp-content/uploads/2009/07/Artiseer-Random-Sheet-Colour-and-Layout-300x197.png" alt="" title="Artiseer - Random Sheet, Colour and Layout" width="300" height="197" class="size-medium wp-image-370" /></a><p class="wp-caption-text">Random Sheet, Colour and Layout</p></div>
<div style="text-align: center; border: 0px;">
<a href="http://click.linksynergy.com/fs-bin/click?id=5X9ApXdPS40&#038;offerid=173903.10000001&#038;type=4&#038;subid=0" rel="nofollow"><img alt="Artisteer - WordPress Theme Generator" border="0" src="http://cdn.extensoft.com/Artisteer/banners/WP/wp_468x60.gif"></a><img style="display: none;" border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=5X9ApXdPS40&#038;bids=173903.10000001&#038;type=4&#038;subid=0">
</div>
<h3>Exporting Artisteer Designs</h3>
<p>Once you&#8217;ve created your ideal design, you can export your template into a WordPress theme, Joomla template, Drupal template, ASP.NET application, or CodeCharge Studio. You can also export your template into standard HTML.</p>
<p>For example, if you have Joomla and WordPress running on the same website, where Joomla is the main website and WordPress is used for the blog aspect, then you can get exactly the same look and feel on both websites without having to spend hours copying the template from one to the other.</p>
<h3>Quick Design Tweaks</h3>
<p>If you find you need to tweak an aspect of the design, such as the colour scheme, then it&#8217;s really quick to do so. You just adjust the colours in the scheme&#8217;s palette and apply the change to the whole design. Simple!</p>
<p>Making structural changes to a design, such as the column layout can easily consume lots of time. The advantage with <a href="http://www.runningawebsite.com/recommends/artisteer" rel="nofollow">Artisteer</a> is that you can change the layout of the design within seconds. If you make a change and hate it, you can simply click the <strong>Undo</strong> button to revert the change. I find that Artisteer is great for experimenting with layout ideas without spending ages doing the HTML and CSS code to try it out.</p>
<h3>Resale Rights</h3>
<p>What&#8217;s really interesting about the Artisteer software is that you have resale rights on all the generated templates (except for the photos used as foreground images in the header). So you are free to distribute the templates as you wish, giving them away or charging money for them!</p>
<p>Just to clarify, you are allowed to use the foreground images on any of your own sites or sites you create for your customers and clients. The licensing on the images just means you can&#8217;t redistribute them.</p>
<h3>Mac OS X Support</h3>
<p>Currently the Artisteer software is supported on Microsoft Windows only. However, there&#8217;s already a mature beta of Artisteer for Mac OS X that exists, and any licence you purchase for the Windows version will be valid for the Mac version too. I expect that a supported release of the Mac OS X version will be available late 2009.</p>
<h3>Conclusion</h3>
<p>If you create lots of websites, then you&#8217;ll find <a href="http://www.runningawebsite.com/recommends/artisteer" rel="nofollow">Artisteer</a> an affordable way to create lots of unique templates. Buying premium templates and themes can quickly add up to a lot of money. Artisteer costs just $49.95 for the basic version, and $129.95 for the standard version (the latter is what I use). That means a full licence of Artisteer costs between 1 to 3 times the cost of a one-off premium theme bought elsewhere.</p>
<p>So for an low cost and quick method of generated great looking templates, then <a href="http://www.runningawebsite.com/recommends/artisteer" rel="nofollow">do try Artisteer</a>. Artisteer does have a free trial, where the final designs are watermarked. I <strong>strongly recommend</strong> you download it and have a play with it, even if you don&#8217;t end up buying it.</p>
<div style="text-align: center; border: 0px;">
<a href="http://click.linksynergy.com/fs-bin/click?id=5X9ApXdPS40&#038;offerid=173903.10000034&#038;type=4&#038;subid=0" rel="nofollow"><img alt="Artisteer - Web Design Generator" border="0" src="http://cdn.extensoft.com/Artisteer/banners/WebDesign/WebDesign_336x280.gif"></a><img style="display: hidden;" border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=5X9ApXdPS40&#038;bids=173903.10000034&#038;type=4&#038;subid=0">
</div>
<p>The links in this article to Artisteer are affiliate links, which means I earn a small commission should anyone purchase Artisteer having clicked on one of the links in this article.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.runningawebsite.com/why-i-use-artisteer-for-creating-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>
