<?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>Benjamin Ashcroft &#187; Web Design</title>
	<atom:link href="http://www.benjaminashcroft.com/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.benjaminashcroft.com</link>
	<description>Manchester based web developer and designer of high quality websites, printed matter and moving images.</description>
	<lastBuildDate>Thu, 24 Jun 2010 13:33:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>New Select Property website is live!</title>
		<link>http://www.benjaminashcroft.com/web-design/new-select-property/.</link>
		<comments>http://www.benjaminashcroft.com/web-design/new-select-property/.#comments</comments>
		<pubDate>Mon, 23 Nov 2009 15:35:24 +0000</pubDate>
		<dc:creator>Benjash</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.benjaminashcroft.com/?p=182</guid>
		<description><![CDATA[After a very busy month or so i&#8217;m happy to announce the launch of the new Select Property website. Specialising in property in Dubai and overseas investment properties. This has been a massive project, mainly consolidating the thousands of pages the old SP site with the old Dubai Select site. Our site is now powered [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.selectproperty.com"><img src="http://www.benjaminashcroft.com/wp-content/uploads/2009/11/Picture-141-300x216.png" alt="Picture 14" title="Picture 14" width="300" height="216" class="alignright size-medium wp-image-183" /></a><br />
 After a very busy month or so i&#8217;m happy to announce the launch of the new <a href="http://www.selectproperty.com">Select Property</a> website. Specialising in <a href="http://www.selectproperty.com">property in Dubai</a> and <a href="http://www.selectproperty.com/invest/">overseas investment properties</a>.  </p>
<p>This has been a massive project, mainly consolidating the thousands of pages the old SP site with the old <strong>Dubai Select</strong> site.<br />
Our site is now powered by WordPress  and has over 2700 seo freindly, W3C validating pages. </p>
<p>Plus some annoying fireworks. At some point when have time I have will write a case study report on the project. For now just take a look. </p>
<p><a  hreflang="en" href="http://www.selectproperty.com/invest/">Investment Property Abroad</a><br />
<a  hreflang="de" href="http://de.selectproperty.com">Dubai Immobilien</a><br />
<a  hreflang="en" href="http://www.selectproperty.com">Dubai Property</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.benjaminashcroft.com/web-design/new-select-property/./feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordress sub-menu navigation</title>
		<link>http://www.benjaminashcroft.com/web-design/wordress-sub-menu-navigation/.</link>
		<comments>http://www.benjaminashcroft.com/web-design/wordress-sub-menu-navigation/.#comments</comments>
		<pubDate>Tue, 08 Sep 2009 16:29:00 +0000</pubDate>
		<dc:creator>Benjash</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[get_post_ancestors()]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Section]]></category>
		<category><![CDATA[Sibling]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[wp_list_pages]]></category>

		<guid isPermaLink="false">http://www.benjaminashcroft.com/?p=153</guid>
		<description><![CDATA[Been developing a solution for a new corporate site in development. Utilizing WordPress as a fully blown CMS, a major priority was developing a dynamic sub navigation solution within the theme. I found loads of sub menu and section navigation plug-ins but there where all a little too complicated. Additionally I came up against two [...]]]></description>
			<content:encoded><![CDATA[<p>Been developing a solution for a new corporate site in development. Utilizing WordPress as a fully blown CMS, a major priority was developing a dynamic sub navigation solution within the theme. I found loads of sub menu and section navigation plug-ins but there where all a little too complicated.</p>
<p>Additionally I came up against two other issues:</p>
<ol>
<li>Finding out the depth of the page within the hierarchy of the site.</li>
<li>Control over whether the menu displayed  &#8220;sibling&#8221; links or &#8220;children&#8221; links.</li>
</ol>
<p>A lot of the existing tutorials are great, but their implementation is very broad. The <strong>&#8220;wp_list_pages&#8221;</strong> function within WordPress is great, very flexible and well documented. Yet swapping between section or child menu based on page depth seemed to be a dead end. Until I read this <a href="http://www.cmurrayconsulting.com/wordpress-tips/current-section-navigation-wordpress/">great tutorial by </a><a title="Posts by Jake Goldman" href="http://www.cmurrayconsulting.com/author/jgoldman/">Jake Goldman</a> talking about a hardly mentioned but great function, called <strong>&#8220;get_post_ancestors();&#8221;.</strong> This cool function will create an array of the current posts ancestors. Using this I expanded on Jake Goldman&#8217;s great article, adding a little more finite control over the submenu.</p>
<h2>Page depth and sibling / child code for WordPress</h2>
<p>Heres the PHP code I dropped into the sidebar.php of my WordPress theme. Hopefully should be of use. My example displays the sibling/ section links into the navigation. While displaying the child links for all the pages higher in the hiarachy.  Hope this code is usefull.</p>
<pre name="code" class="php">

#Creates Array from the pages ancestors post ID's
$post_ancestors = get_post_ancestors($post);

#Un-comment array for guidence
#print_r($post_ancestors);

#Gets the base post id
$top_page = array_pop($post_ancestors);

#Get post depth
#After a certain depth into the page hierarchy the page displays sibling menu items in sub menu.

if (count($post_ancestors) &lt;= 1) {
#Shallow Link Display Children
$children = wp_list_pages('title_li=&amp;child_of='.$post-&gt;ID.'&amp;echo=0&amp;depth=1');

 } elseif (count($post_ancestors) &gt;= 2) {

#Deep Link Display Siblings or Section Links
$children = wp_list_pages('title_li=&amp;child_of='.$post-&gt;post_parent.'&amp;echo=0&amp;depth=1');

} elseif (is_page()) {

#Default Display Children
$children = wp_list_pages('title_li=&amp;child_of='.$post-&gt;ID.'&amp;echo=0&amp;depth=1');

} 

if ($children) {
#Outputs the submenu if it exists
echo('
<ul>Sub Menu');
echo($children);
echo('</ul>

');
</pre>
<h3>Example of the hierarchy of the site</h3>
<ul><a class="post-edit-link" title="Edit post" href="http://ved.selectproperty.com/wp-admin/page.php?action=edit&amp;post=495"></a></p>
<li class="page_item page-item-489 current_page_ancestor current_page_parent">Locations
<ul>
<li class="page_item page-item-490">Manchester</li>
<li class="page_item page-item-497">Dubai</li>
<li class="page_item page-item-499">Turkey</li>
<li class="page_item page-item-495 current_page_item">Dubai Marina
<ul>
<li class="page_item page-item-534">Botanica</li>
<li class="page_item page-item-511">The Torch
<ul>
<li class="page_item page-item-516">Overview</li>
<li class="page_item page-item-518">Facilities</li>
<li class="page_item page-item-520">Properties
<ul>
<li class="page_item page-item-524">2 Bedroom Apartment</li>
</ul>
</li>
<li class="page_item page-item-522">Payment Plans</li>
<li class="page_item page-item-527">FAQ’s</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.benjaminashcroft.com/web-design/wordress-sub-menu-navigation/./feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Datatables slide and select property finder</title>
		<link>http://www.benjaminashcroft.com/web-design/datatables-slide-and-select-property-finder/.</link>
		<comments>http://www.benjaminashcroft.com/web-design/datatables-slide-and-select-property-finder/.#comments</comments>
		<pubDate>Wed, 02 Sep 2009 23:03:05 +0000</pubDate>
		<dc:creator>Benjash</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[datatables]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery ui]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[slider ui]]></category>
		<category><![CDATA[tables]]></category>
		<category><![CDATA[wearehome]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.benjaminashcroft.com/?p=130</guid>
		<description><![CDATA[Had a very busy few weeks learning how to use Mysql, PHP, XML and jquery. To create a dynamic property listing page with a dynamic slider. Have a play here. Makes extensive use of the Jquery Slider ui and Datatables plugin. Feeding off my first Mysql database, that in turn is populated by an xml [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wearehome.com/fractional-ownership-slider.php"><img src="http://www.benjaminashcroft.com/wp-content/uploads/2009/09/Picture-2-299x191.png" alt="Slide and select" title="Slide and select" width="299" height="191" class="alignleft size-medium wp-image-131" /> </a> Had a very busy few weeks learning how to use Mysql, PHP, XML and jquery. To create a dynamic property listing page with a dynamic slider. Have a play <a href="http://www.wearehome.com/fractional-ownership-slider.php">here</a>. </p>
<p>Makes extensive use of the Jquery Slider ui and <a href="http://www.datatables.net/">Datatables</a> plugin.  Feeding off my first Mysql database, that in turn is populated by an xml file. All ive got to do now is tie the rest of the site into the new pricing database.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benjaminashcroft.com/web-design/datatables-slide-and-select-property-finder/./feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What to do if you find your website hacked</title>
		<link>http://www.benjaminashcroft.com/web-design/website-hacked/.</link>
		<comments>http://www.benjaminashcroft.com/web-design/website-hacked/.#comments</comments>
		<pubDate>Wed, 02 Sep 2009 22:47:48 +0000</pubDate>
		<dc:creator>Benjash</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Exploit]]></category>
		<category><![CDATA[hacked]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[IP range]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[sql injection]]></category>
		<category><![CDATA[xss injection]]></category>

		<guid isPermaLink="false">http://www.benjaminashcroft.com/?p=125</guid>
		<description><![CDATA[Theres nothing like waking up, checking your businesses website. To discover its only been attacked by some website hacker. I recently found myself in that exact situation, so heres my one stop guide of how to cope with it. Once you know you&#8217;ve been hacked of course. Dont Panic. Your website is now a crime [...]]]></description>
			<content:encoded><![CDATA[<p>Theres nothing like waking up, checking your businesses website. To discover its only been attacked by some <strong>website hacker</strong>. I recently found myself in that exact situation, so heres my one stop guide of how to cope with it. Once you know you&#8217;ve been hacked of course.</p>
<ol>
<li><strong>Dont Panic.</strong> Your website is now a crime scene. Its vital you preserve all the evidence of whats happened to your site. So you can stop it again.  </li>
<li><strong>Check your other sites.</strong> if you share a number of websites on one hosting package its highly likely they where exploited.</li>
<li><strong>Take the hacked site down</strong> and put a maintenance page up. The last thing you want to do is scare all your customers with your lack of security</li>
<li><strong>Change all your passwords</strong> It could be as simple as this, reset all your account passwords. By that I mean EVERYTHING. FTP, MYSQL, windows login, whatever just make sure the new ones are long hard and complicated. Check who has access to the site and that your sharing settings are secure on your own computer.</li>
<li><strong>Record everything</strong> Take note of what and when anything changed. Keep a record of the specific times. This will help you clarify what method you where hacked and stop them again. Keep a copy of the pages the hackers exploited or uploaded. As well as any PHP error logs or FTP logs.</li>
<li><strong>Scan for viruses and malware.</strong> They might of infected you with malware, a spider, viruses or any number of evils. Better safe than sorry.</li>
<li><strong>Get Backup</strong> If your with a good host, they should keep a backup of your site. Usually they take a snapshot of your site nightly so it could be simple case of pressing reset. If your not so lucky, better dig out all your own backups. </li>
<li><strong>Investigate</strong>, if the hacker left his tag or link on your site. Carefully inspect it, google it. Another trick is to google your website link and words like &#8220;Defaced&#8221; or &#8220;hacked&#8221;. This will usually garner a wealth of information that will indicate the exact exploit the hackers used to get into your site.  </li>
<li><strong>Dont get even </strong> lets face it your gonna be pissed but your probally best letting it go. You dont want to upset a hornets nest of hackers after all.</li>
<li><strong>Scan for vunerabilities</strong> theres a number of great web vulnerability scanners out there. I strongly suggest  <a href="http://www.acunetix.com/vulnerability-scanner/">Acunetix vunerability scanner</a></li>
<li><strong>learn how to hack websites</strong> in order to prevent it happening your going to have to learn how to hack your website.</li>
<li><strong>Fix it, delete it, block it</strong> if you cant secure it, limit the access. Your never going to be 100% hack proof but you can make it harder. Finally, If you know what their IP range is, ban them. Maybe even a countries ip range temporarily if it doesnt effect business too much. Better safe than sorry, good luck!</li>
</ol>
<p>Once i know for sure what happened with my websites I will post about how I hope i prevented it. Fingers Crossed.</p>
<p>For now a great place to start researching is <a href="http://perishablepress.com/press/2007/06/28/ultimate-htaccess-blacklist/">perishablepress</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.benjaminashcroft.com/web-design/website-hacked/./feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why do i have a bad feeling about the Google Wave logo?</title>
		<link>http://www.benjaminashcroft.com/web-design/google-wave-logo/.</link>
		<comments>http://www.benjaminashcroft.com/web-design/google-wave-logo/.#comments</comments>
		<pubDate>Wed, 22 Jul 2009 23:07:49 +0000</pubDate>
		<dc:creator>Benjash</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Google Wave]]></category>
		<category><![CDATA[Logo]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Opensource]]></category>

		<guid isPermaLink="false">http://www.benjaminashcroft.com/?p=116</guid>
		<description><![CDATA[The similarity between Microsoft and Google seem to grow everyday, but only after seeing this have I started to get really worried. Both started off with great simplistic products&#8230; and we all have our feelings about where Microsoft went after that. Yet will Google go the same way? Hopefully not and the main thing that [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.benjaminashcroft.com/wp-content/uploads/2009/07/simples.jpg" alt="I've got a bad feeling about the similarity of the google wave logo and microsoft windows"  width="540" class="alignleft size-full wp-image-121" /><br />
The similarity between Microsoft and Google seem to grow everyday, but only after seeing this have I started to get really worried.</p>
<p>Both started off with great simplistic products&#8230;  and we all have our feelings about where Microsoft went after that. Yet will Google go the same way? Hopefully not and the main thing that reassures me is the opensource nature of the Google Wave. </p>
<p>I want to play with it!!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benjaminashcroft.com/web-design/google-wave-logo/./feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Editor that supports HTML 5 &amp; CSS 3</title>
		<link>http://www.benjaminashcroft.com/web-design/editor-that-supports-html-5-css-3/.</link>
		<comments>http://www.benjaminashcroft.com/web-design/editor-that-supports-html-5-css-3/.#comments</comments>
		<pubDate>Mon, 20 Jul 2009 23:01:32 +0000</pubDate>
		<dc:creator>Benjash</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS 3]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Hand Coding]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Notepad]]></category>
		<category><![CDATA[Smultron]]></category>
		<category><![CDATA[Syntax]]></category>

		<guid isPermaLink="false">http://www.benjaminashcroft.com/?p=108</guid>
		<description><![CDATA[Lots of people are wondering when Dreamweaver and others of that ilk will update to support HTML5 and CSS3. Sadly not for a while, if your riding the crest of the latest and greatest in web the commercial applications are not going to being cutting edge. Luckily neither HTML5 or CSS3 are going to be [...]]]></description>
			<content:encoded><![CDATA[<p>Lots of people are wondering when Dreamweaver and others of that ilk will update to support HTML5 and CSS3.</p>
<p>Sadly not for a while, if your riding the crest of the latest and greatest in web the commercial applications are not going to being cutting edge. Luckily neither HTML5 or CSS3 are going to be full implemented for a long time. Considering its only supported by minimal browsers.</p>
<p>Your best bet is cracking open you text editer and getting freindly with the source.<br />
My weapon of choice is <a href="http://tuppis.com/smultron/">Smultron</a> its a great little mac text editor with syntax highlighting. A Good place to start to learn HTML 5 would be <a href="http://www.w3schools.com/tags/html5.asp">here</a>.</p>
<p> <script src="http://static.ak.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_GB" type="text/javascript"></script><script type="text/javascript">FB.init("f1d016e6d7bdda3cbbd50d1b28c359ee");</script><fb:fan profile_id="115765761158" stream="1" connections="" width="500"></fb:fan>
<div style="font-size:8px; padding-left:10px"><a href="http://www.facebook.com/pages/Hand-Coding/115765761158">Hand Coding</a> on Facebook</div>
]]></content:encoded>
			<wfw:commentRss>http://www.benjaminashcroft.com/web-design/editor-that-supports-html-5-css-3/./feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Flexible Automatic Jquery gallery.</title>
		<link>http://www.benjaminashcroft.com/web-design/a-flexible-automatic-jquery-gallery/.</link>
		<comments>http://www.benjaminashcroft.com/web-design/a-flexible-automatic-jquery-gallery/.#comments</comments>
		<pubDate>Mon, 20 Jul 2009 16:35:10 +0000</pubDate>
		<dc:creator>Benjash</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[easing]]></category>
		<category><![CDATA[fancybox]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[lightbox]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[pikachoose]]></category>
		<category><![CDATA[slider.js]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://www.benjaminashcroft.com/?p=91</guid>
		<description><![CDATA[I&#8217;ve been working on site recently which features a number of galleries in lightboxes. Using the fancybox lightbox plugin it launches an iframe with the gallery. I highly recomend the Pikachoose gallery simple for its amazing simplicity and ease of use. Easy to style and adapt to my own needs, including a inbuilt carousel feature [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on site recently which features a number of galleries in lightboxes. Using the fancybox lightbox plugin it launches an iframe with the gallery. </p>
<p>I highly recomend the <a href="http://pikachoose.com/demo/">Pikachoose</a> gallery simple for its amazing simplicity and ease of use. Easy to style and adapt to my own needs, including a inbuilt carousel feature utilizing slider.js.<em> I&#8217;ll post a link to an example lightbox gallery soon.</em></p>
<h2>List images from a folder automatically via PHP</h2>
<p>Heres a little code snippet I used to list all the images in a folder.</p>
<pre name="code" class="php">

// the directory, where your images are stored
$imgdir = '/images/'; 

// list of filetypes you
$allowed_types = array('png','jpg','jpeg','gif'); want to show

$dimg = opendir($imgdir);
while($imgfile = readdir($dimg))
{
 if(in_array(strtolower(substr($imgfile,-3)),$allowed_types))
 {
  $a_img[] = $imgfile;
  sort($a_img);
  reset ($a_img);
 }
}
// total image number
$totimg = count($a_img); 

for($x=0; $x < $totimg; $x++)
{
 $size = getimagesize($imgdir.'/'.$a_img[$x]);

 // do whatever
 $halfwidth = ceil($size[0]/2);
 $halfheight = ceil($size[1]/2);
 echo '
<li><img src="'.$imgdir.''.$a_img[$x].'"/></a></li>

';
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.benjaminashcroft.com/web-design/a-flexible-automatic-jquery-gallery/./feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ranking 6th for the term &#8220;labourus&#8221;</title>
		<link>http://www.benjaminashcroft.com/web-design/ranking-6th-for-the-term-labourus/.</link>
		<comments>http://www.benjaminashcroft.com/web-design/ranking-6th-for-the-term-labourus/.#comments</comments>
		<pubDate>Fri, 17 Jul 2009 11:41:21 +0000</pubDate>
		<dc:creator>Benjash</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[labourus]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Weird]]></category>

		<guid isPermaLink="false">http://www.benjaminashcroft.com/?p=68</guid>
		<description><![CDATA[The Weirdness of the the internet amazes me, for some strange reason my highest ranking term is &#8220;labourus&#8221;. Great when google points out your spelling mistakes. Just for you google peoples &#8220;Labourus&#8221; is spelt labourious. Does that reflect bad on me? I mean I do a lot labourious tasks&#8230;.]]></description>
			<content:encoded><![CDATA[<p>The Weirdness of the the internet amazes me, for some strange reason my highest ranking term is &#8220;labourus&#8221;. Great when google points out your spelling mistakes.</p>
<p>Just for you google peoples &#8220;Labourus&#8221; is spelt  <strong>labourious</strong>.<br />
Does that reflect bad on me? I mean I do a lot labourious tasks&#8230;. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.benjaminashcroft.com/web-design/ranking-6th-for-the-term-labourus/./feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SEO freindly font replacement = Pretty Letters</title>
		<link>http://www.benjaminashcroft.com/web-design/seo-freindly-font-replacement-with-out-the-flash/.</link>
		<comments>http://www.benjaminashcroft.com/web-design/seo-freindly-font-replacement-with-out-the-flash/.#comments</comments>
		<pubDate>Tue, 30 Jun 2009 19:54:08 +0000</pubDate>
		<dc:creator>Benjash</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Canvas]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Cufon]]></category>
		<category><![CDATA[Font Generator]]></category>
		<category><![CDATA[Font Replacement]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[SEO Freindly]]></category>
		<category><![CDATA[Sifr]]></category>
		<category><![CDATA[Text]]></category>
		<category><![CDATA[Typography]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.benjaminashcroft.com/?p=53</guid>
		<description><![CDATA[In the past, when i&#8217;ve needed to expand from the normal range of web fonts. Ive relied on Sifr to replacement the web text with nice pretty flashy fonts. The problem was this solution was a bit fiddly and had to rely on flash. Leaving me with a labourus task of manually image-replacing headers and [...]]]></description>
			<content:encoded><![CDATA[<p>In the past, when i&#8217;ve needed to expand from the normal range of web fonts. Ive relied on <a href="http://www.mikeindustries.com/blog/sifr/">Sifr</a> to replacement the web text with nice pretty flashy fonts. The problem was this solution was a bit fiddly and had to rely on flash. Leaving me with a labourus task of manually image-replacing  headers and so on, with my powers of css.</p>
<p>Recently on a new project a great piece of work was brought to my attention. A great javascript based text replacement solution called <a href="http://wiki.github.com/sorccu/cufon/demos">Cufon</a>. Simply put, its great. Very little effort to intergrate, even less effort to control. Not even that much slow down on page load. </p>
<p>Visit <a href="http://wiki.github.com/sorccu/cufon/about">here to get the lowdown</a></p>
<p>As its javascript and kicks after the page loads, it degrades gracefully if not supported. As well as  leaving all the juicy web text for the web spiders to nibble on. </p>
<p>The only thing to be wary of is licensing issues, but hey check out this <a href="http://www.cameronmoll.com/articles/cufon/">great example of Cufon in action. </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.benjaminashcroft.com/web-design/seo-freindly-font-replacement-with-out-the-flash/./feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Live Support chat. For Free.</title>
		<link>http://www.benjaminashcroft.com/web-design/get-live-support-chat-on-your-site-the-free-way/.</link>
		<comments>http://www.benjaminashcroft.com/web-design/get-live-support-chat-on-your-site-the-free-way/.#comments</comments>
		<pubDate>Sun, 28 Jun 2009 21:12:25 +0000</pubDate>
		<dc:creator>Benjash</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Help Center Live]]></category>
		<category><![CDATA[Live Support Chat]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Opensource]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.benjaminashcroft.com/?p=44</guid>
		<description><![CDATA[Live support chat is a great way of engaging with customers, in a freindly way. Letting you connect directly with your customers as they look through your site. Enabling you and your staff guide your customers throughout their journey on a website. Its good to chat, especially when it&#8217;s free After getting endless quotes, for [...]]]></description>
			<content:encoded><![CDATA[<p>Live support chat is a great way of engaging with customers, in a freindly way. Letting you connect directly with your customers as they look through your site. Enabling you and your staff guide your customers throughout their journey on a website.</p>
<h3>Its good to chat, especially when it&#8217;s free</h3>
<p>After getting endless quotes, for expensive solutions. <a href="http://www.helpcenterlive.com/">Help Center Live </a>was brought to my attention. This php mysql based solutions seems great, except its windows only at the moment. The good news is, version 3 is coming out soon with full support. </p>
<p><a href="http://www.helpcenterlive.com/">Help Center Live</a> is an open-source, community driven live chat &#038; support system. You may easily provide live support on your website just like large companies do with very little work. With Help Center Live, you can provide a real-time, live support or sales person experience.</p>
<p>Take a look at <a href="http://www.helpcenterlive.com/">Help Center Live</a> and let me know how things go</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benjaminashcroft.com/web-design/get-live-support-chat-on-your-site-the-free-way/./feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
