<?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>Graphic Design services covering Lancashire the Fylde coast and beyond - nasarik.com &#187; content</title>
	<atom:link href="http://nasarik.com/tag/content/feed/" rel="self" type="application/rss+xml" />
	<link>http://nasarik.com</link>
	<description>If you are looking for print or web media designs then I can help you - I also blog about technology, the web and design</description>
	<lastBuildDate>Tue, 01 May 2012 20:55:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
  <link>http://nasarik.com</link>
  <url>http://nasarik.com/wp-content/themes/sandbox/images/nasarikfav.jpg</url>
  <title>Graphic Design services covering Lancashire the Fylde coast and beyond - nasarik.com</title>
</image>
		<item>
		<title>Don&#8217;t be afraid of responsive design</title>
		<link>http://nasarik.com/responsive-designs/</link>
		<comments>http://nasarik.com/responsive-designs/#comments</comments>
		<pubDate>Sat, 03 Sep 2011 20:56:19 +0000</pubDate>
		<dc:creator>nasarik</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[bullet]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[dependant]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[dimension]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[hype]]></category>
		<category><![CDATA[img]]></category>
		<category><![CDATA[impact]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[journey]]></category>
		<category><![CDATA[Magazine]]></category>
		<category><![CDATA[maximum]]></category>
		<category><![CDATA[nasarik]]></category>
		<category><![CDATA[novice]]></category>
		<category><![CDATA[overview]]></category>
		<category><![CDATA[pixel]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[response]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[size]]></category>
		<category><![CDATA[Smashing]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[version]]></category>
		<category><![CDATA[width]]></category>
		<category><![CDATA[window]]></category>

		<guid isPermaLink="false">http://nasarik.com/?p=1281</guid>
		<description><![CDATA[If you use Twitter, read Smashing Magazine or any of the other leading design blogs on the web, then no doubt you will be aware of responsive design and the impact that the industry knows it will have on all web developers and designers. If you don&#8217;t, then here is an overview of what it [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm7.static.flickr.com/6189/6109968044_50613e24d8.jpg" alt="responsive design" /></p>
<p>If you use Twitter, read Smashing Magazine or any of the other leading design blogs on the web, then no doubt you will be aware of responsive design and the impact that the industry knows it will have on all web developers and designers. If you don&#8217;t, then here is an overview of what it is and why I decided now was the time to get on-board.<span id="more-1281"></span></p>
<h2>So what is response design</h2>
<p>Responsive design is basically adapting a website to appear appropriately dependant on the device being used by the user. This has existed in web design for some time, particularly when a designer has needed to ensure that a site appeared correctly in all web browsers, and more notably IE6. Usual this was achieved by using media queries which detected the browser version and delivered the appropriate style sheet, eliminating the need for crude hacks or work-arounds to create a consistent experience for all.</p>
<p>Today with the introduction of CSS3, we are not simply limited to browser specific queries, we have much more control and can detect a browser screen size and deliver a set of specific styles to that as well. This new ability means that we can choose to build our projects with a set of structured options or alternatively with a fluid response meaning that one site can potentially work comfortably on many devices without a huge amount of work.</p>
<h2>A simple responsive experience, and why?</h2>
<p>With all the hype I simply couldn&#8217;t ignore the seemingly inevitable future for our industry, so I finally bit the bullet and gave it a go. Now, as I have only every really created fixed width designs my first job was to update all my values to percentages so that the design would scale effectively, however, I still wanted to keep a maximum site width, so in addition to the width:100%; value I added the max-width: value as well, specifying my desired pixel dimension (sorry, I know pixel!). So this would give me a desired maximum site look while still giving the overall flexibility of the percentages.</p>
<p>Once the scaling was complete (feel free to test this by resizing the browser window), I then did my research which took me to a great article on <a title="See the article here - Responsive Web Design: What It Is and How To Use It" href="http://coding.smashingmagazine.com/2011/01/12/guidelines-for-responsive-web-design/" target="_blank">Smashing Magazine</a>. Articles like this give invaluable information on all aspects of the responsive design process and I would recommend taking your time to find the most appropriate option before really trying to get to grips with responsive designs. For me however, I explored the <code>'@media </code><code>screen' function</code>, this gave me the control to adapt my design when hitting certain screen dimensions, for example the first thing I tried was to remove content when the screen dimension was that of an iPhone, which looked like this:-</p>
<p>@media screen and (max-width:400px) {<br />
#primary {display:none;}<br />
}</p>
<p>You will see that if you reduce the browser window to below this dimension the sidebar of my site disappears, and the same happens on the iPhone, and that is how the responsive journey of nasarik.com began.</p>
<h2>Stumbling blocks</h2>
<p>I hit a few novice snags along the way which nearly caused me to give up, one of which was the iPhone still scaling my site even though I had included queries. Don&#8217;t panic a simple meta value in your &lt;head&gt; ensures that the iPhone behaves as you would expect and here it is &#8211; &lt;meta name=&#8221;viewport&#8221; content=&#8221;width=device-width; initial-scale=1.0&#8243;&gt;</p>
<p>Finally, testing can be an issue particularly if you don&#8217;t have an iPhone, so try using <a href="http://iphone4simulator.com/" target="_blank">http://iphone4simulator.com/</a> it seems to render perfectly and is free.</p>
<h2>Conclusion</h2>
<p>Responsive design isn&#8217;t to be feared, play with it, try and break your site and see what happens.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://nasarik.com/responsive-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The internet is free and people will fight for it, or at least take it back</title>
		<link>http://nasarik.com/ipad-daily/</link>
		<comments>http://nasarik.com/ipad-daily/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 00:00:47 +0000</pubDate>
		<dc:creator>nasarik</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[Andy Biao]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[bureaucracy]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[Corp]]></category>
		<category><![CDATA[Daily]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[launch]]></category>
		<category><![CDATA[Murdoch]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[premium]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://nasarik.com/?p=934</guid>
		<description><![CDATA[Just  a quick post to mention the new iPad app &#8216;The Daily&#8217; has been launched this week by News Corp;  with its reasonably cheap price and two weeks free offer Murdoch is looking to secure one million subscribers to make the project viable. However, the day after it was launched  the premium content offered by [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm6.static.flickr.com/5297/5417280726_d88f258c32.jpg" alt="The Daily: Indexed, offers 'The Daily' iPad app content for free" /></p>
<p>Just  a quick post to mention the new iPad app &#8216;The Daily&#8217; has been launched this week by News Corp;  with its reasonably cheap price and two weeks free offer Murdoch is looking to secure one million subscribers to make the project viable. However, the day after it was launched  the premium content offered by &#8216;The Daily&#8217; was out there for free!</p>
<p><span id="more-934"></span>A programmer named Andy Biao spent a remarkably short amount of time creating a simple website displaying the newly indexed content for the app. According to Biao, a friend had noticed the content was visible to search engines and so decided to create the site; he feels that these are public articles and should be available freely on the web.</p>
<p>I think that this truly demonstrates that no matter how well large corporations try to control, funnel and sell their online wares there will always be somebody smarter trying to keep it open and free.  I personally am a great believer in a free world wide web, in a time of increasing red tape and bureaucracy this is potentially the last place where we can still be able to express our opinions and read about the world for free.</p>
<p>Interestingly the site is still live two days since its launch, let&#8217;s hope this is a win for the free web.  You can visit Andy Biao&#8217;s great work <a href="http://thedailyindexed.tumblr.com/" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nasarik.com/ipad-daily/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make the most of your RSS feeds</title>
		<link>http://nasarik.com/better-use-rss-feeds/</link>
		<comments>http://nasarik.com/better-use-rss-feeds/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 00:21:36 +0000</pubDate>
		<dc:creator>nasarik</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitterfeed]]></category>

		<guid isPermaLink="false">http://nasarik.com/?p=48</guid>
		<description><![CDATA[Sharing content across the web is not easy, particularly when you start to look into the many and varied ways in which you can broadcast yourself.  However, RSS is a really simple way to feed your content to others, and here are a couple of simple options that wont take over your life. FeedBurner.com allows users [...]]]></description>
			<content:encoded><![CDATA[<p><img class="post_images" src="http://farm4.static.flickr.com/3500/3240060408_5ddec12b79.jpg?v=0" alt="" /></p>
<p>Sharing content across the web is not easy, particularly when you start to look into the many and varied ways in which you can broadcast yourself.  However, RSS is a really simple way to feed your content to others, and here are a couple of simple options that wont take over your life.</p>
<p><span id="more-48"></span><br />
<a href="http://www.feedburner.com" target="_blank"><img src="http://farm4.static.flickr.com/3258/3239256409_118ec2f351.jpg?v=0" border="0" alt="feedburner.com" width="187" height="42" /></a></p>
<p><a href="http://www.FeedBurner.com" target="_blank">FeedBurner.com</a> allows users to subscribe to your content in many different ways, and gives them more freedom in how they receive your content.  From simple subscription using a desktop reader to receiving your content to their email inbox <a href="http://www.FeedBurner.com" target="_blank">FeedBurner.com</a> helps keep the whole process simple, all you need to do is register and submit your RSS feed.  As well as written content <a href="http://www.FeedBurner.com" target="_blank">FeedBurner.com</a> can take the audio from your RSS feed and automatically create a podcast subscription page with added  iTunes functionality.  In a nut-shell <a href="http://www.FeedBurner.com" target="_blank">FeedBurner.com</a> helps you build new relationships with you users.</p>
<p><a href="http://www.twitterfeed.com" target="_blank"><img style="border: 0px;" src="http://farm4.static.flickr.com/3471/3239256443_7bc1b99a9b.jpg?v=0" border="0" alt="twitterfeed.com" width="186" height="59" /></a></p>
<p>If you are already using <a href="http://www.twitter.com" target="_blank">Twitter</a> as a social networking tool then using it to promote your website or blog should be the natural next step.  <a href="http://twitterfeed.com/" target="_blank">Twitterfeed.com</a> tweets your new blog posts or articles via your RSS feed, all you need is an active twitter account, and an RSS feed <a href="http://twitterfeed.com/" target="_blank">twitterfeed.com</a> will do the rest.  I am currently trialing this system through my own blog and am yet to see any real increase in my own traffic, but as with any web content aggregator it will take time to build momentum. </p>
<p><a href="http://www.facebook.com" target="_blank"><img style="border: 0px;" src="http://farm4.static.flickr.com/3343/3239256383_1c1be5c43b.jpg?v=0" border="0" alt="facebook.com" width="128" height="48" /></a></p>
<p>Now this may not seem like the most obvious place to feed RSS to, but <a href="http://www.facebook.com" target="_blank">facebook</a> can be a really clever way to drive traffic back to your blog.  Particularly as your friends are more likely to take a look at your posts and in turn are then potentially more likely to recommend your content to others that aren&#8217;t in your network.  There seem to be a few of these <a href="http://www.facebook.com" target="_blank">facebook</a> apps and each of them has its own issues, however blog RSS reader seems to be the best way of posting your feeds to your <a href="http://www.facebook.com" target="_blank">facebook</a> profile.</p>
<p>If you are going to try any of these methods, or even if you have already tried these or others I would be interested to hear your feedback.  Equally, as I keep twittering I will update with any interesting results that I find.</p>
]]></content:encoded>
			<wfw:commentRss>http://nasarik.com/better-use-rss-feeds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

