<?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>Website Design North Yorkshire &#187; SiteArt Website Design</title>
	<atom:link href="http://www.siteart.co.uk/feed" rel="self" type="application/rss+xml" />
	<link>http://www.siteart.co.uk</link>
	<description>Professional yet affordable website design</description>
	<lastBuildDate>Mon, 07 May 2012 00:13:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Redirect the index file to the root</title>
		<link>http://www.siteart.co.uk/redirect-the-index-file-to-the-root</link>
		<comments>http://www.siteart.co.uk/redirect-the-index-file-to-the-root#comments</comments>
		<pubDate>Wed, 25 Apr 2012 16:31:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design & Development]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://www.siteart.co.uk/?p=534</guid>
		<description><![CDATA[A quick piece of code to redirect your index file (i.e. index.html or index.php ) to your domain root using htaccess. So instead of having two url&#8217;s for the same page e.g. www.mydomain.com &#38; www.mydomain.com/index.php you just have one (www.mydomain.com). The Code: Options +FollowSymLinks RewriteCond %{THE_REQUEST} ^.*/index.php RewriteRule ^(.*)index.php$ http://www.domain.com/$1 [R=301,L] Put the above code in [...]]]></description>
			<content:encoded><![CDATA[<p>A quick piece of code to redirect your index file (i.e. index.html or index.php ) to your domain root using htaccess. So instead of having two url&#8217;s for the same page e.g. www.mydomain.com &amp; www.mydomain.com/index.php you just have one (www.mydomain.com).</p>
<h2>The Code:</h2>
<pre>Options +FollowSymLinks
RewriteCond %{THE_REQUEST} ^.*/index.php
RewriteRule ^(.*)index.php$ http://www.domain.com/$1 [R=301,L]</pre>
<p>Put the above code in your .htaccess file in your root folder (create one if you don&#8217;t have it using a text editor). Obviously change index.php to index.html, index.htm etc. depending on your setup.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.siteart.co.uk/redirect-the-index-file-to-the-root/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Hide The WordPress Editor For Custom Post Types</title>
		<link>http://www.siteart.co.uk/how-to-hide-the-wordpress-editor-for-custom-post-types</link>
		<comments>http://www.siteart.co.uk/how-to-hide-the-wordpress-editor-for-custom-post-types#comments</comments>
		<pubDate>Tue, 10 Apr 2012 21:59:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design & Development]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.siteart.co.uk/?p=520</guid>
		<description><![CDATA[Sometimes it can be useful to hide the editor for custom post types. For example if you only need to have text fields it can really clean up the admin page. I know you can specify the fields if you manually register your custom posts (see the WordPress codex). However if it is a custom post type [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes it can be useful to hide the editor for custom post types. For example if you only need to have text fields it can really clean up the admin page.</p>
<p>I know you can specify the fields if you manually register your custom posts (see the <a href="http://codex.wordpress.org/Function_Reference/register_post_type">WordPress codex</a>). However if it is a custom post type generated by a plugin etc. you can use some simple CSS to hide it.<span id="more-520"></span></p>
<h2>The Code:</h2>
<p>Add the following to your functions.php file:</p>
<pre>// HIDE THE EDITOR ON CERTAIN CUSTOM POST TYPES
add_action('admin_head', 'hide_editor');
function hide_editor() {
if(get_post_type() == 'CUSTOM_POST_NAME') {
?&gt;
&lt;style&gt;
#postdivrich { display:none; }
&lt;/style&gt;
&lt;?php
}
}</pre>
<h2>What it does:</h2>
<p>It simply checks to see if the admin page you are viewing is a specified custom post type, and if so it adds a small bit of CSS to the header to hide the editor (or any other piece of content you wish to hide).</p>
<p>I found the whole editor area was wrapped in a div with the ID &#8220;postdivrich&#8221; so that&#8217;s the area I chose to hide. If you want to hide something else just check the source code and find the id or class of whatever you want to remove.</p>
<h2>Alternate Method:</h2>
<p>You can also simply remove the entire editor using the &#8216;<a href="http://codex.wordpress.org/Function_Reference/remove_post_type_support">remove_post_type_support</a>&#8216;  function:</p>
<pre>// HIDE THE EDITOR ON CERTAIN CUSTOM POST TYPES
add_action('init', 'hide_editor');
function hide_editor() {
remove_post_type_support( 'CUSTOM_POST_NAME', 'editor' );
}</pre>
<p>However for most situations I was dealing with I still needed/wanted support for the TinyMCE visual editor for other multi-line fields. The &#8217;<a href="http://codex.wordpress.org/Function_Reference/remove_post_type_support">remove_post_type_support</a>&#8216; function disables WordPress&#8217;s built in support for the visual editor, whereas hiding via CSS does not.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.siteart.co.uk/how-to-hide-the-wordpress-editor-for-custom-post-types/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress &#8211; Display post excerpts in the sidebar</title>
		<link>http://www.siteart.co.uk/wordpress-display-post-excerpts-in-the-sidebar</link>
		<comments>http://www.siteart.co.uk/wordpress-display-post-excerpts-in-the-sidebar#comments</comments>
		<pubDate>Thu, 29 Mar 2012 00:18:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design & Development]]></category>

		<guid isPermaLink="false">http://www.siteart.co.uk/?p=493</guid>
		<description><![CDATA[I&#8217;m sure there are a few plugins which will accomplish this&#8230; but for those of you, who like me, don&#8217;t care for installing extraneous plugins to carry out relatively simply functions this simple snippet of code will display your recent posts excerpts. Simply put the following code in your &#8216;sidebar.php&#8217; template file (or anywhere else you wish to). The Code: [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-510" title="Display recent posts in the sidebar" src="http://www.siteart.co.uk/wp-content/uploads/2012/03/display-posts-sidebar.png" alt="Display recent posts in the sidebar" width="151" height="151" />I&#8217;m sure there are a few plugins which will accomplish this&#8230; but for those of you, who like me, don&#8217;t care for installing extraneous plugins to carry out relatively simply functions this simple snippet of code will display your recent posts excerpts.</p>
<p>Simply put the following code in your &#8216;sidebar.php&#8217; template file (or anywhere else you wish to).<span id="more-493"></span></p>
<h2>The Code:</h2>
<p>I have also placed the code here: <a href="http://snipt.org/ugghf0">http://snipt.org/ugghf0</a> (which preserves the code formatting better)</p>
<pre>&lt;!-- START LATEST POST EXCERPT --&gt;
&lt;div id="latest-post-excerpt"&gt;
  &lt;h3&gt;Latest News:&lt;/h3&gt;
  &lt;?php
  $recentPosts = new WP_Query();
  $recentPosts-&gt;query('showposts=1');
  ?&gt;
  &lt;?php while ($recentPosts-&gt;have_posts()) : $recentPosts-&gt;the_post(); ?&gt;
  &lt;h4&gt;
    &lt;a href="&lt;?php the_permalink() ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;
  &lt;/h4&gt;
  &lt;p&gt;
    &lt;em&gt;Posted on: &lt;?php the_time(get_option('date_format')); ?&gt;&lt;/em&gt;
  &lt;/p&gt;
  &lt;?php the_excerpt(); ?&gt;
  &lt;p&gt;&lt;a href="&lt;?php the_permalink() ?&gt;"&gt;&amp;raquo; Read more&lt;/a&gt;&lt;/p&gt;
  &lt;?php endwhile; ?&gt;
&lt;/div&gt;
&lt;!-- END LATEST POST EXCERPT --&gt;</pre>
<p>It will display the most recent post excerpt complete with post date underneath the title and a &#8216;read more&#8217; link (as pictured above).</p>
<p>If you would like to display more than one post simply edit <code>showposts=1</code> to whatever number you wish to display. I have formatted the above with header tags and paragraphs but you may wish to use an unordered list instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.siteart.co.uk/wordpress-display-post-excerpts-in-the-sidebar/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to customise WP e-Commerce Breadcrumbs</title>
		<link>http://www.siteart.co.uk/how-to-customise-edit-wp-e-commerce-breadcrumbs</link>
		<comments>http://www.siteart.co.uk/how-to-customise-edit-wp-e-commerce-breadcrumbs#comments</comments>
		<pubDate>Wed, 02 Nov 2011 22:07:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design & Development]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp e-commerce]]></category>

		<guid isPermaLink="false">http://www.siteart.co.uk/?p=445</guid>
		<description><![CDATA[I&#8217;m posting this here as there doesn&#8217;t seem to be any documentation on how to do this. The WP e-Commerce plugin is a decent shopping cart plugin for WordPress, unfortunately it&#8217;s documentation is rather poor! The breadcrumbs (once enabled via the settings in the admin panel) display a breadcrumb trail on your product pages. by [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m posting this here as there doesn&#8217;t seem to be any documentation on how to do this. The WP e-Commerce plugin is a decent shopping cart plugin for WordPress, unfortunately it&#8217;s documentation is rather poor!<span id="more-445"></span></p>
<p>The breadcrumbs (once enabled via the settings in the admin panel) display a breadcrumb trail on your product pages. by default is looks something like this:</p>
<p><em>Store Name » Products Page » Category Name » Product Name</em></p>
<p>To edit the output you need to edit the function in the theme files. The function is:</p>
<pre>&lt;?php wpsc_output_breadcrumbs (); ?&gt;</pre>
<p>You can pass an array of arguments to the function. Your options are:</p>
<pre>'before-breadcrumbs' =&gt; '&lt;div class="wpsc-breadcrumbs"&gt;',
'after-breadcrumbs'  =&gt; '&lt;/div&gt;',
'before-crumb'       =&gt; '',
'after-crumb'        =&gt; '',
'crumb-separator'    =&gt; ' &amp;raquo; ',
'show_home_page'     =&gt; true,
'show_products_page' =&gt; true,
'echo'               =&gt; true</pre>
<p>Now simply pass your arguments to the function, for example:</p>
<pre>&lt;?php wpsc_output_breadcrumbs ( array (
 'crumb-separator'    =&gt; ' &amp;gt; ',
 'show_home_page'     =&gt; false,   
) ); ?&gt;</pre>
<p>The above would display breadcrumbs with &#8216;&gt;&#8217; as a separator and removes the homepage:</p>
<p><em>Products Page &gt; Category Name &gt; Product Name</em></p>
<p>I also think its best to put your breadcrumb function in a separate file e.g &#8216;wpsc-breadcrumbs.php&#8217; then include it in each instance:</p>
<pre>&lt;? include "wpsc-breadcrumbs.php"; ?&gt;</pre>
<p>This way you don&#8217;t need to edit it multiple times should you decide to change something in the future.</p>
<p>I hope this can be of help to someon<em>e!<br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.siteart.co.uk/how-to-customise-edit-wp-e-commerce-breadcrumbs/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Choosing website colours</title>
		<link>http://www.siteart.co.uk/choosing-website-colours</link>
		<comments>http://www.siteart.co.uk/choosing-website-colours#comments</comments>
		<pubDate>Tue, 15 Feb 2011 18:55:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Design]]></category>
		<category><![CDATA[website colours]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://siteart.co.uk/client-testing/siteart/?p=359</guid>
		<description><![CDATA[The colours of your Web site are important because they will define the mood and emotions of your visitors as well as reflect your identity and image branding. It&#8217;s no accident that a lot of fast food restaurants use vivid red &#38; orange colours.  Studies have shown that these colours tend to stimulate appetite, and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-363" title="Choosing Website Colours" src="http://www.siteart.co.uk/wp-content/uploads/2011/03/website-colours.jpg" alt="Choosing Website Colours" />The colours of your Web site are important because they will define the mood and emotions of your visitors as well as reflect your identity and image branding.</p>
<p>It&#8217;s no accident that a lot of fast food restaurants use vivid red &amp; orange colours.  Studies have shown that these colours tend to stimulate appetite, and large corporations spend vast sums on colour research for marketing purposes.<span id="more-359"></span></p>
<h2>Choosing a Colour Scheme</h2>
<p>Where do you begin? Let’s look at different types of colour combinations.</p>
<h3><img class="alignright size-full wp-image-364" title="Monocromatic" src="http://www.siteart.co.uk/wp-content/uploads/2011/03/monocromatic.jpg" alt="Monocromatic" width="260" height="100" />Monochromatic</h3>
<p>Monochromatic colour schemes use variations of a single colour. Differing values of the chosen colour can be used to create the feel of different colours. Monochromatic colour schemes can feel harmonious and peaceful.</p>
<h3><img class="alignright size-full wp-image-370" title="Analogous" src="http://www.siteart.co.uk/wp-content/uploads/2011/03/analogous1.jpg" alt="Analogous" width="260" height="100" />Analogous</h3>
<p>Analogous colour combinations use colours that are related, but not the same, to create visually appealing schemes. A selection of blues and purples, or reds and oranges create an analogous colour scheme.</p>
<h3><img class="alignright size-full wp-image-366" title="Contrasting Colours" src="http://www.siteart.co.uk/wp-content/uploads/2011/03/contrasting-colours.jpg" alt="Contrasting Colours" width="260" height="100" />Contrasting colours</h3>
<p>Contrasting colours are complimentary and distinguishable. Colours that are opposites create contrasting colour schemes. For example&#8230; yellow and purple or red and green are contrasting colours. Contrasting colour schemes generally use a warm colour and a cool colour, such as orange &amp; blue.</p>
<h2>In summary&#8230;</h2>
<p>Colour choice is crucial. Sometimes the website will already have it colour scheme determined if the company already has one established, although generally it will need adapting for its web environment and many companies do not have any colour scheme in place, therefore the task is left to the designer.Thankfully, there are plenty of online resources from which to gleam inspiration and find that perfect colour scheme for your website.</p>
<h2>Resources:</h2>
<p>A multitude of resources related to colour picking, colour moods and more can be found by a quick Google. Here are a few of our favourites to get you started:</p>
<h3>Sample Colour Schemes:</h3>
<ul>
<li><a title="Colour Lovers" href="http://www.colourlovers.com" target="_blank">ColourLovers.com</a></li>
<li><a title="Kuler" href="http://kuler.adobe.com" target="_blank">Kuler from Adobe</a></li>
</ul>
<h3>Online tools to help you develop your own custom scheme:</h3>
<ul>
<li><a title="Color Scheme Designer" href="http://colorschemedesigner.com" target="_blank">ColorSchemeDesigner.com</a></li>
<li><a title="DigetDesigns.com" href="http://www.digitdesigns.com/colrPick/framePic.htm" target="_blank">DigitDesigns.com Color Picker<br />
</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.siteart.co.uk/choosing-website-colours/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to display browser specific widgets in WordPress</title>
		<link>http://www.siteart.co.uk/how-to-display-browser-specific-widgets-in-wordpress</link>
		<comments>http://www.siteart.co.uk/how-to-display-browser-specific-widgets-in-wordpress#comments</comments>
		<pubDate>Wed, 26 Jan 2011 23:14:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design & Development]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://siteart.co.uk/client-testing/siteart/?p=316</guid>
		<description><![CDATA[The huge array of plugins available for WordPress is one of it&#8217;s most appealing aspects. Unfortunately not all are cross-browser compatible especially with older versions of Internet Explorer. CSS can fix most visual problems however sometimes the javascript used by a plugin throws up an ugly error message, a common one in IE6 &#38; IE7 [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-322" title="Browsers" src="http://www.siteart.co.uk/wp-content/uploads/2011/01/browser-specific.jpg" alt="Browsers" width="270" height="172" />The huge array of plugins available for WordPress is one of it&#8217;s most appealing aspects. Unfortunately not all are cross-browser compatible especially with older versions of Internet Explorer.</p>
<p>CSS can fix most visual problems however sometimes the javascript used by a plugin throws up an ugly error message, a common one in IE6 &amp; IE7 versions is: &#8220;An error has occurred with a script on this page&#8221;. It prompts the user to choose whether to stop running all scripts or not.<span id="more-316"></span></p>
<h2>The scenario&#8230;</h2>
<p>You have just installed a brand spanking new plugin, everything looks great but then you decide to do some cross-browser compatibility checks. Lo and behold the older IE versions start spewing out error messages. Your options are:</p>
<ul>
<li>Ditch the plugin.</li>
<li>Try and debug the error&#8230; but the chances are it will take a while and fixing it may limit the functionality of the script.</li>
<li>Keep the plugin and curse the people still using IE6 or IE7 anyway.</li>
<li>Display a friendly alternative to your widget to the users of older browsers, yet still keep the entire functionality of the widget for everyone else.</li>
</ul>
<p>Thankfully by using a PHP browser detect plugin, it&#8217;s very easy to target specific browser versions in WordPress. I believe WordPress already has an inbuilt browser detect functionality, but unfortunately it only seems to be able to detect browser type and not version, e.g it can detect whether the browser is IE or Firefox, but not if its IE6 or IE8.</p>
<h2>The solution&#8230;</h2>
<p>Install the <a href="http://wordpress.org/extend/plugins/php-browser-detection/" target="_blank">PHP Browser Detection</a> plugin (Developed by <a href="http://martythornley.com/downloads/php-browser-detection/" target="_blank">Marty Thornley</a>). Open up your sidebar or other template file containing the widgetized area, and edit the call to grab the widget. You current markup might be:</p>
<pre>&lt;?php if (function_exists('dynamic_sidebar') &amp;&amp; dynamic_sidebar
('widgetarea1')) : else : ?&gt;
&lt;div class="pre-widget"&gt;
&lt;p&gt;&lt;strong&gt;Widgetized area 1&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This panel is active and ready for you to add some widgets via the
 WP Admin&lt;/p&gt;
&lt;/div&gt;
&lt;?php endif; ?&gt;</pre>
<p>This would display whatever widgets you place in your widget area 1 in the admin panel. To keep things simple for this process it would be advisable to only install one widget per area, so that each one can be specifically swapped out. Now to make a specifc browser version display a different widget you can use th following markup:</p>
<pre>&lt;?php if (is_lt_IE8()) : ?&gt;
&lt;?php if (function_exists('dynamic_sidebar') &amp;&amp; dynamic_sidebar
('widgetarea1')) : else : ?&gt;
&lt;div class="pre-widget"&gt;
&lt;p&gt;&lt;strong&gt;Widgetized area 1&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This panel is active and ready for you to add some widgets via the
WP Admin&lt;/p&gt;
&lt;/div&gt;
&lt;?php endif; ?&gt;
&lt;?php else : ?&gt;
&lt;?php if (function_exists('dynamic_sidebar') &amp;&amp; dynamic_sidebar
('widgetarea2')) : else : ?&gt;
&lt;div class="pre-widget"&gt;
&lt;p&gt;&lt;strong&gt;Widgetized area 2&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This panel is active and ready for you to add some widgets via the
 WP Admin&lt;/p&gt;
&lt;/div&gt;
&lt;?php endif; ?&gt;
&lt;?php endif; ?&gt;</pre>
<p>Using the code <code>&lt;?php if (is_lt_IE8()) : ?&gt;</code> all users of IE versions older than IE8 will see the widget displayed in the widget area 2, and all other browsers will see the widget you place in area1. You can choose a nice compatible version of the widget to display to the older browsers whilst retaining the full functionality for modern browsers. You don&#8217;t even need to replace it with another widget you could simply place some other content there.</p>
<p>Of course your not just limited to  targeting just browsers later than IE8, you can use <code>&lt;?php if ( is_IE6() ) { alternative content here }; ?&gt;</code> to target just IE6 for example, or you can even target mobile specific browsers e.g <code>&lt;?php if ( is_iphone($version) ) { </code><code>alternative content here</code><code> }; ?&gt;</code> will target iphones only. For a full list see the <a href="http://wordpress.org/extend/plugins/php-browser-detection/">plugin page</a>.</p>
<p>If you only have one widget area and need to add more for this simply add more dynamic sidebars to your functions.php file:</p>
<pre>register_sidebar(array(
'name' =&gt; 'widgetarea2',
'id'   =&gt; 'widgetarea2',
'description'   =&gt; 'This is the widgetized area2.',
'before_widget' =&gt; '&lt;div id="%1$s" class="widget %2$s"&gt;',
'after_widget'  =&gt; '&lt;/div&gt;',
'before_title'  =&gt; '&lt;h3&gt;',
'after_title'   =&gt; '&lt;/h3&gt;'
));</pre>
<p>Once done you can rest assured that all visitors to your website regardless of browser still receive a fulfilling experience free of glitches and error messages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.siteart.co.uk/how-to-display-browser-specific-widgets-in-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Local Business Listings… How to rank highly</title>
		<link>http://www.siteart.co.uk/google-local-business-listings-how-to-rank-highly</link>
		<comments>http://www.siteart.co.uk/google-local-business-listings-how-to-rank-highly#comments</comments>
		<pubDate>Sat, 08 Jan 2011 21:27:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Search Engine Optimisation & Internet Marketing]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google local Business Listings]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://siteart.co.uk/client-testing/siteart/?p=1</guid>
		<description><![CDATA[What is a Google Local Business Listing? Google Business Listings is basically Google&#8217;s version of the yellow pages. These listings appear on the top left hand side of Google search results, typically when a user types a service followed by place or city name. The image below shows the search results for the search phrase [...]]]></description>
			<content:encoded><![CDATA[<h2><img class="alignright size-full wp-image-6" title="Google local business listings" src="http://www.siteart.co.uk/wp-content/uploads/2010/12/google.jpg" alt="" width="318" height="105" />What is a Google Local Business<br />
Listing?</h2>
<p>Google Business Listings is basically Google&#8217;s version of the yellow pages. These listings appear on the top left hand side of Google search results, typically when a user types a <strong>service followed by place or city name</strong>. The image below shows the search results for the search phrase <em>&#8220;dry cleaners york&#8221;</em>. The search results page lists Local Business results at the top of the page alongside a map with a link and telephone number beside up to ten listings. Below that the regular search results are displayed.<span id="more-1"></span></p>
<p><img class="size-full wp-image-182 aligncenter" title="Google Local Business Search Results" src="http://www.siteart.co.uk/wp-content/uploads/2010/12/google-local-business-search-result.jpg" alt="" width="597" height="414" /></p>
<h2>How to add your business to Google Local Business Listings</h2>
<p>It’s quick, easy and best of all completely free! to add your business to the Local Business index. Simply go to <a title="Google Places" href="http://www.google.co.uk/lbc" target="_blank">www.google.co.uk/lbc </a>login  with a Google Account if you already have one or alternatively sign up  for one. Then all you have to do is submit your business details and  your business will be added to the Google Local Business directory. With  careful optimisation of the listing you can help yourself to rank highly  in the local business results, gaining a valuable top spot on the search result pages.</p>
<h2>How to rank highly in Google Local Business Listings…</h2>
<p>It appears the rank of your local business listing is determined by  the value and obviously relevance of your business listing page. Google  gives the top spots to those feeding the search engine’s ever   increasing need for content. Top tips for ranking highly:</p>
<ol class="titled">
<li><span><em>Photos</em> Add as many photos as you can and a company logo.</span></li>
<li><span><em>Multiple Reviews</em> It’s important  that these be  from real customers. You can not have too many. Don’t fake them either,  it’s easy to see. It&#8217;s quite likely the number of quality review will be the most important factor in how you rank compared to local competitors. Reviews show Google your business is active and lots of reviews more than likely means your business is an authority within it&#8217;s field.</span></li>
<li><span><em>Use Keywords in Company Description</em> Keep your company description rich with your business related keywords.</span></li>
<li><span><em>Use Keywords in Company Name</em> Don’t be deceptive by changing your company name, but if your keywords are in the  extended  business name or LLC, make sure this is the name in which you  register.</span></li>
<li><span><em>Add a Coupon</em> Google allows printable coupons to  be added by your listing.</span></li>
<li><span><em>Create links to the listing</em> Add a link from  your homepage to the listing and encourage current customers or website  visitors to review your company.</span></li>
<li><span><em>Add Videos</em> If your company already has videos on  YouTube you can place them right there on the page.</span></li>
</ol>
<p>If you manage to incorporate all of the the above you should be able  to guarantee yourself a top ten place in the local business search  results dependant on the level of competition from competitors.</p>
<p>To try and stay one step ahead of your rivals it would be advisable to continually update and add to the listing frequently, and continue to ask clients if they wouldn&#8217;t mind writing a quick review of your services. It&#8217;s useful to note it also seems to fetch reviews from various &#8220;Review&#8221; websites such as <a href="http://www.tripadvisor.co.uk/" target="_blank">TripAdvisor</a>,<a href="http://www.tripadvisor.co.uk/" target="_blank"> Qype</a> and more, so encouraging customers to review on those also will surely help.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.siteart.co.uk/google-local-business-listings-how-to-rank-highly/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What to consider when setting up an online shop</title>
		<link>http://www.siteart.co.uk/what-to-consider-when-setting-up-an-online-shop</link>
		<comments>http://www.siteart.co.uk/what-to-consider-when-setting-up-an-online-shop#comments</comments>
		<pubDate>Thu, 09 Dec 2010 13:31:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-Commerce & Online Shops]]></category>
		<category><![CDATA[E-commerce]]></category>
		<category><![CDATA[online shops]]></category>
		<category><![CDATA[selling online]]></category>

		<guid isPermaLink="false">http://siteart.co.uk/client-testing/siteart/?p=249</guid>
		<description><![CDATA[E-commerce plays an increasingly important role in the way in which products and services are purchased. E-commerce systems such as a website can be used to market and sell to customers, and to provide after-sales support. E-commerce can also be an important part of strengthening relationships and improving the efficiency of your dealings with suppliers [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-253" title="E-Commerce" src="http://www.siteart.co.uk/wp-content/uploads/2011/01/e-commerce.jpg" alt="" width="421" height="144" />E-commerce plays an increasingly important role in the way in which products and services are purchased.</p>
<p>E-commerce systems such as a website can be used to market and sell to customers, and to provide after-sales support. E-commerce can also be an important part of strengthening relationships and  improving the efficiency of your dealings with suppliers and other key  trading partners.<span id="more-249"></span></p>
<h2>Benefits of selling online</h2>
<p>Selling online has a number of advantages over selling by conventional methods, including:</p>
<ul>
<li>Relatively low set-up and operational costs. You don’t need to  pay shop assistants, rent high-street premises, or answer a lot of  pre-sales queries.</li>
<li>Quickly process orders &amp; reduce costs; Customer orders can automatically come straight into your order database, without the need for any manual data entry.</li>
<li>Reach a global audience.</li>
<li>Compete with larger businesses by being able to open 24 hours a day, seven days a week.</li>
<li>Receive payments quickly from online transactions.</li>
<li>Attract new customers who would not normally have been able to investigate your type of high-street outlet.</li>
<li>Enjoy the benefits of being able to easily view and compare shopping trends.</li>
<li>Use your online shop as a catalogue for existing customers.</li>
</ul>
<p>Online selling will work best for you if you have:</p>
<ul>
<li>Defined products or services that can be sold without human intervention in the sales process.</li>
<li>Fixed prices for all types of potential customers.</li>
<li>Products or services that can be delivered within a predictable time-frame.</li>
</ul>
<h2>Avoid online pitfalls</h2>
<p>Customers will be put off by:</p>
<ul>
<li>
<div>unprofessional designs</div>
</li>
<li>websites that appear unsecured or dishonest</li>
<li>
<div>out-of-date or incorrect information</div>
</li>
<li>
<div>difficult and confusing site navigation and purchasing processes</div>
</li>
<li>
<div>poor order fulfilment and late delivery</div>
</li>
<li>
<div>lack of customer support</div>
</li>
<li>
<div>lack of vital ordering information (payments accepted, returns, deliveries etc.)</div>
</li>
</ul>
<p>Remember – when selling through an online shop, you don’t normally have any personal contact with your customers, so you need to try harder to make sure they can find the information easily without your help. Clear product descriptions, prices and estimated delivery times will help them feel secure in purchasing from your website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.siteart.co.uk/what-to-consider-when-setting-up-an-online-shop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Effective tips for marketing your website</title>
		<link>http://www.siteart.co.uk/effective-tips-for-marketing-your-website</link>
		<comments>http://www.siteart.co.uk/effective-tips-for-marketing-your-website#comments</comments>
		<pubDate>Tue, 23 Nov 2010 13:01:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Search Engine Optimisation & Internet Marketing]]></category>
		<category><![CDATA[Internet Marketing]]></category>

		<guid isPermaLink="false">http://siteart.co.uk/client-testing/siteart/?p=240</guid>
		<description><![CDATA[You might have a fantastic website, but if customers don’t know about it, or where to find it, visitors and sales are likely to be very slow. To dramatically increase your chances of success it’s vital that you put some effort into marketing your business website, especially in an ever increasing competitive online market. Our [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-307" title="Marketing Your Website" src="http://www.siteart.co.uk/wp-content/uploads/2011/01/marketing.jpg" alt="Marketing Your Website" width="158" height="136" />You might have a fantastic website, but if customers don’t know about  it, or where to find it, visitors and sales are likely to be very slow.  To dramatically increase your chances of success it’s vital that you put  some effort into marketing your business website, especially in an ever increasing competitive online market.<span id="more-240"></span></p>
<h2>Our top tips are:</h2>
<ol class="titled">
<li><span><em>Create an online community or wealth of information: </em>Starting a forum or blog  on your website should encourage people to to repeat visit if they are  interested in the content. Once your website becomes established as a  valuable resource people will feel inclined to link to your site further  boosting search engine rankings.</span></li>
<li><span><em>Blog elsewhere:</em> Write blogs or articles on other  websites, therefore publishing your name and your business into the  wider public domain. It’s important to make sure that your articles are  original and resourceful otherwise they won’t be read.</span></li>
<li><span><em>SEO:</em> Even the smallest of businesses will make gains  though improving their search engine rankings. You do need to be  patient to see results, but by following good standard SEO practices you will make progress against competitors, and increase the quality and awareness of your brand identity.</span></li>
<li><span><em>Engage in Social &amp; business networking:</em> Add your business to the popular social networks such as <a href="http://www.facebook.com" target="_blank">facebook</a> and <a href="http://twitter.com" target="_blank">twitter</a>, create a link back to your website and encourage people to follow your online business. Maintain regular updates with useful or interesting information for your followers, and perhaps reward them with unique special offers from time to time. Business orientated social networks such as <a title="LinkedIn" href="http://www.linkedin.com" target="_blank">LinkedIn</a> and <a title="XING" href="http://www.xing.com" target="_blank">XING</a> are a useful way to interact globally with related professionals within your field.</span></li>
<li><span><em>Directories: </em>Relevant and reputable directories can  increase there likelihood of your business being found by potential  customers. These could be business directories, or interest and  subject-based directories. You should also try to boost traffic by  linking to other relevant sites.</span></li>
<li><span><em>Advertising:</em> Like any other form of business you  should expect to set aside a budget for advertising your website.  Resources such as Google Adwords can be very helpful. Yes, you have to  pay but the cost can be low and it could be the key to kick-starting a  profitable business. You are guaranteeing exposure and you can also  carefully measure how successful the campaigns are by using analytical  tools.</span></li>
<li><span><em>Good, old-fashioned marketing:</em> Websites don’t have  to be marketed online only. Business cards, leaflets, posters, van-side  promotion, headed notepaper and even word of mouth can also work  wonders. Genereally such mediums are not overly costly and can be quick to  distribute.</span></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.siteart.co.uk/effective-tips-for-marketing-your-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Try before you install with opensource CMS</title>
		<link>http://www.siteart.co.uk/try-before-you-install-with-opensource-cms</link>
		<comments>http://www.siteart.co.uk/try-before-you-install-with-opensource-cms#comments</comments>
		<pubDate>Tue, 12 Oct 2010 21:39:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Content Management Systems (CMS)]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Content Management Systems]]></category>

		<guid isPermaLink="false">http://siteart.co.uk/client-testing/siteart/?p=232</guid>
		<description><![CDATA[If you have ever searched Google regarding content management systems, chances are you have already stumbled across www.opensourceCMS.com. “Founded in 2002, opensourceCMS.com is the pre-eminent website concerning open source content management systems. The only website in the world that provides almost 200 demos of open source content management systems.” OpensourceCMS.com is a handy website that [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-233 alignright" title="OpenSource CMS" src="http://www.siteart.co.uk/wp-content/uploads/2011/01/open-source-cms.jpg" alt="" width="160" height="160" />If you have ever searched Google regarding content management systems, chances are you have already stumbled across www.opensourceCMS.com.</p>
<p><em>“Founded in 2002, opensourceCMS.com is the pre-eminent website concerning open source content management systems. The only website in the world that provides almost 200 demos of open source content management systems.”<span id="more-232"></span><br />
</em></p>
<p>OpensourceCMS.com is a handy website that lets you try over 300 CMS solutions before you decide whether you want to install it or not. Its a good chance to have a play, or just see if you like the features and  control panel of a new CMS you’ve been hearing about.</p>
<p>Take a look at <a href="http://www.opensourcecms.com/" target="_blank">www.opensourcecms.com</a><em><br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.siteart.co.uk/try-before-you-install-with-opensource-cms/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

