<?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>Design Reviver &#187; browser</title>
	<atom:link href="http://designreviver.com/tag/browser/feed/" rel="self" type="application/rss+xml" />
	<link>http://designreviver.com</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2012 14:15:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>HTML Practices Every Developer Shouldn&#8217;t Live Without</title>
		<link>http://designreviver.com/articles/html-practices-every-developer-shouldnt-live-without/</link>
		<comments>http://designreviver.com/articles/html-practices-every-developer-shouldnt-live-without/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 11:43:48 +0000</pubDate>
		<dc:creator>Joel Reyes</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[doctype]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=9603</guid>
		<description><![CDATA[As a starter or a seasoned web developer, we usually tend to skip out on some great practices that we should be using merely because we have never heard about them. To reduce this gap of missing goodies, we cover several practices no developer should live without. Doctype Declaration Many do it, others choose to [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>As a starter or a seasoned web developer, we usually tend to skip out on some great practices that we should be using merely because we have never heard about them. To reduce this gap of missing goodies, we cover several practices no developer should live without.</p>
<p><span id="more-9603"></span></p>
<h4>Doctype Declaration</h4>
<p>Many do it, others choose to not. However, it is in your best interest to declare the doctype in your HTML files for better standards compliance. Browsers usually have their own ways to fix errors you accidentally or unknowingly left in to get the HTML better interpreted. However, as with most browsers, they all have different ways to interpret things and thus, when it comes to individual browsers trying to fix or &#8220;patch&#8221; your errors on the fly, things start to get messy and your website will appear different across these different browsers and platforms.</p>
<p>Therefore, by declaring the doctype, you force these browsers to enter standards compliance mode, which cancels out their correction systems. With this, you can easily locate the errors you have made and be able to fix them to get your website to look and work the same across many browsers and platforms. Think of the doctype as a keycard to open all the doors in a building versus a key that may or may not open a few. You would definitely choose the keycard that opens all the doors rather than a key that may or may not work, the same applies to declaring the doctype so definitely use it, you will be glad you did.</p>
<h4>Meta Description Attribute</h4>
<p><img class="alignnone size-full wp-image-9592" src="http://designreviver.com/wp-content/uploads/2010/09/htmldev-1.jpg" alt="" /></p>
<p>Many search engine optimization radicals always seem to deter us from using the meta description attribute with the argument that search engines do not use them anymore. Actually, they do, but if they are not available, they will use other means to formulate a description about your website. Therefore, as a good practice, always include a meta description attribute with a great description of the website as this is what search engines use to formulate that description right below your title when you search for your website.</p>
<p>To get back to the search engine optimization radicals, they do have a point, especially for those who misuse the meta description attribute. Search engine bots are getting smarter by the day and can detect whether you deliberately misused the attribute or not. Therefore, use it as intended, as this is a gold mind for HTML as well as the key to improved search engine optimization.</p>
<h4>Footer Content</h4>
<p>This HTML practice is a bit subjective however very useful and vital to keeping your website running smoothly. We all have landed on a website that takes a good several seconds to a minute to load anything that is viewable due to the cause of external scripts bogging down on the load time. The way HTML is loaded is in sequential form, from top to bottom, line after line. What this means is, it will halt on a line of code until it is fully interpreted or executed, and in this case, it will wait until the external JavaScript file is fully loaded before proceeding on to the next line.</p>
<p>Therefore, stick this JavaScript code in the footer to have the content that is important to load first. For example, if you have your analytics code such as Google analytics, stick it in the footer right before the end of your body tag so that your website can load the content quicker and not bog down until it reaches the end of your content where users do not have to actually wait for it to load.</p>
<p>The reason this idea is subjective is that some may disagree with the idea of taking JavaScript code outside of the head tags, however, in such situations, it is a better practice to take upon as it is what keeps your website running more efficiently in such a case.</p>
<h4>Using Unordered Lists for Navigation Bits</h4>
<p><img class="alignnone size-full wp-image-9592" src="http://designreviver.com/wp-content/uploads/2010/09/htmldev-2.jpg" alt="" /></p>
<p>Many developers whip up all sorts of concoctions to create a navigation bit. So instead of using the accepted and preferred markup they decide to use a set of divs and all sorts to achieve similar results. This technique is not only inefficient, but it is also very tedious and redundant. Therefore, use unordered lists as a basis for your navigations as the code is simple, the functionality is pretty much completed for you already, and all you need to do is give it some style. Remember, reinventing the wheel is not something you want to do, let alone reinventing it and losing efficiency.</p>
<h4>Leaving Your Front Door Open</h4>
<p>Whenever you are in your home, out of your home, or on your way home, you always have your doors closed and locked. I mean, who would want to leave their home doors unlocked and open when they are not around? Other than the neighbor I once had who left their front door wide open at night, we all know it is a good practice to keep our windows and doors closed when we are not home. Similarly, always close the tags you open for clean and validated markup.</p>
<p>I have seen countless tutorials out there that are available to teach new developers how to code HTML and they almost always leave their tags open such as image tags or break tags. This not only affects the new generation of developers, but it is a terrible practice. Browsers will always attempt to close them for you causing errors and unwanted results, so save yourself from bad practices, and make closing the HTML tags a habit as you do with closing your doors when you leave your home.</p>
<h4>Validate Your Code</h4>
<p><img class="alignnone size-full wp-image-9592" src="http://designreviver.com/wp-content/uploads/2010/09/htmldev-3.jpg" alt="" /></p>
<p>Validating your code helps you keep your code clean from nasty errors you may have missed or unintentionally thrown in.  While having valid code does not indicate you are a great developer or not, it does help eliminate possible errors you may find in the future within many different browsers and platforms. It additionally throws a good image about your practices for your portfolio for future hires.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/articles/html-practices-every-developer-shouldnt-live-without/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>10 Different Ways to Browser Test and Validate Your Website</title>
		<link>http://designreviver.com/tips/10-different-ways-to-browser-test-and-validate-your-website/</link>
		<comments>http://designreviver.com/tips/10-different-ways-to-browser-test-and-validate-your-website/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 10:09:34 +0000</pubDate>
		<dc:creator>Joel Reyes</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[browser test]]></category>
		<category><![CDATA[cross browser]]></category>
		<category><![CDATA[validate]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=9064</guid>
		<description><![CDATA[Whether you are testing themes submitted to your service or your own work, we always find ourselves searching for quick ways to browser test and or validate our work. Sometimes we may end up using a genre of tools to get what we wanted and most of the time we develop a set of favorite [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><strong>Whether you are testing themes</strong> submitted to your service <strong>or your own work</strong>, we always find ourselves searching for quick ways to browser test and or validate our work. Sometimes we may end up using a genre of tools to get what we wanted and most of the time we develop a set of favorite methods and tools to achieve it.<span id="more-9064"></span></p>
<p>Here we cover <strong>10 different ways to validate and browser test your website</strong> to add to your list of methods.</p>
<h4>HTML and CSS Validation Tools</h4>
<h4><a title="W3C HTML and CSS Validation" href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fvalidator.w3.org&sref=rss" target="_blank">W3C HTML and CSS Validation</a></h4>
<p><img class="alignnone size-full wp-image-8656" src="http://designreviver.com/wp-content/uploads/2010/08/validatetest-1.jpg" alt="" /></p>
<p>The W3C set of validation tools happens to be the most popular source to check your code for validation. You can paste code snippets, link to your code, and upload your code to check validation. If you have errors within your code, it returns a nice detailed report for each error highlighting the exact character or set of characters that are invalid. A great tool to use even if you use others that are available out there.</p>
<h4>Integrated Development Environment Validation</h4>
<p>Many integrated development environments and other editors offer built-in code validators right off the fly. While some of these editors may require you to select a button to view whether your code is valid or not, others usually do it right off the bat as you type out the code. Therefore, it helps you catch the errors as you go along to finish your website completely validated without having to go back and fix validity errors.</p>
<h4><a title="Web Developer Toolbar" href="http://redirectingat.com?id=&xs=1&url=https%3A%2F%2Faddons.mozilla.org%2Fen-US%2Ffirefox%2Faddon%2F60&sref=rss" target="_blank">Web Developer Toolbar</a></h4>
<p><img class="alignnone size-full wp-image-8656" src="http://designreviver.com/wp-content/uploads/2010/08/validatetest-2.jpg" alt="" /></p>
<p>This is a Firefox only toolbar; however, because it is so feature-filled, it is worth a mention. The Web Developer toolbar is a great in-browser testing tool containing a plethora of tools for testing your website including resolution tests. However, it also includes a great HTML and CSS validators that works on the fly. If you do not select to view details on validations, you will just be shown two icons that represent whether the code is valid or not.</p>
<p>The toolbar additionally tests other elements than HTML and CSS, so if you need to perform testing on other things within your website, it is a great tool to quickly and easily do so.</p>
<h4><a title="HTML Validator" href="http://redirectingat.com?id=&xs=1&url=https%3A%2F%2Faddons.mozilla.org%2Fen-US%2Ffirefox%2Faddon%2F249&sref=rss" target="_blank">HTML Validator</a></h4>
<p>HTML Validator is another Firefox add on that runs in the background seamlessly. A simple yet affective tool displays whether the HTML to your website is valid, invalid, or consists of warnings.</p>
<p>When doing so, it displays different icons as well as the number of errors and or warnings, and by clicking on these icons, it opens up a nice pane showing you the code snippets that are invalid or contain warnings, as well as details on the errors as well as about the warnings. A great tool for in-browser testing and editing.</p>
<h4>Browser Testing Tools</h4>
<h4>Installing Older Browser Versions</h4>
<p>A really common method to browser testing your website is to install older versions of a plethora of browsers such as Internet Explorer, Firefox, Opera, Safari, and others. The softwares&#8217; websites usually offer older downloads which is a great way to obtain your copies of older versions.</p>
<h4><a title="Adobe BrowserLab" href="http://redirectingat.com?id=&xs=1&url=https%3A%2F%2Fbrowserlab.adobe.com&sref=rss" target="_blank">Adobe BrowserLab</a></h4>
<p><img class="alignnone size-full wp-image-8656" src="http://designreviver.com/wp-content/uploads/2010/08/validatetest-3.jpg" alt="" /></p>
<p>If you are not too keen on the idea of installing multiple pieces of the same software but of different versions to browser test your website, you can give Adobe BrowserLab a try. Adobe BrowserLab is a multi-tabbed browser testing software allowing you to test your website in multiple browsers all from one pane or window.</p>
<p>Additionally, if you need to test your website in the same browsers but from different operating systems, Adobe BrowserLab simulates different operating systems for you, so you do not hassle through switching between them to perform the required testing.</p>
<p>Overall, Adobe BrowserLab is a great piece of software for any designer needing to test their work across many platforms and setups.</p>
<h4>Integrated Development Environment Browser Testing</h4>
<p>Most of our favorite editors have built in tools for browser testing our projects and websites we are creating and or developing. While it may not be too extent with different versions of the same browsers, they do let you connect you installations of different browsers into the single environment for quick, on the fly testing.</p>
<h4><a title="Browser Shots" href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fbrowsershots.org&sref=rss" target="_blank">Browser Shots</a></h4>
<p>Browser Shots has to be the greatest and easiest way to get around to browser testing your website in a genre of browsers. What it does is you provide a URL to the website you would like to browser test, select the browsers and their versions you would like to test your site in from their long list under different operating systems, and hit submit.</p>
<p>They will then return screenshots of how your website looks like per browser selected per operating system. While it might not be an easy task to perform while you are still modifying your website, it is a great method to obtain a mass visualization of how your website looks across a plethora of browsers quickly.</p>
<h4><a title="IETester" href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.my-debugbar.com%2Fwiki%2FIETester%2FHomePage&sref=rss" target="_blank">IETester</a></h4>
<p><img class="alignnone size-full wp-image-8656" src="http://designreviver.com/wp-content/uploads/2010/08/validatetest-4.jpg" alt="" /></p>
<p>If you are always worried about how your website looks like in different versions of Internet Explorer like the rest of us, then IETester is definitely something to consider. IETester is a single interface to test your website from version 5.5 of Internet Explorer to their latest version. It holds a nice Office 2007 design to it as well as a tabbed interface to easily flip through testing panes.</p>
<h4><a title="IE Tab 2" href="http://redirectingat.com?id=&xs=1&url=https%3A%2F%2Faddons.mozilla.org%2Fen-US%2Ffirefox%2Faddon%2F92382&sref=rss" target="_blank">IE Tab 2</a></h4>
<p>IE Tab is a Firefox add on that implements, as its name describes, an Internet Explorer viewing pane designed for cross-browser testing within your Firefox browser. It is a great quick tool to easily test your websites in Internet Explorer on the fly with a click of a button without the hassle of leaving or changing windows between Firefox and Internet Explorer.</p>
<p>To conclude, while there may be a plethora of other tools out there to validate your code and perform browser testing, we covered ten popular methods and tools that will hopefully get you thinking and started on making your own laundry list of browser testing tools as well as HTML and CSS validation tools.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/tips/10-different-ways-to-browser-test-and-validate-your-website/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Aloha Editor, CSS3 Pie, FontFonter &#8211; Impressive Fresh Tools</title>
		<link>http://designreviver.com/general/aloha-editor-css3-pie-fontfonter-impressive-fresh-tools/</link>
		<comments>http://designreviver.com/general/aloha-editor-css3-pie-fontfonter-impressive-fresh-tools/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 08:34:12 +0000</pubDate>
		<dc:creator>speckyboy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[design news]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[photoshop tutorials]]></category>
		<category><![CDATA[user interface]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=8577</guid>
		<description><![CDATA[It is always impressive how many useful and free web apps and tools there are for web designers, and today&#8217;s fresh selection is just that &#8211; very impressive. The Aloha Editor is especially impressive, with its unique live editing features. And there is also CSS3 Pie which will make all CSS3 properties viewable in all [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>It is always impressive how many useful and free web apps and tools there are for web designers, and today&#8217;s fresh selection is just that &#8211; very impressive. The Aloha Editor is especially impressive, with its unique live editing features. And there is also CSS3 Pie which will make all CSS3 properties viewable in all versions of IE (it really does!). If you have the time we recommend you take a look at these tools.</p>
<p><span id="more-8577"></span></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Faloha-editor.com%2F&sref=rss">Aloha Editor &#8211; The HTML5 Editor</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Faloha-editor.com%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/08/dr_tools_01.jpg" alt="Aloha Editor - The HTML5 Editor" width="520"></a></p>
<p>Aloha Editor allows you to edit content you would never imagine you can. It is the world&#39;s first full featured Editor that allows you to edit dynamic content live and in place.<br /><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Faloha-editor.com%2F&sref=rss">Aloha Editor &#8211; The HTML5 Editor</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2F1dl.us%2F&sref=rss">1dl.us &#8211; Your all-in-one tool site</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2F1dl.us%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/08/dr_tools_02.jpg" alt="1dl.us - Your all-in-one tool site" width="520"></a></p>
<p>1dl.us is a useful all-in-one resource, that feature URL shortening, Upload Pics, Pastebin and a Password utility.<br /><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2F1dl.us%2F&sref=rss">1dl.us &#8211; Your all-in-one tool site</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fcss3pie.com%2F&sref=rss">CSS3 PIE: CSS3 decorations for IE</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fcss3pie.com%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/08/dr_tools_03.jpg" alt="CSS3 PIE: CSS3 decorations for IE" width="520"></a></p>
<p>PIE stands for Progressive Internet Explorer. It is an IE attached behavior which, when applied to an element, allows IE to recognize and display a number of CSS3 properties. <br /><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fcss3pie.com%2F&sref=rss">CSS3 PIE: CSS3 decorations for IE</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Ffontfonter.com%2F&sref=rss">FontFonter</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Ffontfonter.com%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/08/dr_tools_04.jpg" alt="FontFonter" width="520"></a></p>
<p>FontFonter uses custom CSS and other techniques to temporarily replace a site’s font styles with Web FontFonts.<br /><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Ffontfonter.com%2F&sref=rss">FontFonter</a></p>
<p>By Paul Andrew (<a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fspeckyboy.com&sref=rss">Speckyboy</a>and <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Ftwitter.com%2Fspeckyboy&sref=rss">speckyboy@twitter</a>).</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/general/aloha-editor-css3-pie-fontfonter-impressive-fresh-tools/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Best Tools for Testing Cross Browser Compatability</title>
		<link>http://designreviver.com/articles/best-tools-for-testing-cross-browser-compatability/</link>
		<comments>http://designreviver.com/articles/best-tools-for-testing-cross-browser-compatability/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 12:52:52 +0000</pubDate>
		<dc:creator>Joel Reyes</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[compatability]]></category>
		<category><![CDATA[cross browser]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=7826</guid>
		<description><![CDATA[Cross-browser compatibility is something that can&#8217;t be overlooked in this day and age. The fact that your website could be viewed one way in Firefox and a completely different way in another browser like Safari can be a stressful thing to cope with. Being able to create and build websites that not only look but [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><strong>Cross-browser compatibility</strong> is something that can&#8217;t be overlooked in this day and age. The fact that your website could be viewed one way in Firefox and a completely different way in another browser like Safari can be a stressful thing to cope with. Being able to create and build websites that not only look but function the way their supposed to in multiple browsers isn&#8217;t a walk in the park.<span id="more-7826"></span></p>
<p>This is why we&#8217;re going to provide you with these useful tools that&#8217;ll help you test for cross-browser compatibility. The process for achieving compatibility across a variety of browsers is building, <em><strong>testing</strong></em> and fixing.</p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fbrowsershots.org%2F&sref=rss">Browser Shots</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fbrowsershots.org%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/06/crosstest-1.jpg" alt="" /></a></p>
<p>Browsershots makes screenshots of your web design in different operating systems and browsers. It is a free open-source online web application providing developers a convenient way to test their website&#8217;s browser compatibility in one place. When you submit your web address, it will be added to the job queue.</p>
<p>A number of distributed computers will open your website in their browser. Then they will make screenshots and upload them to the browsershot central <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwebhostingrating.com%2Fdedicated-server-hosting%2F&sref=rss">dedicated server</a> for your review.</p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fcrossbrowsertesting.com%2F&sref=rss">Cross Browser Testing</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fcrossbrowsertesting.com%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/06/crosstest-2.jpg" alt="" /></a></p>
<p>This tool allows you to pick an operating system and browser and that&#8217;s that! You will receive nicely structured  screenshots on multiple browsers of your site.</p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=https%3A%2F%2Fbrowserlab.adobe.com%2Fen-us%2Findex.html&sref=rss">Adobe Browser Lab</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=https%3A%2F%2Fbrowserlab.adobe.com%2Fen-us%2Findex.html&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/06/crosstest-3.jpg" alt="" /></a></p>
<p>Accurately pinpoint compatibility issues and compare web pages at a glance to easily identify differences and potential problems. Preview full screenshots with multiple view options and customizable test settings.</p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fexpression.microsoft.com%2Fen-us%2Fdd565874.aspx&sref=rss">SuperPreview</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fexpression.microsoft.com%2Fen-us%2Fdd565874.aspx&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/06/crosstest-4.jpg" alt="" /></a></p>
<p>SuperPreview is to be used in conjuction with Microsoft Expression Web 3 in order to test and preview your web pages in multiple browsers at the same time. You can choose a variety of browsers and specify any page you&#8217;d like the application to render for compatability testing.</p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fspoon.net%2Fbrowsers%2F&sref=rss">Spoon Browser Sandbox</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fspoon.net%2Fbrowsers%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/06/crosstest-5.jpg" alt="" /></a></p>
<p>The Spoon Browser Sandbox places several browsers with the click of a few buttons at your disposal with very little effort. You&#8217;re able to test several pages quickly without any issues.</p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.my-debugbar.com%2Fwiki%2FIETester%2FHomePage&sref=rss">IETester</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.my-debugbar.com%2Fwiki%2FIETester%2FHomePage&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/06/crosstest-6.jpg" alt="" /></a></p>
<p>IETester is a free WebBrowser  that allows you to have the rendering and javascript engines of IE9 preview, IE8, IE7 IE 6 and IE5.5 on Windows 7, Vista and XP, as well as the installed IE in the same process.</p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fipinfo.info%2Fnetrenderer%2F&sref=rss">NetRenderer</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fipinfo.info%2Fnetrenderer%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/06/crosstest-7.jpg" alt="" /></a></p>
<p>IE NetRenderer allows you to check how a website is rendered by Internet Explorer 7, 6 or 5.5, as seen from a high speed datacenter located in Germany. Just type in a URL and try it out; it&#8217;s free.</p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.browsrcamp.com%2F&sref=rss">BrowsrCamp</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.browsrcamp.com%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/06/crosstest-8.jpg" alt="" /></a></p>
<p>Browsrcamp lets you take control over a Mac OS X system preconfigured with all the Mac browsers. This is the easiest way to test every aspect of your website on Mac, including Javascript, DHTML, Ajax, Flash and more!</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/articles/best-tools-for-testing-cross-browser-compatability/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Do You Support IE6 in New Projects?</title>
		<link>http://designreviver.com/general/do-you-support-ie6-in-new-projects/</link>
		<comments>http://designreviver.com/general/do-you-support-ie6-in-new-projects/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 15:36:10 +0000</pubDate>
		<dc:creator>speckyboy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[design news]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=6117</guid>
		<description><![CDATA[One of the most popular and hotly disputed questions on Answers recently has been &#8220;Do you support IE6 in new projects?&#8220;. IE6 has certainly been a thorn on every web designers side for a very long time, perhaps too long. Has the time finally arrived to stop supporting it? Should web designers still show a [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>One of the most popular and hotly disputed questions on Answers recently has been &#8220;<a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F240%2F&sref=rss">Do you support IE6 in new projects?</a>&#8220;. IE6 has certainly been a thorn on every web designers side for a very long time, perhaps too long. Has the time finally arrived to stop supporting it? Should web designers still show a little consideration for this web browsing relic? What do you think?</p>
<p><span id="more-6117"></span></p>
<p>The questions was originally asked by <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2Fmember%2F134&sref=rss">Maxt3r</a> and so far has received 22 answers, some designers still do support it, others don&#8217;t and some even charge extra for supporting it, you can see these answers below.</p>
<p>Another good week on Answers, our member base has grown to over 490 members. Thanks for all your support!</p>
<p><strong><em>&#8220;<a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F&sref=rss">Have you asked a question yet?</a>&#8220;</em></strong></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F240%2F&sref=rss">Do you support ie6 in new projects?</a></h4>
<p>Question originally asked by <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2Fmember%2F134&sref=rss">Maxt3r</a>.</p>
<p>Answer from <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2Fmember%2F145&sref=rss">Hoad</a>:</p>
<blockquote><p>I work in the Web Development team for the British children&#8217;s charity Barnardo&#8217;s and can confirm that yes, we do still support IE6 in new projects. Having said that, we will be very happy when the day comes that this ancient web browser is finally obsolete.</p></blockquote>
<p>Answer from <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2Fmember%2F142&sref=rss">Darren Nickerson</a>:</p>
<blockquote><p>I think it depends on what kind of site im creating, if it&#8217;s a design related site I wouldn&#8217;t even think about it. Most people who use those sites, update their browser. But if I was doing a site for a general subject where casual internet users may use the site I would try to support it as much as possible</p></blockquote>
<p>Answer from <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2Fmember%2F223&sref=rss">Rochelledancel</a>:</p>
<blockquote><p>It depends on the client.  If their analytics data shows that a significant number of their visitors use IE6, it&#8217;s a no brainer, but I will also throw up an &#8216;upgrade to a better browser for free&#8217; message and explain to the client why this is beneficial to everyone.  Also, if they&#8217;re a charity or government office then yes, I&#8217;ll pitch and quote to include IE6 support.<br />
Otherwise, I don&#8217;t support it, and I make it very clear to the client at the outset why I don&#8217;t; if they still push for it I&#8217;ll charge them a premium.</p></blockquote>
<p>Answer from <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2Fmember%2F160&sref=rss">Lacy </a>:</p>
<blockquote><p>Definitely. If you&#8217;re in a professional environment &#8230; You have to support it. Looks at your analytics &#8211; and you&#8217;ll see that unfortunately there is still a large percentage of people using IE6.</p></blockquote>
<p>Answer from <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2Fmember%2F141&sref=rss">Cy Klassen</a>:</p>
<blockquote><p>No. I will occasionally redirect IE6 users to a nice static page that shows the advantages of updating their browser (including simple steps how to upgrade). That seems like enough support to me.</p></blockquote>
<p>Answer from <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2Fmember%2F160&sref=rss">Lacy</a>:</p>
<blockquote><p>I don&#8217;t.  I mention this in my contract to clients.  If they request support for IE6 I will add it in.<br />
I would only advise a client to have support if I feel their target market is likely to use IE6.<br />
<br />
If I develop a site without support and then find out in the analytics that there is a high percentage of people &#8216;trying&#8217; to use the site with IE6 I would add support later on.<br />
<br />
I would charge more for IE6 support.</p></blockquote>
<h4>What do you think? Do you support IE6 in new projects?</h4>
<p>We would love to hear what you think in the comments below or you can leave your answer here: <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fanswers.designreviver.com%2F240%2F&sref=rss">Do you support ie6 in new projects? on Answers</a>.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/general/do-you-support-ie6-in-new-projects/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Exploring the New Features of CSS3</title>
		<link>http://designreviver.com/tips/exploring-the-new-features-of-css3/</link>
		<comments>http://designreviver.com/tips/exploring-the-new-features-of-css3/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 11:56:16 +0000</pubDate>
		<dc:creator>speckyboy</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[design news]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=6057</guid>
		<description><![CDATA[There has been a tidal wave of buzz recently about all the new CSS3 features and properties. Just what exactly do these new properties mean for web designers, though? Well, CSS3 is pretty cool, no longer will you need to rely as much on graphics or Javascript, and more importantly it allows for better control [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>There has been a tidal wave of buzz recently about all the new CSS3 features and properties. Just what exactly do these new properties mean for web designers, though? Well, CSS3 is pretty cool, no longer will you need to rely as much on graphics or Javascript, and more importantly it allows for better control over HTML elements, allowing you to create more flexible and even more complex web sites. Really, whats not to love about it all?<br /><span id="more-6057"></span></p>
<p>For today&#8217;s news we have collected the best articles that focus on CSS3 tutorials, and give you a little insight to what all the buzz is about.</p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fbluefaqs.com%2F2010%2F03%2Funderstanding-the-basics-of-css3%2F&sref=rss">Understanding The Basics Of CSS3</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fbluefaqs.com%2F2010%2F03%2Funderstanding-the-basics-of-css3%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/03/css3_tut_01.jpg" alt="CSS3 Tutorials" /></a></p>
<p>In this article,the author talks about some of the more popular features of CSS3 that have recently been spotted out in the wild among several popular websites. While most of these are only visible in some of the more modern web browsers (Mozilla, Chrome, Safari) it’s important to go ahead and get a grasp of exactly how they actually work.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fbluefaqs.com%2F2010%2F03%2Funderstanding-the-basics-of-css3%2F&sref=rss">Understanding The Basics Of CSS3</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.dzinepress.com%2F2010%2F03%2F50-excellent-tutorials-for-web-development-using-css3%2F&sref=rss">50 Excellent Tutorials for Web Development Using CSS3</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.dzinepress.com%2F2010%2F03%2F50-excellent-tutorials-for-web-development-using-css3%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/03/css3_tut_02.jpg" alt="CSS3 Tutorials" /></a></p>
<p>In this emerging roundup they mphasis on some of the latest techniques: text-shadow, rounded box, box sizing, opacity handlers, multiple backgrounds, border images and also support for multi-column web layouts.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.dzinepress.com%2F2010%2F03%2F50-excellent-tutorials-for-web-development-using-css3%2F&sref=rss">50 Excellent Tutorials for Web Development Using CSS3</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fsixrevisions.com%2Fcss%2Fbasic-css3-techniques-that-you-should-know%2F&sref=rss">Basic CSS3 Techniques That You Should Know</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fsixrevisions.com%2Fcss%2Fbasic-css3-techniques-that-you-should-know%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/03/css3_tut_03.jpg" alt="CSS3 Tutorials" /></a></p>
<p>This article, from Six Revisions, takes a look at a few of the essential things you need to know about CSS3. With all of these new features, it’s important to place emphasis on the most important ones to get you up to speed. Even though only the most modern of web browsers (Safari, Mozilla, Opera) currently (partially or fully) support CSS3 specs, it’s an exciting time for those who like to experiment.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fsixrevisions.com%2Fcss%2Fbasic-css3-techniques-that-you-should-know%2F&sref=rss">Basic CSS3 Techniques That You Should Know</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fspeckyboy.com%2F2010%2F03%2F15%2F15-css3-navigation-and-menu-tutorials-and-techniques%2F&sref=rss">15 CSS3 Navigation and Menu Tutorials and Techniques</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fspeckyboy.com%2F2010%2F03%2F15%2F15-css3-navigation-and-menu-tutorials-and-techniques%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/03/css3_tut_04.jpg" alt="CSS3 Tutorials" /></a></p>
<p>Please bare in mind that for the most part all of these menu tutorials have not been written for usage in the wild, they are more experimental, a demonstration of what can be achieved and will be used in the near future.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fspeckyboy.com%2F2010%2F03%2F15%2F15-css3-navigation-and-menu-tutorials-and-techniques%2F&sref=rss">15 CSS3 Navigation and Menu Tutorials and Techniques</a></p>
<p>By Paul Andrew (<a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fspeckyboy.com&sref=rss">Speckyboy</a> and <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Ftwitter.com%2Fspeckyboy&sref=rss">speckyboy@twitter</a>).</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/tips/exploring-the-new-features-of-css3/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fresh CSS Tips, Techniques and Tools</title>
		<link>http://designreviver.com/tips/fresh-css-tips-techniques-and-tools/</link>
		<comments>http://designreviver.com/tips/fresh-css-tips-techniques-and-tools/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 08:50:39 +0000</pubDate>
		<dc:creator>speckyboy</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design news]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=4892</guid>
		<description><![CDATA[There is seemingly no end to the conyer belt that is CSS development. Every day there are new tips and techniques being published with fresh ideas and new solutions to age old problems. keeping up with it all is not easy. In today&#8217;s news round-up we have collected some fresh CSS reources and some good [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>There is seemingly no end to the conyer belt that is CSS development. Every day there are new tips and techniques being published with fresh ideas and new solutions to age old problems. keeping up with it all is not easy.<br /><span id="more-4892"></span><br />
In today&#8217;s news round-up we have collected some fresh CSS reources and some good CSS reading to keep you in the loop.</p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fcss-tricks.com%2Fhow-to-create-an-ie-only-stylesheet%2F&sref=rss">How To Create an IE-Only Stylesheet</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fcss-tricks.com%2Fhow-to-create-an-ie-only-stylesheet%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/01/csstips1.jpg" alt="CSS Tips and Techniques" /></a></p>
<p>Hacks are dangerous, since they are based on non-standard exploits, you can’t predict how they are going to behave in future browsers. The tool of choice for fighting IE problems is the conditional stylesheet. </p>
<p>IE provides comment tags, supported all the way up to the current IE 8 to target specific versions, as well as greater-than/less-than stuff for targeting multiple versions at once.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fcss-tricks.com%2Fhow-to-create-an-ie-only-stylesheet%2F&sref=rss">How To Create an IE-Only Stylesheet</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.webdesignerdepot.com%2F2010%2F01%2Fcss-transitions-101%2F&sref=rss">CSS Transitions 101</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.webdesignerdepot.com%2F2010%2F01%2Fcss-transitions-101%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/01/csstips2.jpg" alt="CSS Tips and Techniques" /></a></p>
<p>Transitions have been a part of Webkit for a while and are the basis of a lot of the cool things that the Safari UI can do that other browsers cannot. But the W3C CSS Workgroup resisted adding transitions to its official specs, some members arguing that transitions are not style properties and would be better handled by a scripting language. </p>
<p>But many designers and developers argued that these are in fact styles— only dynamic styles, rather than the traditional static styles that so many of us are used to. </p>
<p>Fortunately, the argument for dynamic styles held the day. Last March, representatives from Apple and Mozilla began adding the CSS Transitions Module to the CSS Level 3 specification, closely modeled on what Apple had already added to Webkit.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.webdesignerdepot.com%2F2010%2F01%2Fcss-transitions-101%2F&sref=rss">CSS Transitions 101</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.designdazzling.com%2F2010%2F01%2Fcss-transparency-in-all-the-browsers%2F&sref=rss">CSS Transparency in All The Browsers</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.designdazzling.com%2F2010%2F01%2Fcss-transparency-in-all-the-browsers%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/01/csstips3.jpg" alt="CSS Tips and Techniques" /></a></p>
<p>There are many many cross-browser issues and transparency is one of those weird issues that crops up more than most. All the browsers do treat transparency in different ways, and to overcome this issue we need to define three different properties to cover all browsers.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.designdazzling.com%2F2010%2F01%2Fcss-transparency-in-all-the-browsers%2F&sref=rss">CSS Transparency in All The Browsers</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.designer-daily.com%2F12-really-useful-css-tools-5364&sref=rss">12 really useful CSS tools</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.designer-daily.com%2F12-really-useful-css-tools-5364&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/01/csstips4.jpg" alt="CSS Tips and Techniques" /></a></p>
<p>Working on a website’s CSS can be quite an enjoyable job. However some of the tasks aren’t always fun. This is why there are tons of cool CSS tools and apps, to make your life easier and keep web designers’ work bearable.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.designer-daily.com%2F12-really-useful-css-tools-5364&sref=rss">12 really useful CSS tools</a></p>
<p>By Paul Andrew (<a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fspeckyboy.com&sref=rss">Speckyboy</a> and <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Ftwitter.com%2Fspeckyboy&sref=rss">speckyboy@twitter</a>).</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/tips/fresh-css-tips-techniques-and-tools/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>The Best Google Chrome Extensions</title>
		<link>http://designreviver.com/general/the-best-google-chrome-extensions/</link>
		<comments>http://designreviver.com/general/the-best-google-chrome-extensions/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 16:58:09 +0000</pubDate>
		<dc:creator>speckyboy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[design news]]></category>
		<category><![CDATA[extensions]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=4771</guid>
		<description><![CDATA[Last month Google, finally, opened up there extension directory for Google Chrome. The bog-standard browser is pretty good as it is &#8211; its very fast (beating Firefox with ease) and seems to render most web pages properly (I know, it wouldn&#39;t be hard to beat IE). So, thumbs up so far. Now with the added [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>Last month Google, finally, opened up there <a href="http://redirectingat.com?id=&xs=1&url=https%3A%2F%2Fchrome.google.com%2Fextensions&sref=rss">extension directory</a> for Google Chrome. The bog-standard browser is pretty good as it is &#8211; its very fast (beating Firefox with ease) and seems to render most web pages properly (I know, it wouldn&#39;t be hard to beat IE). So, thumbs up so far. <span id="more-4771"></span>Now with the added functionality of extensions you can make Chrome just as powerful as Firefox, and as a bonus you don&#39;t seem to lose any speed, something FF struggles with. </p>
<p>It all sounds good, doesn&#39;t it&#8230; There are some down-sides, though &#8211; some of the extensions are a little bit buggy (most are still in Beta) and others do lack a fair bit of polish. But if you choose your extensions carefully you will be able to build yourself a great web browsing environment. </p>
<p>Remember, the extensions directory has only just opened, with time Chrome and its extensions may just win the web browser war&#8230; Then again Firefox may come back fighting back, it always has done, hasn&#39;t it?</p>
<p>In today&#8217;s news round-up we have collected the best resources to help you choose best extensions for Chrome.</p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.techcrunch.com%2F2009%2F12%2F05%2F11-chrome-extensions-for-starters%2F&sref=rss">11 Chrome Extensions, For Starters</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.techcrunch.com%2F2009%2F12%2F05%2F11-chrome-extensions-for-starters%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/01/chromeext1.jpg" alt="Google Chrome Extensions" /></a></p>
<p>Google promised that Chrome would be fast to launch and fast to load web pages, but people predicted it would fail with the arrival of its extensions. Well, the extensions are here (at least for some of us) and surprisingly they do not affect the browser’s performance.</p>
<p>Here are a 11 cool extensions to get you started and ease you into your possible transitions to Chrome. Maybe not yet.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.techcrunch.com%2F2009%2F12%2F05%2F11-chrome-extensions-for-starters%2F&sref=rss">11 Chrome Extensions, For Starters</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fspeckyboy.com%2F2010%2F01%2F04%2Fcreating-a-web-development-environment-using-google-chrome-extensions%2F&sref=rss">Creating a Web Development Environment using Google Chrome Extensions</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fspeckyboy.com%2F2010%2F01%2F04%2Fcreating-a-web-development-environment-using-google-chrome-extensions%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/01/chromeext2.jpg" alt="Google Chrome Extensions" /></a></p>
<p>How powerful can Chrome actually be for designers and developers? In just under a month there are dozens upon dozens of new extensions specifically developed for web developers, and in this article they have collected the best and most useful extensions for creating your own personal Google Chrome web development environment.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fspeckyboy.com%2F2010%2F01%2F04%2Fcreating-a-web-development-environment-using-google-chrome-extensions%2F&sref=rss">Creating a Web Development Environment using Google Chrome Extensions</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Flifehacker.com%2F5445690%2Fmake-the-most-of-chrome-with-these-13-excellent-extensions&sref=rss">Make the Most of Chrome with These 13 Excellent Extensions</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Flifehacker.com%2F5445690%2Fmake-the-most-of-chrome-with-these-13-excellent-extensions&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/01/chromeext3.jpg" alt="Google Chrome Extensions" /></a></p>
<p>Lifehacker, in this article, have pulled 13 fresh extensions from the  extension gallery that were worthy of highlighting. They all have something a bit different from the widely-available bookmarklets, or at least fill a crucial need for those who use the web productively.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Flifehacker.com%2F5445690%2Fmake-the-most-of-chrome-with-these-13-excellent-extensions&sref=rss">Make the Most of Chrome with These 13 Excellent Extensions</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.blackweb20.com%2F2010%2F01%2F11%2Fcreating-your-own-google-chrome-extension%2F&sref=rss">How To Create Your Own Google Chrome Extension</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.blackweb20.com%2F2010%2F01%2F11%2Fcreating-your-own-google-chrome-extension%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2010/01/chromeext4.jpg" alt="Google Chrome Extensions" /></a></p>
<p>Developing your own Google Chrome extension is surprisingly easy. You might think you need all types of development skills and coding knowledge, but it’s really no more difficult than creating or tweaking a web page. If you know HTML/CSS and are somewhat familiar with Javascript, you can have a simple extension up and running in no time.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.blackweb20.com%2F2010%2F01%2F11%2Fcreating-your-own-google-chrome-extension%2F&sref=rss">How To Create Your Own Google Chrome Extension</a></p>
<p>By Paul Andrew (<a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fspeckyboy.com&sref=rss">Speckyboy</a> and <a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Ftwitter.com%2Fspeckyboy&sref=rss">speckyboy@twitter</a>).</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/general/the-best-google-chrome-extensions/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How To: Designing A Mobile Website</title>
		<link>http://designreviver.com/tips/how-to-designing-a-mobile-website/</link>
		<comments>http://designreviver.com/tips/how-to-designing-a-mobile-website/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 13:44:53 +0000</pubDate>
		<dc:creator>Joel Reyes</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=3619</guid>
		<description><![CDATA[Over 2 billion mobile phone users have access to the web on a global scale. About 700 million of these users have or continue to use their mobile browsers to search the web on a consistent basis. As these numbers increase, the need for crisp, clean, and usable mobile websites are in high demand. Website [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>Over <strong>2 billion mobile phone users</strong> have access to the web on a global scale. About 700 million of these users have or continue to use their mobile browsers to search the web on a consistent basis. As these numbers increase, the need for crisp, clean, and usable mobile websites are in high demand. <span id="more-3619"></span></p>
<p>Website owners with a large audience have already seen the benefits of having a <strong>mobile platform</strong> service their users. Just as many advancements in web development have become the standard, in the near future it&#8217;s predicted mobile websites will be at the forefront, and will also become more of a necessity rather than a commodity or luxury.</p>
<p>In order to design a simple, effective, and <strong>attractive mobile website</strong>, there are a few ingredients that we need to add into the mix. This article should satisfy all of your basic needs for a mobile platform on your site.</p>
<h2>Mobile Markup</h2>
<p><a href="http://designreviver.com/wp-content/uploads/2009/11/mobile-01.jpg"><img class="alignnone size-full wp-image-3621" src="http://designreviver.com/wp-content/uploads/2009/11/mobile-01.jpg" alt="mobile-01" width="500" height="310" /></a></p>
<p>When designing your mobile site, there are a few different types of markup languages available for you to use. The most widely used markup throughout the infancy of mobile devices was WML or <strong>Wireless Markup Language</strong>. This was because the only way to surf the web through a wireless device was to browse WAP (<strong>Wireless Application Protocol</strong>) sites. These where sites that used WML as their only source of markup language.</p>
<p>Since the web is an ever-evolving organism, it is only logical that such an advancement would only be superseded by a new solution. This is where XHTML steps into the picture. A majority of the phones made today fully support XHTML. A mobile phone recognizes two aspects of HTML; XHTML and XHTML-MP. <strong>XHTMLP-MP</strong> stands for &#8220;Mobile Profile&#8221;. The difference between the two lies in the ability for you to use fewer elements that give way to tighter restrictions. This makes it easier for a mobile device to parse and render a web document when using XHTML-MP.</p>
<h2>Minimalist Designs</h2>
<p>A huge misconception a great deal of web developers make when designing for the mobile web is thinking that they can cram all of the usual sites content and overall design effectively into the screen of a mobile user&#8217;s device. Simply said, there are features on your site that just won&#8217;t work on a mobile platform. Once you take this into account, then you will be able to respectively design a much more usable site for mobile users. </p>
<p>You have to learn to make good use of simple features and minimalist standards. A good example would be Best Buy&#8217;s mobile version of their site. The only two functions found on their site is to search for a product or find a store. This mobile site can&#8217;t even be compared to the original site, however it gets that job done.</p>
<p><a href="http://designreviver.com/wp-content/uploads/2009/11/mobile-02.png"><img class="alignnone size-full wp-image-3622" src="http://designreviver.com/wp-content/uploads/2009/11/mobile-02.png" alt="mobile-02" width="320" height="375" /></a></p>
<p>You&#8217;re looking to design a mobile site that satisfies the basic needs of your visitors, rather than one made for comfort.</p>
<h2>Knowing Your Target Audience</h2>
<p><a href="http://designreviver.com/wp-content/uploads/2009/11/mobile-03.gif"><img class="alignnone size-full wp-image-3623" src="http://designreviver.com/wp-content/uploads/2009/11/mobile-03.gif" alt="mobile-03" width="387" height="387" /></a></p>
<p>When you&#8217;re designing a website, you have in mind the likely users. And being able to design for your specific audience will make all the difference in the success of your site. Developing a mobile site shouldn&#8217;t be any different. As the designer you need to take into account the type of visitor that is more likely to be attracted to the content on your site. Apart from that, you will need to know what sort of functions they would like your site to shelf out.</p>
<p>Try not to force visitors to have to log-in or have to click items several times before reaching any vital content. This can easily discourage a visitor and turn them away from your site. This is simply because data entry on a mobile device is much more difficult then on a desktop or laptop. Overall, you need to take all aspects of your design into consideration.</p>
<h2>Mobile Usability</h2>
<p><a href="http://designreviver.com/wp-content/uploads/2009/11/mobile-04.png"><img class="alignnone size-full wp-image-3620" src="http://designreviver.com/wp-content/uploads/2009/11/mobile-04.png" alt="mobile-04" width="258" height="276" /></a></p>
<p>By now, you&#8217;ve probably figured out that designing for mobile is hard. And although many times difficult, not impossible. More recent then anything a manufacturer that produces the average mobile device seldom worries about usability when it comes to the web. They leave it up to the consumer and their <strong>search dominant</strong> devices. In times when WAP was mainly used for mobile browsing you could reach different applications and sites a bit quicker. This was of course due to a mobile devices restriction to using the web for whatever the manufacturer chose, in example, games, downloading apps, weather services, and more. </p>
<p>In today&#8217;s market we find mobile phones that are capable of virtually scaling through every &#8220;inch&#8221; of the web. This means that it will more than likely take a you a longer time to reach your destination if your always have to type in where you need to go. This is excluding mobile phones heavily reliant on apps, such as the iPhone or Blackberries.</p>
<p>With this being said, simplicity is the best way to go when considering your mobile sites level of usability. <a title="Mobile Usability Study Findings" href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.useit.com%2Falertbox%2Fmobile-usability.html&sref=rss">Here</a> you will find a great article on mobile usability.</p>
<h2>Choosing a Good Domain Name</h2>
<p><a href="http://designreviver.com/wp-content/uploads/2009/11/mobile-05.1.jpg"><img class="alignnone size-full wp-image-3624" src="http://designreviver.com/wp-content/uploads/2009/11/mobile-05.1.jpg" alt="mobile-05.1" width="420" height="193" /></a></p>
<p>One of the most important steps is choosing a good URL for the mobile version of your site. Several options include creating a sub-folder (mobile) in the root of your site allowing you to publish your site using the following URL: &#8220;http://www.yoursite.com/mobile&#8221;. You can also use a completely separate domain altogether such as &#8220;www.domain-mobile.com&#8221; or a <strong>.mobi</strong> domain: &#8220;www.yoursite.mobi&#8221;.</p>
<p>Whichever way you choose, when identifying your mobile sites domain, you should note that users are likely to mistake your domain name with others and this should motivate you to use a few different names as mentioned above to be sure.</p>
<h2>Validating Your Code</h2>
<p><a href="http://designreviver.com/wp-content/uploads/2009/11/mobile-06.jpg"><img class="alignnone size-full wp-image-3625" src="http://designreviver.com/wp-content/uploads/2009/11/mobile-06.jpg" alt="mobile-06" width="500" height="181" /></a></p>
<p>Whether you choose to code your mobile site in XHTML or XHTML-MP you must check, validate, and revise your markup, over and over again. Most of the time you can use a normal desktop browser in order to check your markup, that&#8217;s if you&#8217;re mostly developing in XHTML. Here are a few links and tools that will help you validate your code:</p>
<ul>
<li><a class="sublink" href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fvalidator.w3.org%2Fmobile%2F&sref=rss">W3C Validator: Mobile Specific</a></li>
<li><a class="sublink" href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fready.mobi%2F&sref=rss">Ready.mobi site: Specific Mobile Checks</a></li>
</ul>
<p>Please note that after your code has been validated and everything seems to be fine, then you will need to access your mobile site through several different phones in order to properly test your actual site. This will allow you to experience your mobile sites strengths and vulnerabilities first hand.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/tips/how-to-designing-a-mobile-website/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>IE8 is definetly not, Geeky Furniture might be and Card.ly is &#8230; Cool</title>
		<link>http://designreviver.com/general/ie8-is-definetly-not-geeky-furniture-might-be-and-card-ly-is-cool/</link>
		<comments>http://designreviver.com/general/ie8-is-definetly-not-geeky-furniture-might-be-and-card-ly-is-cool/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 19:00:28 +0000</pubDate>
		<dc:creator>speckyboy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[furniture]]></category>
		<category><![CDATA[IE8]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=1460</guid>
		<description><![CDATA[Todays news features a new web service, called card.ly. The idea behind it is very simple, much a-like Twitter, in simplicty terms, you'll love it. We also have the most outrageous geek furniture that your wife would never allow you to buy and, finally, the "The Battle of the Browsers" results are in, no surprises to be honest.]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>Todays news features a new web service, called card.ly. The idea behind it is very simple, much a-like Twitter, in simplicty terms, you&#8217;ll love it. We also have the most outrageous geek furniture that your wife would never allow you to buy and, finally, the &#8220;The Battle of the Browsers&#8221; results are in, no surprises to be honest.</p>
<p><span id="more-1460"></span></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.card.ly%2F&sref=rss">Card.ly</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.card.ly%2F&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/07/newsimage1.jpg" alt="Card.ly" width="485" /></a></p>
<p>card.ly is a new online service that has potential to be big.  Basically you create a tiny a portfolio (all the themes are styled like a business card) by integrating all your social networks, it could be Facebook, Twitter, YouTube, Digg, Delicious&#8230; then you add a little bio and your contact details, and you are good to go. Cool.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.card.ly%2F&sref=rss">Sigup for your own Card.ly</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.cracked.com%2Farticle_17550_10-geekiest-pieces-furniture-in-universe.html&sref=rss">The 10 Geekiest Pieces of Furniture in the Universe</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.cracked.com%2Farticle_17550_10-geekiest-pieces-furniture-in-universe.html&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/07/newsimage2.jpg" alt="The 10 Geekiest Pieces of Furniture in the Universe" width="450" /></a></p>
<p>This post, from cracked.com, is for all the geeks out there (99% of us, then), with too much money and who take there obsessions a little too far. The giant rubiks cube looks cools, as does the Han Solo table, some of them though&#8230;I just know the wife would say no.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.cracked.com%2Farticle_17550_10-geekiest-pieces-furniture-in-universe.html&sref=rss">The 10 Geekiest Pieces of Furniture in the Universe</a></p>
<h4><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.pcmag.com%2Farticle2%2F0%252C2817%252C2350275%252C00.asp&sref=rss">How to Choose the Best Web Browser</a></h4>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.pcmag.com%2Farticle2%2F0%252C2817%252C2350275%252C00.asp&sref=rss"><img src="http://designreviver.com/wp-content/uploads/2009/07/newsimage3.jpg" alt="How to Choose the Best Web Browser" width="480" /></a></p>
<p>This post could also have be called &#8220;The Battle of the Browsers: The Results&#8221;. Each of the biggest browsers (Firefox, Safari, Chrome, IE8 and Opera) have been evaluated by the following tests: Rendering speed, web standards, features and customizability. I won&#8217;t tell you the results, all I will tell you is that I am sticking with Firefox.</p>
<p><a href="http://redirectingat.com?id=&xs=1&url=http%3A%2F%2Fwww.pcmag.com%2Farticle2%2F0%252C2817%252C2350275%252C00.asp&sref=rss">How to Choose the Best Web Browser</a></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/general/ie8-is-definetly-not-geeky-furniture-might-be-and-card-ly-is-cool/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

