<?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>Plankton</title>
	<atom:link href="http://planktonwebdesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://planktonwebdesign.com</link>
	<description>Michael Story &#124; Web Designer</description>
	<lastBuildDate>Mon, 30 Jan 2012 18:42:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Sprite Right App</title>
		<link>http://planktonwebdesign.com/385-sprite-right-app/</link>
		<comments>http://planktonwebdesign.com/385-sprite-right-app/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 20:07:11 +0000</pubDate>
		<dc:creator>planktonwebdesign</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://planktonwebdesign.com/?p=385</guid>
		<description><![CDATA[I'm a fan of using CSS sprites in my projects and this app looks like a real time saver. <a href="http://spriterightapp.com">http://spriterightapp.com</a> Best part of using it ...<a href="http://planktonwebdesign.com/385-sprite-right-app/">read more</a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a fan of using CSS sprites in my projects and this app looks like a real time saver.</p>
<p><a href="http://spriterightapp.com">http://spriterightapp.com</a></p>
<p>Best part of using it would be being able to create multiple sprites and serving them up depending on the browsers ability to render CSS3 declarations. You can create a sprite that contains all the buttons and icons from your mockup and a second or third sprite could contain less buttons and image content which you serve up to the modern browsers.</p>
<p>So using Modernizer:</p>
<p>.icons {<br />
    background: url(big-sprite-with-lots-of-buttons.png);<br />
}</p>
<p>.cssgradients .icons {<br />
    background: url(modern-sprite-no-buttons.png);<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://planktonwebdesign.com/385-sprite-right-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding noise as a background image with CSS</title>
		<link>http://planktonwebdesign.com/382-adding-noise-as-a-background-image-with-css/</link>
		<comments>http://planktonwebdesign.com/382-adding-noise-as-a-background-image-with-css/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 19:59:34 +0000</pubDate>
		<dc:creator>planktonwebdesign</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://planktonwebdesign.com/?p=382</guid>
		<description><![CDATA[Chris Coyier has made this great example of using a noise.jpg as the bottom &#8220;layer&#8221; of a multiple bg declaration. http://jsfiddle.net/websterslab/Cy54G/ Easy variations by Andreas Hedderich]]></description>
			<content:encoded><![CDATA[<p>Chris Coyier has made this great example of using a noise.jpg as the bottom &#8220;layer&#8221; of a multiple bg declaration.</p>
<p><a href="http://jsfiddle.net/websterslab/Cy54G/">http://jsfiddle.net/websterslab/Cy54G/</a></p>
<p>Easy variations by Andreas Hedderich</p>
]]></content:encoded>
			<wfw:commentRss>http://planktonwebdesign.com/382-adding-noise-as-a-background-image-with-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove Button Text in IE7</title>
		<link>http://planktonwebdesign.com/232-remove-button-text-in-ie7/</link>
		<comments>http://planktonwebdesign.com/232-remove-button-text-in-ie7/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 22:26:02 +0000</pubDate>
		<dc:creator>planktonwebdesign</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://planktonwebdesign.com/?p=232</guid>
		<description><![CDATA[A bug that keeps reminding me of it's existence everytime I go to test sites in ie7, gotta remember text-transform: capitalize; <a href="/232-remove-button-text-in-ie7">...read more</a>]]></description>
			<content:encoded><![CDATA[<p>A bug that keeps reminding me of it&#8217;s existence everytime I go to test sites in ie7.</p>
<p>Often I use the Phark method to remove link text and replace it with a button image like so:</p>
<p>button {<br />
    background: url(&#8220;../images/buttons.png&#8221;) no-repeat;<br />
    border: 0 none;<br />
    height: 52px;<br />
    position: absolute;<br />
    text-indent: -9999px;<br />
    width: 181px !important;<br />
}</p>
<p><img src="http://planktonwebdesign.com/wp-content/uploads/2011/11/Screen-Shot-2011-11-22-at-11.19.07-AM.jpg" alt="" title="Screen Shot 2011-11-22 at 11.19.07 AM" width="222" height="78" class="size-full wp-image-233" />
<p>..however in ie7 the text still appear. To get around this just add text-transform: capitalize; and boom! no button text in ie7.</p>
<p><img src="http://planktonwebdesign.com/wp-content/uploads/2011/11/Screen-Shot-2011-11-22-at-11.25.12-AM.jpg" alt="" title="Remove button text in ie7 phark method" width="209" height="75" class="alignleft size-full wp-image-234" /></p>
]]></content:encoded>
			<wfw:commentRss>http://planktonwebdesign.com/232-remove-button-text-in-ie7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Increase the WordPress Upload Limit</title>
		<link>http://planktonwebdesign.com/227-increase-the-wordpress-upload-limit/</link>
		<comments>http://planktonwebdesign.com/227-increase-the-wordpress-upload-limit/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 22:15:49 +0000</pubDate>
		<dc:creator>planktonwebdesign</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://planktonwebdesign.com/?p=227</guid>
		<description><![CDATA[I have many clients that need to upload audio files as well as large images via the Wordpress built-in uploader. As a default Wordpress sets the upload limit to 2MB which in most cases is too low. Edit the .htaccess file <a href="/227-increase-the-wordpress-upload-limit">...read more</a>]]></description>
			<content:encoded><![CDATA[<p>I have many clients that need to upload audio files as well as large images via the WordPress built-in uploader. As a default WordPress sets the upload limit to 2MB which in most cases is too low.</p>
<h2>Edit the .htaccess to increase the upload limit</h2>
<p>Editing the .htaccess file seems the easiest way to achieve this without touching the WordPress core files or adding a php.ini file as many suggest.</p>
<p><img src="http://planktonwebdesign.com/wp-content/uploads/2011/11/Screen-Shot-2011-11-22-at-11.14.22-AM.jpg" alt="" title="Increase the WordPress Upload Limit" width="369" height="328" class="alignright size-full wp-image-228" />
<p>Simply add the following code:</p>
<p>php_value upload_max_filesize 6M<br />
php_value post_max_size 6M<br />
php_value max_execution_time 200<br />
php_value max_input_time 200</p>
]]></content:encoded>
			<wfw:commentRss>http://planktonwebdesign.com/227-increase-the-wordpress-upload-limit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DesignerMX</title>
		<link>http://planktonwebdesign.com/218-designermx/</link>
		<comments>http://planktonwebdesign.com/218-designermx/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 22:10:24 +0000</pubDate>
		<dc:creator>planktonwebdesign</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://planktonwebdesign.com/?p=218</guid>
		<description><![CDATA[As a musician/designer I love to listen to tracks when I&#8217;m designing and this site is great for getting an insight into what is fueling other designers as they work. DesignersMX Favourite morning mix so far is Kick the Day Off Right BY San Francisco designer Daniel Waldron (@dwaldron danielwaldron.com)]]></description>
			<content:encoded><![CDATA[<p>As a musician/designer I love to listen to tracks when I&#8217;m designing and this site is great for getting an insight into what is fueling other designers as they work.</p>
<p><a href="http://designers.mx/">DesignersMX</a></p>
<p>Favourite morning mix so far is <em>Kick the Day Off Right</em> BY San Francisco designer <a href="http://designers.mx/#/members/profile/dwaldron">Daniel Waldron</a> (@dwaldron<br />
danielwaldron.com)</p>
]]></content:encoded>
			<wfw:commentRss>http://planktonwebdesign.com/218-designermx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Apps for your Business</title>
		<link>http://planktonwebdesign.com/175-google-apps-for-your-business/</link>
		<comments>http://planktonwebdesign.com/175-google-apps-for-your-business/#comments</comments>
		<pubDate>Sun, 29 May 2011 02:28:04 +0000</pubDate>
		<dc:creator>planktonwebdesign</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://planktonwebdesign.com/?p=175</guid>
		<description><![CDATA[Lot of my clients love using Google Apps as their business email solution. If you are familiar with using the Gmail or Hotmail style web mail then moving over the Google Apps is a breeze and best of all with Google Apps businesses can combine the Gmail service with their own domain names. i.e steve@companyname.com [...]]]></description>
			<content:encoded><![CDATA[<p>Lot of my clients love using Google Apps as their business email solution. If you are familiar with using the Gmail or Hotmail style web mail then moving over the Google Apps is a breeze and best of all with Google Apps businesses can combine the Gmail service with their own domain names. i.e steve@companyname.com</p>
<p>You don&#8217;t even need to have your website up and running to create a google apps account, all you need is a registered domain and hosting package and you&#8217;re good to go. Google apps is available for free to businesses with less than 10 email addresses required. So if you are a small business looking for a professional email solution Google apps is the way to go.</p>
<p>There are two versions of Google Apps for Business: the free, ad-supported Standard version, and the $50 per-user per-year Premium version. The Premium version includes 25Gb of storage per user, but the email capacity for the Standard edition keeps creeping up too. At the time of writing, it was 7.5Gb. The Premium version includes a 90-day recovery service for email, although Google offers a separate archiving service to firms that need a more robust solution for compliance purposes.</p>
<p>As part of the Google Apps family is the Calender and Docs. These two enable you to share a calendar with everyone on your team and the same goes for documents. This is a real time saver and can help streamline your business workflow. Google are constantly creating and adding new apps to the Google Apps family so chances are if there is a web service you require Google has an app for you!</p>
<p><strong>Making Google Apps Mobile</strong><br />
Once you have been migrated to the Gmail service, accessing it on a mobile phone is relatively straightforward, thanks to the popularity of the service, and its support for IMAP. There are three different ways to access Gmail on a mobile device. The easiest is via Webmail. Surfing to m.google.com gives you a streamlined Web interface with access to the various services (Docs, Calendar, Gmail and Google Talk), included in their Google Apps implementation.</p>
<p><strong>How to set up IMAP-based Gmail in the iPhone</strong><br />
When you first login to your new Google Apps email account there is an instructional on how to setup Google Apps on your Iphone or smartphone device so you can take Google Apps with you in your pocket!</p>
<p>Google Apps is fantastic and I recommend it for all my clients. If you would like help setting up Google Apps whether you have a domain or hosting package already <a href="/contact">get in touch</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://planktonwebdesign.com/175-google-apps-for-your-business/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Start thinking socially</title>
		<link>http://planktonwebdesign.com/171-start-thinking-socially/</link>
		<comments>http://planktonwebdesign.com/171-start-thinking-socially/#comments</comments>
		<pubDate>Mon, 02 May 2011 05:17:02 +0000</pubDate>
		<dc:creator>planktonwebdesign</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://planktonwebdesign.com/?p=171</guid>
		<description><![CDATA[Social media was not about being &#8220;chatty and friendly&#8221; but about interacting with customers. &#8220;It&#8217;s about showing your expertise, putting your opinion out there and answering questions&#8230; If you tweet two or three times a day, people will retweet you and you&#8217;ll be introduced to their followers. It costs nothing to use and small businesses [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Social media was not about being &#8220;chatty and friendly&#8221; but about interacting with customers. &#8220;It&#8217;s about showing your expertise, putting your opinion out there and answering questions&#8230; If you tweet two or three times a day, people will retweet you and you&#8217;ll be introduced to their followers. It costs nothing to use and small businesses could get a lot out of it.</p></blockquote>
<p>A great article every business should read as a guide to using social media to connect with customers. </p>
<p><a href="http://m.nzherald.co.nz/business/news/article.php?c_id=3&#038;objectid=10722566">Be sociable for success</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://planktonwebdesign.com/171-start-thinking-socially/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NZ Music Teachers Online</title>
		<link>http://planktonwebdesign.com/142-nz-music-teachers-online/</link>
		<comments>http://planktonwebdesign.com/142-nz-music-teachers-online/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 21:24:24 +0000</pubDate>
		<dc:creator>planktonwebdesign</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://planktonwebdesign.com/?p=142</guid>
		<description><![CDATA[I&#8217;ve just launched a new site to help promote NZ Music Teachers. Prior to this site the market was quite fragmented; lots of small niche sites promoting anywhere from 10 &#8211; 60 teachers on a variety of instruments. The goal with this site is to make it a one stop shop for music students to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just launched a new site to help promote <a href="http://www.nzmusicteachers.co.nz">NZ Music Teachers</a>. Prior to this site the market was quite fragmented; lots of small niche sites promoting anywhere from 10 &#8211; 60 teachers on a variety of instruments. The goal with this site is to make it a one stop shop for music students to find a teacher in their area.</p>
<p><a href="http://www.nzmusicteachers.co.nz"><img class="aligncenter size-medium wp-image-143" title="NZ Music Teachers Online" src="http://planktonwebdesign.com/wp-content/uploads/2011/04/Screen-shot-2011-04-18-at-9.15.43-AM-450x455.png" alt="" width="450" height="455" /></a></p>
<p>Teachers have the option to sign up for a variety of accounts from free plans to fully featured options which include a listing in the sidebar/homepage, multimedia and images. I feel when looking for a teacher it is really helpful to hear them play and see them too. You get a feel for who they are and what they do which is important and this site does it.</p>
<p>It&#8217;s still new (April 2011) but I imagine it will grow over the next couple of weeks as teachers hear about it and jump on board.</p>
<p>As a special offer teachers who register in April 2011 get a free upgrade to an images plan!</p>
]]></content:encoded>
			<wfw:commentRss>http://planktonwebdesign.com/142-nz-music-teachers-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

