<?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>inTandem&#039;s Blog</title>
	<atom:link href="http://www.intandem.ie/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.intandem.ie/blog</link>
	<description>All kinds of everything about web design - for clients and peers</description>
	<lastBuildDate>Wed, 21 Dec 2011 06:44:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Embedding video with the HTML5 VideoJS kit</title>
		<link>http://www.intandem.ie/blog/?p=116</link>
		<comments>http://www.intandem.ie/blog/?p=116#comments</comments>
		<pubDate>Tue, 20 Dec 2011 21:23:06 +0000</pubDate>
		<dc:creator>Carolin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.intandem.ie/blog/?p=116</guid>
		<description><![CDATA[<p>Having torn my hair out over the past couple of days to get the HTML5 VideoJS player up and running on a new client site, I thought it might be a good idea to document the process here &#8211; with all its hurdles &#8211; so that it might be of help to others.</p> <p>I <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.intandem.ie/blog/?p=116">Embedding video with the HTML5 VideoJS kit</a></span>]]></description>
			<content:encoded><![CDATA[<p>Having torn my hair out over the past couple of days to get the HTML5 VideoJS player up and running on a new client site, I thought it might be a good idea to document the process here &#8211; with all its hurdles &#8211; so that it might be of help to others.</p>
<p>I am currently building a new site for a web presentation coach, so video will play an integral part in the site. In most cases, we will simply be embedding YouTube or Vimeo code, as the videos will also all feature on those sites and it will make life a lot easier for all involved. However, for the homepage, we wanted to feature a Welcome video that would autoplay on page load.</p>
<p>As the client is very keen to make the home page fully functional in all browsers, but in particular on the iPad/iPhone, we couldn&#8217;t really go down the Flash road and opted for a HTML5-based solution instead. Enter VideoJS (<a href="http://videojs.com" target="_blank">http://videojs.com</a>).</p>
<p>VideoJS is a fab little kit of free &amp; open-source code that makes embedding HTML5 video a breeze. Well, in theory at least! Ok, I don&#8217;t want to diss it whatsoever and at the end of the day, now that I have gone through the learning curve once, my next implementation actually should be the aforementioned breeze I had been looking forward to! In the meantime, here is a run-down of the hurdles I had to overcome during my implementation:</p>
<p>1. Download, unzip and install the latest version of VideoJS to your web server. &#8211; so far so good</p>
<p>2. Include the Javascript and CSS libraries in your page and make the relevant source changes. &#8211; still no issue</p>
<p>3. Add the JavaScript trigger code into the header and finally add the VideoJS embed code. &#8211; still straight forward. If you want help with generating your embed code, use the handy <a href="http://videojs.com/embed-builder/" target="_blank">Embed Builder</a> from the VideoJS website to do all the hard work for you.</p>
<p>Now of course we also need our source video in all of the required formats: mp4, webm and ogv. This is necessary because different browsers like their video files in different formats and we don&#8217;t want our users to be faced with a black square of nothingness instead of our fantastic video just because they&#8217;re using Safari, Firefox or Internet Explorer (there is a nice little round-up of the <a href="http://www.willus.com/author/streaming2.shtml" target="_blank">Video Format War</a> at willus.com if you want to find out more). To be honest, until yesterday I had never heard of webm or ogv &#8211; perhaps I should hang my head in shame but there you go. I knew that mp4 file conversion can be a bit of a mine field as one mp4 isn&#8217;t necessarily the same as the next, so in our case it was important to get the correct format or we&#8217;d be going nowhere. Suffice to say that it took me a number of attempts before I got it right in the end.</p>
<p>I found this very handy site at <a href="http://video.online-convert.com/" target="_blank">http://video.online-convert.com/</a> that offers free online file conversion into all sorts of formats (check it out as it also has file conversion services for images, audio, documents, hash encryption and all sorts of other goodies). It worked perfectly fine for the .webm and .ogv formats but my browser still wasn&#8217;t very happy with the .mp4 conversion.</p>
<p>Eventually, I got a working .mp4 file by uploading the original .wmv video to my YouTube account and then downloading the .mp4 version back to my hard-drive, then server. Evidently, you can also get a good conversion by using Adobe Premiere Pro but YouTube seemed like the easiest solution to me, thanks to a suggestion on the willus.com website.</p>
<p>However, all was still not well with my VideoJS code &#8230; Although I could play at least one of the video formats in any of my browsers by entering the direct path to the video file, the embedding on the website still didn&#8217;t work in Firefox. No issues with Chrome, Safari or Internet Explorer, just not in Firefox! A quick google showed me that this is quite a common problem but suggested solutions incorporating more changes to my mp4 file etc. were of no use. In the end, I found a small post that suggested the re-ordering of my 3 source files in my embed code as follows:</p>
<p>Original order as per VideoJS site: mp4, webm, ogv<br />
My new order: mp4, ogv, webm</p>
<p>And hey presto, Firefox was suddenly loving me too!!</p>
<p>Now, on to the next hurdle: the iPad &#8230;</p>
<p>I naively assumed that just because the video was playing happily in the Safari browser on my computer it would also comply on the iPad. But unfortunately, Apple has disabled autoplay because most mobile devices are tethered to a bandwidth limit. Apple has therefore decided that the user should initiate any usage of bandwidth such as playing a video. So I guess that&#8217;s fair enough. I know, YouTube videos play automatically, but then again Apple has a special relationship with YouTube and what works there cannot be taken for granted anywhere else in the operating system. There are apparently some hacks available to get around this (take a look <a href="http://help.videojs.com/discussions/problems/142-autoplay-does-not-work-on-the-ipad" target="_blank">here</a> if you are interested in experimenting) but for now, as long as the user can click the play button and the video works otherwise on the iPad, I&#8217;m happy. And my client is too.</p>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="http%3A%2F%2Fwww.intandem.ie%2Fblog%2F%3Fp%3D116" send="true" width="450" show_faces="true" font=""></fb:like>]]></content:encoded>
			<wfw:commentRss>http://www.intandem.ie/blog/?feed=rss2&amp;p=116</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>And the Winner Is &#8230;</title>
		<link>http://www.intandem.ie/blog/?p=113</link>
		<comments>http://www.intandem.ie/blog/?p=113#comments</comments>
		<pubDate>Sat, 29 Oct 2011 12:47:10 +0000</pubDate>
		<dc:creator>Carolin</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.intandem.ie/blog/?p=113</guid>
		<description><![CDATA[<p>Angela Moore AKA Raggedy Angela of Signutopia! Congratulations on winning your very own customised Facebook landing page with fan-reveal in our online competition. I will be contacting you by email shortly to make arrangements and look forward to working with you on this mini-project!</p> ]]></description>
			<content:encoded><![CDATA[<p>Angela Moore AKA Raggedy Angela of <a href="http://www.facebook.com/signutopia" target="_blank">Signutopia</a>! Congratulations on winning your very own customised Facebook landing page with fan-reveal in our online competition. I will be contacting you by email shortly to make arrangements and look forward to working with you on this mini-project!</p>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="http%3A%2F%2Fwww.intandem.ie%2Fblog%2F%3Fp%3D113" send="true" width="450" show_faces="true" font=""></fb:like>]]></content:encoded>
			<wfw:commentRss>http://www.intandem.ie/blog/?feed=rss2&amp;p=113</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Run a Competition on Facebook &#8211; Legally</title>
		<link>http://www.intandem.ie/blog/?p=105</link>
		<comments>http://www.intandem.ie/blog/?p=105#comments</comments>
		<pubDate>Thu, 27 Oct 2011 11:19:45 +0000</pubDate>
		<dc:creator>Carolin</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.intandem.ie/blog/?p=105</guid>
		<description><![CDATA[Did you realise that running a Facebook competition that requires entrants to "Share this photo to enter our competition" or putting all of your fans' names into the hat or even announcing competition winners on your wall is totally against Facebook rules? With a large proportion of business owners now maintaining Facebook Pages, it is becoming more and more popular to run FB competitions and promotions as a low-cost means of gaining new fans and spreading the word about your products and services. But most page owners are not aware of the detailed guidelines governing FB competitions, and not following them can get your page shut down. <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.intandem.ie/blog/?p=105">How to Run a Competition on Facebook &#8211; Legally</a></span>]]></description>
			<content:encoded><![CDATA[<p>Did you realise that running a Facebook competition that requires entrants to &#8220;Share this photo to enter our competition&#8221;  or putting all of your fans&#8217; names into the hat or even announcing competition winners on your wall is totally against Facebook rules? With a large proportion of business owners now maintaining Facebook Pages, it is becoming more and more popular to run FB competitions and promotions as a low-cost means of gaining new fans and spreading the word about your products and services. But  most page owners are not aware of the detailed guidelines governing FB competitions, and not following them can get your page shut down. In theory at least.</p>
<p>So to recap, here is a summary of the core bits you need to know (you can get the full original text <a href="http://www.facebook.com/promotions_guidelines.php" target="_blank">here</a>):</p>
<ol>
<li><strong>Facebook promotions must be administered within an App</strong>. That means you are not allowed to simply publicise or run a competition on your wall but must either set up your own app or use a third-party app to collect entrants&#8217; details.</li>
<li><strong>You must not use Facebook features or functionality as a promotion’s registration or entry mechanism</strong>. In other words, simply liking a page or a status update, uploading a photo, sharing a photo etc. cannot enter someone into a competition automatically. People have to do something specifically to enter your competition. You cannot automatically enter ALL fans.</li>
<li><strong>You must not condition registration or entry upon the user taking any action using any Facebook features or functionality other than liking a Page, checking in to a Place, or connecting to your app.</strong> This one can get a bit confusing because this seems to contradict the previous point! However, in plain language it means that  you may demand an entrant to &#8216;like&#8217; your page but this still has to lead to a separate action of entry through a special competition tab within your page.</li>
<li><strong>You must not notify winners through Facebook</strong>. So no messages on your wall announcing the winner! You can notify winners by email, SMS, post etc. or provide a link to your own website where you are announcing the winner.</li>
<li><strong>You have to add some statutory blurb</strong> to your competition page to disassociate it from FB and make sure that nobody could mistake it for an event that is endorsed by them.</li>
</ol>
<p>There are plenty of apps available that can help you run your competition to meet these requirements, set up your competition tab, collect your entrants&#8217; details and add all the legal disclaimers automatically. And if you need help, give me a shout. inTandem is currently running a competition for a free landing and fan-reveal page using these systems on <a href="http://www.facebook.com/intandem">our Facebook page</a>. Take a look and see how it works!</p>
<p>Whether Facebook will actually take the time to go after small and medium business that are running competitions and promotions outside of their regulations remains to be seen and you can certainly take your chances. There is however evidence that they are shutting down pages (http://www.simplyzesty.com/facebook/how-to-run-a-brilliant-but-illegal-facebook-competition-case-study/) and I recently read on LinkedIn about evidence that this is starting to happen here in Ireland too. So the choice is yours!</p>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="http%3A%2F%2Fwww.intandem.ie%2Fblog%2F%3Fp%3D105" send="true" width="450" show_faces="true" font=""></fb:like>]]></content:encoded>
			<wfw:commentRss>http://www.intandem.ie/blog/?feed=rss2&amp;p=105</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Options for eCommerce Sites &#8211; MODx with PayPal Cart, MODx with FoxyCart or PrestaShop</title>
		<link>http://www.intandem.ie/blog/?p=84</link>
		<comments>http://www.intandem.ie/blog/?p=84#comments</comments>
		<pubDate>Fri, 10 Jun 2011 09:16:28 +0000</pubDate>
		<dc:creator>Carolin</dc:creator>
				<category><![CDATA[FoxyCart]]></category>
		<category><![CDATA[PrestaShop]]></category>
		<category><![CDATA[eCommerce]]></category>

		<guid isPermaLink="false">http://www.intandem.ie/blog/?p=84</guid>
		<description><![CDATA[<p>Currently, at inTandem we offer 3 options for an eCommerce website installation geared towards the SME market:</p> A custom-designed MODx site (inTandem&#8217;s content management system of choice) using either single PayPal buttons or the PayPal shopping cart functionality A custom-designed MODx site using the third-party Foxycart shopping cart with either PayPal or a merchant <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.intandem.ie/blog/?p=84">Options for eCommerce Sites &#8211; MODx with PayPal Cart, MODx with FoxyCart or PrestaShop</a></span>]]></description>
			<content:encoded><![CDATA[<p>Currently, at inTandem we offer 3 options for an eCommerce website installation geared towards the SME market:</p>
<ul>
<li>A custom-designed MODx site (inTandem&#8217;s content management system of choice) using either single PayPal buttons or the PayPal shopping cart functionality</li>
<li>A custom-designed MODx site using the third-party Foxycart shopping cart with either PayPal or a merchant account</li>
<li>A template-based Prestashop</li>
</ul>
<p>There is no better or worse solution but rather the right solution for the right eCommerce requirements. Let me explain:</p>
<h2>1. MODx with PayPal only</h2>
<p>For projects that require more of a personalised design element than using a predesigned template, we recommend a MODx installation. This means that your shop is developed from the bottom up to match your requirements exactly. No compromise, with all the elements exactly where and how you want them.</p>
<p>&#8216;Pay Now&#8217; or &#8216;Add to cart&#8217; buttons that tie in with your PayPal account can be generated either individually or on-the-fly by MODx, allowing for a small number of customisation fields to be added to your order (e.g. colour-choice, enter name for personlisation, gift-wrapped yes/no etc.). Please note, that even though PayPal provides their standard yellow buttons by default, it is also possible to replace these with custom-designed buttons that match your website perfectly.</p>
<p>This is a great option for a site with a straight forward line of products. Or perhaps your site isn&#8217;t really a full online shop but rather requires a small eCommerce element to offer users to make specific online payments such as a deposit for a course booking, paying an annual club membership, purchasing a t-shirt for the local village festival or making a donation.</p>
<h2>2. MODx with FoxyCart using PayPal or a Merchant Account</h2>
<p>For clients who require a more professional shopping cart, yet wish to retain the custom-designed aspect of MODx, I recommend a MODx/FoxyCart combination. FoxyCart is a third-party product that provides full shopping cart functionality that goes way beyond what PayPal itself can offer. In this scenario,</p>
<ul>
<li>all payment buttons are automatically generated by the system</li>
<li>you can add a multitude of customisation options for your products</li>
<li>users can register their accounts with your site and use their details for future purchases</li>
<li>you are able to easily set up volume discounts (based on no. of items, price or weight)</li>
<li>stagger shipping costs</li>
<li>offer multiple shipping options</li>
<li>generate discount voucher codes that can be used in advertisement or coupons (such codes can be set up to be valid for a limited time only) and</li>
<li>obtain a whole array of reports relating to your online sales</li>
<li>etc.</li>
</ul>
<p>However, as FoxyCart only manages the actual shopping cart functionality, you still have a choice of payment management and can either take payments through PayPal or through a merchant account/payment gateway combination (eg. Elavon/Realex). For most small businesses and upstarts, PayPal tends to be the better option. Although PayPal charges higher commission rates per transaction, there are no set-up or monthly fees and no minimum amount of transactions. So if you are unsure of what your monthly sales will be or are operating in a seasonal marketplace (where monthly charges would be a waste of money when business is at a lull), PayPal can be the perfect choice. And remember, your customers DO NOT need to have a PayPal account to make a payment via PayPal. There is always the option to simply enter your credit card details there and then to complete the transaction.</p>
<p>With increasing sales however, it may become financially more effective to operative with a payment gateway and merchant account. The merchant account is set up with your bank (usually involving some sort of set-up costs) and a payment gateway account can be set up with a number of providers. However, Realex is the recommended provider for a FoxyCart implementation as their technical integration has been tried and tested by inTandem without problems. Now, there will be monthly base charges (currently €29 p.m. with Realex) for a set number of inclusive transactions (currently 350 p.m. with Realex). For higher transaction volumes, this is more attractive than PayPal&#8217;s higher per transaction commission charges.</p>
<p>Please note that there is a monthly fee of $19 for a FoxyCart subscription in either scenario.</p>
<h2>3. PrestaShop</h2>
<p>PrestaShop is one of the leading open-source purpose-build eCommerce applications in the market and recently won the Packt Publishing Open Source E-Commerce Applications Award  category in the 2010 Open Source Awards. inTandem selected PrestaShop as its all-in-one eCommerce solution of choice due to its low learning curve for our clients, long list of features, ease of installation and of course open-source status.</p>
<p>However, to make a PrestaShop installation as cost-effective as possible, we are not offering a design customisation service for our PrestaShop installations but rather advise our clients to select one of the pre-designed templates that are available for purchase with this system. Depending on the selected template, we will be able to make a number of design amendments (e.g. change background image and colours, change font type and colours, change page titles and add or remove certain page elements) but the focus is on the template layout in hand in order to keep implementation costs to a minimum.</p>
<p>PrestaShop sites are therefore suitable for clients who do not require a customised eCommerce site and are happy with the more standard look and feel of an online shop. inTandem generally offers a PrestaShop implementation at a lower rate than the custom-designed MODx sites outlined above and turn-around times can also be faster (as always depending on the client&#8217;s submission of content). However, at present we only offer PrestaShop in conjunction with PayPal only and not with merchant accounts.</p>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="http%3A%2F%2Fwww.intandem.ie%2Fblog%2F%3Fp%3D84" send="true" width="450" show_faces="true" font=""></fb:like>]]></content:encoded>
			<wfw:commentRss>http://www.intandem.ie/blog/?feed=rss2&amp;p=84</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Uploaded Images Not Showing in PrestaShop</title>
		<link>http://www.intandem.ie/blog/?p=78</link>
		<comments>http://www.intandem.ie/blog/?p=78#comments</comments>
		<pubDate>Thu, 09 Jun 2011 17:10:49 +0000</pubDate>
		<dc:creator>Carolin</dc:creator>
				<category><![CDATA[PrestaShop]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.intandem.ie/blog/?p=78</guid>
		<description><![CDATA[<p>Until this morning, I had no problems adding images to a new PrestaShop (1.3.7) site I am installing for a client. That is, until suddenly newly uploaded images stopped showing.  It took me a while to google for answers and quite a few led me in the entirely wrong direction. Then I realised that <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.intandem.ie/blog/?p=78">Uploaded Images Not Showing in PrestaShop</a></span>]]></description>
			<content:encoded><![CDATA[<p>Until this morning, I had no problems adding images to a new PrestaShop (1.3.7) site I am installing for a client. That is, until suddenly newly uploaded images stopped showing.  It took me a while to google for answers and quite a few led me in the entirely wrong direction. Then I realised that after running a file permissions update, my images reappeared but any new images again went AWOL. Trying to view the image links in a new window gave an Access Permission error, so it had to be down to permissions after all.</p>
<p>I still haven&#8217;t figured out why PrestaShop stopped giving new images the correct 644 permission when it had done it perfectly well until this morning. But Rocky at Nethercott Constructions had the perfect workaround:</p>
<p>In the images.inc.php file, insert a line after line 256 and place</p>
<pre>chmod($filename, 0644);</pre>
<p>just in front of:</p>
<pre>imagedestroy($ressource);
return $flag;</pre>
<p>Sorted!! Now, all new images are created with the correct file permission and everybody is happy. Any clues as to why PrestaShop stopped doing it itself are however still very welcome!</p>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="http%3A%2F%2Fwww.intandem.ie%2Fblog%2F%3Fp%3D78" send="true" width="450" show_faces="true" font=""></fb:like>]]></content:encoded>
			<wfw:commentRss>http://www.intandem.ie/blog/?feed=rss2&amp;p=78</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>A Little Rant About Hosting Customer Support</title>
		<link>http://www.intandem.ie/blog/?p=70</link>
		<comments>http://www.intandem.ie/blog/?p=70#comments</comments>
		<pubDate>Sat, 21 May 2011 18:15:40 +0000</pubDate>
		<dc:creator>Carolin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.intandem.ie/blog/?p=70</guid>
		<description><![CDATA[<p>As a web designer, I have the pleasure of dealing with an array of web hosting companies. Of course I act as a reseller myself (and have been using Register365 quite happily for the last number of years) and where a new client is looking for domain name registration and web hosting for the <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.intandem.ie/blog/?p=70">A Little Rant About Hosting Customer Support</a></span>]]></description>
			<content:encoded><![CDATA[<p>As a web designer, I have the pleasure of dealing with an array of web hosting companies. Of course I act as a reseller myself (and have been using Register365 quite happily for the last number of years) and where a new client is looking for domain name registration and web hosting for the first time, I generally offer to set these up on their behalf. Many web designers add a surcharge to their cost base in order to compensate them for the administrative time involved in setting all of this up. My philosophy is: charge them exactly what they would pay if they made these purchases themselves, because at the end of the day it&#8217;s to my advantage to have the business on my own account as it makes maintenance an awful lot easier in the long term. Perhaps I am wasting a profit-making opportunity&nbsp; (and perhaps at some time in the future I have to eat my words &#8230;) but there you go.</p>
<p>Now, as I mentioned I have been a very happy customer of Register365 and their server set-up works perfectly well with the MODx content management system I love so much. This cannot be said for some of the other hosting companies I have had to deal with. From gruff support technicians that treat their customers with disdain at their lack of detailed technical know-how (&#8220;You could have found the answer to that question in our knowledge base&#8221; &#8211; that&#8217;s perfectly fine &#8211; if you would label your knowledge base in such a way that it is actually possible to find your way around it &#8230;.) to hosting companies that only offer human telephone support on weekdays between 9-5 and weekend email support that takes more than 6+ hours to reply to a request &#8211; websites have a habit of operating 24/7 and it is often best to switch a new site live over a weekend when there might be less expected traffic, so why leave your customers hanging should issues arise at the slightly less convenient times?</p>
<p>Well, I am really only writing this blog post to let off a major build-up of steam. Hoping to get a beautiful new site online over the weekend, I have been left hanging due to the non-contactability of my client&#8217;s current hosting company to sort out a small technical issue (repeated requests to their so-called out-of-hours support email have been left unanswered for the past 7 hours). Very frustrating! Fingers crossed someone might feel the need to step up their customer service fairly soon and perhaps I will get a result before the weekend is out &#8230;</p>
<p>So, if you purchase your own hosting or have a web designer purchase or supply it on your behalf, make sure that you buy from a hosting company with decent customer service, both in terms of office hours and the standard of behaviour.</p>
<p>And on a final note, if I purchase a domain name on behalf of a client, I make sure to register it with their own details as admin contact and don&#8217;t stick in my name other than for billing purposes. This makes it easier for the client to move their domain to someone else in the future should they wish to do so. I feel that I would rather work within a positive and trusting relationship with my clients than &#8216;lock them in&#8217; by making a move difficult for them. So again, if you are using a third-party service for this, just make sure you instruct them to set up your own details as the administrative contact and don&#8217;t accept any excuses why it should be anybody else! The day might come where you might fall out with your web company (has fortunately never happened to me but I have certainly witnessed it for clients moving their business to me from a previous unhappy relationship) or their company even might no longer be in existence (maybe they won the Lotto!) and the fight to take ownership of your domain if your name isn&#8217;t on it can be drawn out and tedious.</p>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="http%3A%2F%2Fwww.intandem.ie%2Fblog%2F%3Fp%3D70" send="true" width="450" show_faces="true" font=""></fb:like>]]></content:encoded>
			<wfw:commentRss>http://www.intandem.ie/blog/?feed=rss2&amp;p=70</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Easy Email Signatures with WiseStamp</title>
		<link>http://www.intandem.ie/blog/?p=54</link>
		<comments>http://www.intandem.ie/blog/?p=54#comments</comments>
		<pubDate>Sat, 21 May 2011 16:38:46 +0000</pubDate>
		<dc:creator>Carolin</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.intandem.ie/blog/?p=54</guid>
		<description><![CDATA[<p>I recently spotted a nice, clean email signature at the bottom of a client’s message and went off to investigate how he had set it up. Turns out he used WiseStamp, a free tool to enhance your emails.</p> <p>In their own words “WiseStamp Email Apps enable users to transform their emails into a powerful <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.intandem.ie/blog/?p=54">Easy Email Signatures with WiseStamp</a></span>]]></description>
			<content:encoded><![CDATA[<p>I recently spotted a nice, clean email signature at the bottom of a client’s message and went off to investigate how he had set it up. Turns out he used WiseStamp, a free tool to enhance your emails.</p>
<p>In their own words “WiseStamp Email Apps enable users to transform their emails into a powerful self expression and promotional tool. With WiseStamp you can easily customize your email signatures with your IM &amp; Social profiles, your latest eBay item, recent blog post, your latest tweet, Quotes, News, Bookmarks and more…”.</p>
<p>Sounds good, so I went to check it out. Unfortunately, the service only seems to work if you are using Gmail, Yahoo!, Hotmail or AOL as your email clients. However, with large numbers of users within these systems and more and more business users selecting to manage their business emails through services such as Gmail, it is still a feasible prospect. On the other hand, its limitation to be only downloadable for Firefox, Chrome and Safari doesn’t bother me too much as I am not an advocate of Internet Explorer anyway and firmly stick to Firefox for my day-to-day browsing.</p>
<p>As with many of these applications, there is a free version and premium paid upgrades with varying degrees of added functionality. But the free version is a good start and allows you to add icon links to your social media profiles such as your Facebook page, LinkedIn profile, YouTube channel or Skype address and also lets you install apps that add items such as your latest tweet, blog post, latest product you are selling on eBay or standard disclaimer text.</p>
<p>Of course, some of these can also be manually generated with your email client’s signature functionality, but this is a neat package that simplifies the process as well as giving you the added functionality above. Anyway, check it out at <a href="http://www.wisestamp.com/">http://www.wisestamp.com</a>.</p>
<p>Some example signatures:</p>
<p><a href="http://www.intandem.ie/blog/wp-content/uploads/2011/05/Screen-shot-2011-05-21-at-17.30.05.png"><img class="aligncenter size-full wp-image-56" title="Wisestamp Sample" src="http://www.intandem.ie/blog/wp-content/uploads/2011/05/Screen-shot-2011-05-21-at-17.30.05.png" alt="" width="369" height="227" /></a></p>
<p><a href="http://www.intandem.ie/blog/wp-content/uploads/2011/05/Screen-shot-2011-05-21-at-17.30.28.png"><img class="aligncenter size-full wp-image-57" title="Wisestamp sample" src="http://www.intandem.ie/blog/wp-content/uploads/2011/05/Screen-shot-2011-05-21-at-17.30.28.png" alt="" width="247" height="187" /></a></p>
<p><a href="http://www.intandem.ie/blog/wp-content/uploads/2011/05/Screen-shot-2011-05-21-at-17.35.57.png"><img class="aligncenter size-full wp-image-60" title="Screen shot 2011-05-21 at 17.35.57" src="http://www.intandem.ie/blog/wp-content/uploads/2011/05/Screen-shot-2011-05-21-at-17.35.57.png" alt="" width="411" height="133" /></a></p>
<p><a href="http://www.intandem.ie/blog/wp-content/uploads/2011/05/Screen-shot-2011-05-21-at-17.35.26.png"><img class="aligncenter size-full wp-image-61" title="Screen shot 2011-05-21 at 17.35.26" src="http://www.intandem.ie/blog/wp-content/uploads/2011/05/Screen-shot-2011-05-21-at-17.35.26.png" alt="" width="590" height="68" /></a></p>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="http%3A%2F%2Fwww.intandem.ie%2Fblog%2F%3Fp%3D54" send="true" width="450" show_faces="true" font=""></fb:like>]]></content:encoded>
			<wfw:commentRss>http://www.intandem.ie/blog/?feed=rss2&amp;p=54</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Avoid spam emails with Spamavert</title>
		<link>http://www.intandem.ie/blog/?p=45</link>
		<comments>http://www.intandem.ie/blog/?p=45#comments</comments>
		<pubDate>Tue, 29 Mar 2011 13:38:07 +0000</pubDate>
		<dc:creator>Carolin</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.intandem.ie/blog/?p=45</guid>
		<description><![CDATA[<p>How many times have we all had to hand over our email address just to download something, sign up for once-off access to a particular website or fill in that online questionnaire etc. etc.? But every time you hand over your email address to someone else, even if you tick that little (or more <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.intandem.ie/blog/?p=45">Avoid spam emails with Spamavert</a></span>]]></description>
			<content:encoded><![CDATA[<p>How many times have we all had to hand over our email address just to download something, sign up for once-off access to a particular website or fill in that online questionnaire etc. etc.? But every time you hand over your email address to someone else, even if you tick that little (or more often obscure) &#8220;I DO NOT wish to receive offers from you, your carefully selected partners or anybody else for that matter, thank you very much!&#8221; box, you are in danger of your email address leaking out into the web to be sold on for profit, resulting it those fantastic spam emails we all love, or even worse, personalised fishing emails sent by unsavoury parties who are after our hard-earned cash. But even if they&#8217;re not passed on, you can still be at the receiving end of unwanted promotional emails from the company you really only wanted to have that one contact with.</p>
<p>Spamavert.com is a great little service that can help you hang on to your email address to be used online only when absolutely necessary. Whenever an email address is required in an online form and you know you will not need to access any communications from the sender after 7 days (e.g. all you need is a registration key) or maybe don&#8217;t even need any communications from them at all, simply enter an email address in the format <code><em>yourword</em>@spamavert.com</code> and later go to <a href="http://spamavert.com">www.spamavert.com</a> to collect your email if required. Your account will last for one day and there is not need for a password. It&#8217;s as simple as that!</p>
<p>As a web designer, I also make use of this service when I test online forms, distribution lists or user registrations, saving me from having to use multiple existing addresses and then needing to access a series of mailboxes in different locations to see the result..</p>
<p>Behind spamavert is a three-man company from Norway called <a href="http://www.digitalcreations.no/" target="_blank">Digital Creations AS</a>. They tell us that &#8220;Spamavert was born out of annoyance at the amount of junk mail we  received. A lot of the junk mail came from companies we at one point had  a relationship with, even for something as tiny as downloading a piece  of software. And we were annoyed at those companies, because there is no  need for them to have our e-mail addresses.&#8221;</p>
<p>Please refer to the spamavert.com website for <a href="http://spamavert.com/static/faq" target="_blank">FAQ</a> about the usage of the system.</p>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="http%3A%2F%2Fwww.intandem.ie%2Fblog%2F%3Fp%3D45" send="true" width="450" show_faces="true" font=""></fb:like>]]></content:encoded>
			<wfw:commentRss>http://www.intandem.ie/blog/?feed=rss2&amp;p=45</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Online Image-Editing with Picnik</title>
		<link>http://www.intandem.ie/blog/?p=24</link>
		<comments>http://www.intandem.ie/blog/?p=24#comments</comments>
		<pubDate>Tue, 22 Mar 2011 18:27:40 +0000</pubDate>
		<dc:creator>Carolin</dc:creator>
				<category><![CDATA[Image Editing]]></category>

		<guid isPermaLink="false">http://www.intandem.ie/blog/?p=24</guid>
		<description><![CDATA[<p>To optimise the loading speed of a web page, images should be a) inserted at the actual size at which they are to be displayed on the page and b) compressed to a quality setting that is the perfect compromise between reduced file size and acceptable image quality. In theory, it is possible to <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.intandem.ie/blog/?p=24">Online Image-Editing with Picnik</a></span>]]></description>
			<content:encoded><![CDATA[<p>To optimise the loading speed of a web page, images should be a) inserted at the actual size at which they are to be displayed on the page and b) compressed to a quality setting that is the perfect compromise between reduced file size and acceptable image quality. In theory, it is possible to use images in their original state and then tell the &#8216;code&#8217; to display the image only at the desired size. But in this scenario, the web page still needs to load the entire image file at it&#8217;s original size and with modern digital cameras spitting out photographs in every-increasing megapixel dimensions, this can considerably slow down page loading times. And we all know what happens when we get impatient with slow loading websites &#8230;.</p>
<p>During the development stages of creating a new website, I generally help my clients with the resizing and compressing of images to make them suitable for their new website. However, after going live, it is up to the customer to upload new images that are optimised for the web. Some clients have decent image editing software already on their computers, most likely from a CD that came with their digital camera. But even if they already have the software, they may not feel confident in using it and therefore don&#8217;t update their site with new imagery as often as they could. Others don&#8217;t have any tools themselves for image editing at all.</p>
<p>So rather than going out to pay for an application that then is only available on the computer you installed it on or paying me to do all the image editing on the client&#8217;s behalf, I took a look around to seek out an online system that could easily do the job for my clients.</p>
<p>For the past several months, I have been recommending Picnik with great success. Picnik is an online application that lets you carry out all of the resizing, cropping and compressing you need to do to optimise your images for the web. You can even add text to your images and do all sorts of fun stuff with &#8217;stickers&#8217; etc. And the best thing is that the free version is perfectly enough to do all your web-related editing. There is also a Premium version for an annual fee but for our purposes here it is not really necessary.</p>
<p>Using Picnik is as simple as uploading your image, selecting to resize, entering the new width or height and saving it back to your computer.</p>
<p>1. Go to <a href="http://www.picnik.com" target="_blank">http://www.picnik.com</a> and click on &#8216;Upload a Photo&#8217; &#8211; there is no need to sign up.</p>
<p><a href="http://www.intandem.ie/blog/wp-content/uploads/2011/03/Picture-8.png"></a><a href="http://www.intandem.ie/blog/wp-content/uploads/2011/03/Picture-81.png"><img class="aligncenter size-full wp-image-29" src="http://www.intandem.ie/blog/wp-content/uploads/2011/03/Picture-81.png" alt="Using Picnik 1" width="451" height="297" /></a></p>
<p>2. Upload your photo from your computer and then click on the &#8216;Resize&#8217; tab.</p>
<p><a href="http://www.intandem.ie/blog/wp-content/uploads/2011/03/Picture-91.png"><img class="aligncenter size-full wp-image-30" src="http://www.intandem.ie/blog/wp-content/uploads/2011/03/Picture-91.png" alt="Using Picnik 2" width="449" height="295" /></a></p>
<p>3. Change the image width or height as instructed by your web designer (ensure &#8216;Keep Proportions&#8217; is ticked) and click OK.</p>
<p><a href="http://www.intandem.ie/blog/wp-content/uploads/2011/03/Picture-10.png"><img class="aligncenter size-full wp-image-31" src="http://www.intandem.ie/blog/wp-content/uploads/2011/03/Picture-10.png" alt="Using Picnik 3" width="450" height="298" /></a></p>
<p><a href="http://www.intandem.ie/blog/wp-content/uploads/2011/03/Picture-11.png"><img class="aligncenter size-full wp-image-32" src="http://www.intandem.ie/blog/wp-content/uploads/2011/03/Picture-11.png" alt="Using Picnik 4" width="451" height="297" /></a></p>
<p>4. That&#8217;s it for resizing! If you&#8217;re done, then skip to Step 6. However, if you wish you can now also add some effects, e.g. text, drop-shadow etc. To do so, click on the &#8216;Create&#8217; tab.</p>
<p><a href="http://www.intandem.ie/blog/wp-content/uploads/2011/03/Picture-17.png"></a><a href="http://www.intandem.ie/blog/wp-content/uploads/2011/03/Picture-171.png"><img class="aligncenter size-full wp-image-34" src="http://www.intandem.ie/blog/wp-content/uploads/2011/03/Picture-171.png" alt="Using Picnik 6" width="451" height="304" /></a></p>
<p>5. Here, you can use features such as Effects, Text, Stickers, Touch-Up, Frames etc. You really need to play around with these to see what you can do. Note that not all features are available with the free version. The above example shows the &#8216;Text&#8217; feature where you can add text to the text-box in the top left, select a special font and change its colour. Use the handlers around the inserted text to resize it to your requirements.</p>
<p>6. When you are done, click on the &#8216;Save &amp; Share&#8217; tab. You can change the file name if you wish but leave the Image Compression at the default 8. Finally, click on &#8216;Save&#8217; and select the location on your computer to which you wish to save the file.</p>
<p><a href="http://www.intandem.ie/blog/wp-content/uploads/2011/03/Picture-16.png"><img class="aligncenter size-full wp-image-35" src="http://www.intandem.ie/blog/wp-content/uploads/2011/03/Picture-16.png" alt="Using Picnik 7" width="451" height="299" /></a></p>
<p>7. Congratulations! You&#8217;re done!</p>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="http%3A%2F%2Fwww.intandem.ie%2Fblog%2F%3Fp%3D24" send="true" width="450" show_faces="true" font=""></fb:like>]]></content:encoded>
			<wfw:commentRss>http://www.intandem.ie/blog/?feed=rss2&amp;p=24</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Welcome to inTandem&#8217;s new blog!</title>
		<link>http://www.intandem.ie/blog/?p=3</link>
		<comments>http://www.intandem.ie/blog/?p=3#comments</comments>
		<pubDate>Mon, 21 Mar 2011 15:18:50 +0000</pubDate>
		<dc:creator>Carolin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.intandem.ie/blog/?p=3</guid>
		<description><![CDATA[Well, I have finally entered the world of bloggers! About time if you ask any social media marketing expert! And if you ask me? Difficult question to answer. It has certainly taken me a while to warm to the idea of a blog, even though as a web designer I am supposed to be at the forefront of online trends and 'blogs are the way to go'. <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.intandem.ie/blog/?p=3">Welcome to inTandem&#8217;s new blog!</a></span>]]></description>
			<content:encoded><![CDATA[<p>Well, I have finally entered the world of bloggers! About time if you ask any social media marketing expert! And if you ask me? Difficult question to answer. It has certainly taken me a while to warm to the idea of a blog, even though as a web designer I am supposed to be at the forefront of online trends and &#8216;blogs are the way to go&#8217;.</p>
<p style="text-align: left;"><a href="http://www.intandem.ie/blog/wp-content/uploads/2011/03/to_blog_or_not_to_blog-300x213.jpg"><img class="aligncenter size-full wp-image-21" title="To Blog or Not to Blog" src="http://www.intandem.ie/blog/wp-content/uploads/2011/03/to_blog_or_not_to_blog-300x213.jpg" alt="" width="300" height="213" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;">So where did my aversion to setting up my own blog come from? I guess many of you have, like me, come across websites with blogs that seems to have been set up just for the sake of it. Someone was told that having a blog is great for search engine ranking, so you better get one on that site immediately!! Random content that rambles on or content that is simply a re-hash of the site-owner&#8217;s latest sales offer, only this time written up in a more &#8216;informal&#8217; style to make us feel all warm and fuzzy inside.</p>
<p>Then there are the multitude of websites that were quickly set up by using free blogging systems like WordPress, with pages generated as blog posts and homepages showing us that they were created on the 16th February 2009, uncategorised and comments closed. There is no place for a blog post as our home page entry unless your website itself is a blog and it suits the business you&#8217;re in! There is nothing wrong with the Marketing Guru styling his home page like a blog, because that&#8217;s why we&#8217;re on his site &#8211; to get his opinion and use it as an information source about his area of expertise. The same goes for the security expert, financial advice service etc. But if you are the local plumber or hotel, please don&#8217;t take the quick route and set up your brochure site as a blog&#8230;</p>
<p>No disrespect to WordPress of course! The very blog you are reading here is powered by WordPress, even though the rest of my site was built using MODx content management system (inTandem&#8217;s CMS of choice). MODx does offer functionality to create blog posts with commenting, archiving etc. but why re-invent the wheel when there is already a tool out there that can show the rest how it&#8217;s done? And then there are of course also countless excellent full websites represented all over the Internet that use the power of WordPress to create beautifully designed and well structured sites without even the slightest hint of a blog in sight. But these sites are most certainly built with the help of experienced WordPress programmers who know how to &#8216;turn off&#8217; the blog style and &#8216;turn on&#8217; proper web design. So please don&#8217;t take this as a WordPress bashing exercise! It&#8217;s more a call to action to use such tools at the right time and in the right manner.</p>
<p>So what&#8217;s the other side of the coin? A quick google for &#8220;Why I should start a blog&#8221; leaves me with an endless choice of Top 10 Reasons-type lists giving me core arguments such as:</p>
<ol>
<li>To express your thoughts and opinions</li>
<li>To market or promote something</li>
<li>To help people</li>
<li>To establish yourself as an expert</li>
<li>To connect with people like you</li>
<li>To make a difference</li>
<li>To stay active or knowledgeable in a field or topic</li>
<li>To stay connected with friends and family</li>
<li>To make money</li>
<li>To have fun and stay creative*</li>
</ol>
<p>Now, if I take a look at what I&#8217;ve just written, these really aren&#8217;t reasons for me not to put a blog on my site, so why not just get over myself?!! Yes, the blog will (hopefully) improve my search ranking. But it can also be used as a tool to communicate with my web design peers and perhaps help answer some of the regular questions I get from my clients. So here it is, the inTandem Blog is born! And I shall endavour to fill these pages with posts that are relevant, informative and perhaps at times even entertaining. I will try to create a mix of articles that speak both to my web designer community as well as my existing and potential client base. I will recount some experiences I might have using certain web design tools and applications but also provide tips and tricks for clients and others in charge of updating their own websites that will help you make the most out of your web presence even after I have handed your &#8216;baby&#8217; back to you on going live. Social media will feature prominently and so will current security issues. Anybody already &#8216;liking&#8217; inTandem on my Facebook page will be familiar with the kind of status updates offered there (and if you have not yet shown me your Facebook love, please don&#8217;t hold back and check out <a href="http://www.facebook.com/intandem" target="_blank">inTandem&#8217;s page</a> on Facebook!).</p>
<p>So if this sounds of interest to you, please add my RSS feed to your feed reader (e.g. Google Reader), engage with comments and let me know if there is a particular topic you would like me to tackle.</p>
<p>* <a href="http://weblogs.about.com/od/startingablog/tp/Top-Ten-Reasons-to-Blog.htm" target="_blank">Top 10 Reasons to Start a Blog by Susan Gunelius</a></p>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="http%3A%2F%2Fwww.intandem.ie%2Fblog%2F%3Fp%3D3" send="true" width="450" show_faces="true" font=""></fb:like>]]></content:encoded>
			<wfw:commentRss>http://www.intandem.ie/blog/?feed=rss2&amp;p=3</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

