<?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; browser</title>
	<atom:link href="http://nasarik.com/tag/browser/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>Spoon run in to trouble with Microsoft</title>
		<link>http://nasarik.com/spoon-trouble/</link>
		<comments>http://nasarik.com/spoon-trouble/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 23:22:23 +0000</pubDate>
		<dc:creator>nasarik</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[Spoon]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://nasarik.com/?p=868</guid>
		<description><![CDATA[Recently I posted on my discovery of spoon.net, a service which allowed you to virtually run web browsers on a PC with no install for free. This service seemed to answer the cross-browser testing problem for all PC based web designers; until I re-visited the site again in the last few weeks and discovered Microsoft [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm5.static.flickr.com/4103/5030479721_a36d83a654.jpg" alt="Virtually run apps with Spoon" /></p>
<p>Recently I posted on my discovery of <a href="http://www.spoon.net/browsers/" target="_blank">spoon.net</a>, a service which allowed you to virtually run web browsers on a PC with no install for free.  This service seemed to answer the cross-browser testing problem for all PC based web designers; until I re-visited the site again in the last few weeks and discovered Microsoft support had been stopped.</p>
<p><span id="more-868"></span>As I am a Mac based designer I hadn&#8217;t been using the service that often, so when I revisited the service to see if Mac support had been added I was stunned to see IE had been removed. I was greeted with a message explaining that they hoped to have IE support back soon, so I waited a few weeks and visited again, this time the message was a little more vague, it read &#8216;Come back soon for more information on how to use Internet Explorer with Spoon!&#8217;. So it would seem that Microsoft have pulled the plug and after doing a little research discovered that apparently it is to quote a phrase &#8216;violating Microsoft’s intellectual property rights&#8217;.</p>
<p>Just when something as user-friendly as spoon looked like curing the age old issue of cross-browser testing Microsoft come in with their size 9 boots and squashed the most important part of the service. Yet again Microsoft fail to make their already free software totally user friendly and web designers the world over will need to find alternative ways of checking their websites in all versions of IE.  What Microsoft fail to see is the bigger picture, this move will surely just help accelerate and compound the hate for all things IE and even Microsoft in an increasingly competitive browser market?</p>
<p>I personally hope spoon manage to overcome this ridiculous issue with Microsoft, or at very least Microsoft realise they are being so small minded it will ultimately be detrimental to their already floundering business.</p>
<p>Until then if anyone has discovered any great alternatives to the IE testing issue for both Mac and PC please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://nasarik.com/spoon-trouble/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stirring it up virtually, with &#8216;spoon&#8217;</title>
		<link>http://nasarik.com/spoon/</link>
		<comments>http://nasarik.com/spoon/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 21:14:49 +0000</pubDate>
		<dc:creator>nasarik</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[Spoon]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[Virtual]]></category>

		<guid isPermaLink="false">http://nasarik.com/?p=782</guid>
		<description><![CDATA[I am always looking for new and easy ways to test websites I have created in all the modern browsers, and recently stumbled across &#8216;spoon&#8216;. In a nutshell spoon gives you the ability to run any app virtually, with no complex setup or install.  Simply download and install the spoon plug-in and you&#8217;re ready to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm5.static.flickr.com/4103/5030479721_a36d83a654.jpg" alt="Virtually run apps with Spoon" /></p>
<p>I am always looking for new and easy ways to test websites I have created in all the modern browsers, and recently stumbled across &#8216;<a href="http://www.spoon.net/" target="_blank">spoon</a>&#8216;.</p>
<p><span id="more-782"></span></p>
<p>In a nutshell spoon gives you the ability to run any app virtually, with no complex setup or install.  Simply download and install the spoon plug-in and you&#8217;re ready to run a huge selection of open source apps for free including web browsers, media editors, audio players, office suites and the list goes on.</p>
<p>Obviously this appealed to me and certainly seemed like a great way to test my web projects;  with its support for all major versions of IE, Firefox, Chrome, Safari and Opera it would make my life so much easier and bring a more consistent look to my designs across all platforms.  The great thing is that once you have downloaded and installed the plug-in you are only a few clicks away from running any open source app virtually, and for cross browser testing I have been hard pushed to find anything better.</p>
<p>As well as running free open source apps spoon does offer a premium service where developers are able to run and test their own applications.</p>
<p>However, as with most things there are always a few draw-backs.  spoon doesn&#8217;t support Mac; I made some inquiries regarding the development for this and was given the impression it would be quite some time before this was released, late 2011 was the advised date which is a shame for all those Mac based designers out there. Personally I do own a PC laptop, but this certainly doesn&#8217;t give me the best experience when viewing any of my sites.  I also found the service to be inconsistently slow for no reason but in its defence it is still far quicker than any of the alternatives such as browser shots.</p>
<p>spoon is certainly a step in the right direction for both app and cross-browser testing; I would just like to see the support for Mac hurried a little.</p>
]]></content:encoded>
			<wfw:commentRss>http://nasarik.com/spoon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

