<?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>computeraxe &#187; browsers</title>
	<atom:link href="http://computeraxe.com/category/browsers/feed/" rel="self" type="application/rss+xml" />
	<link>http://computeraxe.com</link>
	<description>wordpress tips and tricks</description>
	<lastBuildDate>Thu, 26 Aug 2010 15:30:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>IE7 Error Refuses to Open Site &#8211; Operation Aborted</title>
		<link>http://computeraxe.com/ie7-error-refuses-to-open-site-operation-aborted/</link>
		<comments>http://computeraxe.com/ie7-error-refuses-to-open-site-operation-aborted/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 14:57:54 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[browsers]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[IE7]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=314</guid>
		<description><![CDATA[A client mystically had these errors pop up where they could not open their web site with Internet Explorer. It&#8217;s strange that this error hadn&#8217;t been reported to me before because the site has been operational for a couple years &#8230; <a href="http://computeraxe.com/ie7-error-refuses-to-open-site-operation-aborted/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A client mystically had these errors pop up where they could not open their web site with Internet Explorer. It&#8217;s strange that this error hadn&#8217;t been reported to me before because the site has been operational for a couple years now. Internet Explorer 8 doesn&#8217;t spew the error, nor does Firefox, but IE6 and IE7 would report that it couldn&#8217;t open the site with the following error window:</p>
<div id="attachment_315" class="wp-caption alignnone" style="width: 511px"><img src="http://computeraxe.com/wp-content/uploads/2009/11/MSIE7-error-abort1.png" alt="Internet Explorer cannot open the Internet site - Operation aborted." title="MSIE7-error-abort" class="size-full wp-image-315" height="134" width="501"><p class="wp-caption-text">Internet Explorer cannot open the Internet site - Operation aborted.</p></div>
<p>The problem was traced to the older IE browsers&#8217; inability to render the page completely before it tried to execute some javascript code.</p>
<p>The solution was to add a simple defer tag to each javascript call, like so:<br />
<code><br />
&lt;script defer="defer" type="text/javascript" src="src goes here"&gt;/*code goes here*/&lt;/script&gt;<br />
</code></p>
<p>Thanks goes out to <a href="http://www.richardcastera.com/">Richard for posting</a> his found solution. Thanks, Richard!</p>
<p>Microsoft also indicates that this <a href="http://support.microsoft.com/default.aspx/kb/927917">error can be avoided by updating your browser</a> to the latest version, which at this time is IE8. Now, if only all my clients would do the same!</p>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/774edc06-303b-48ff-90a4-a6edbbad7390/" title="Reblog this post [with Zemanta]"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=774edc06-303b-48ff-90a4-a6edbbad7390" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/ie7-error-refuses-to-open-site-operation-aborted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Rounds Corners in Firefox, But Not in IE8</title>
		<link>http://computeraxe.com/css-rounds-corners-firefox-not-ie8/</link>
		<comments>http://computeraxe.com/css-rounds-corners-firefox-not-ie8/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 20:26:00 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[corners]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=267</guid>
		<description><![CDATA[Firefox/Mozilla browsers are gaining shares of the browser market and for good reason. Upbeat features let the user take complete control of their browsing experience, which is one main reason behind their gaining popularity. Add-On tools can help most any &#8230; <a href="http://computeraxe.com/css-rounds-corners-firefox-not-ie8/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Firefox/Mozilla browsers are gaining shares of the browser market and for good reason. Upbeat features let the user take complete control of their browsing experience, which is one main reason behind their gaining popularity. Add-On tools can help most any website developer to see that their site is put together in a valid way and that has pushed Firefox use among developers to probably a very high level. I still have yet to hear another web developer state that they prefer IE over Firefox, and I&#8217;m pretty sure that all of us have cursed IE6!</p>
<p>Firefox also champions the use of future CSS, which are CSS features that will only be seen by IE users at some time in the future. Ok, I made that up, but since Internet Explorer is playing the catchup game, I think it&#8217;s only fitting to point out an example.</p>
<p>Looking at some CSS basics&#8230;we have a way to draw a box around some content. It&#8217;s called the border property. The top, left, right and bottom sides of the box can be assigned diferent values for the width, style and color. Each of these values can be assigned separately or all at once.</p>
<p>Separately:</p>
<div class="box">
.box {<br />
border-width: 1px;<br />
border-style: solid;<br />
border-color: #000;<br />
}
</div>
<p>All together, in the order <em>width, style, color</em>:</p>
<div class="box">
.box {<br />
border: 1px solid #d1d1d1;<br />
}
</div>
<p>If you want to have different widths, styles or colors for your box, then you&#8217;ll have to use the properties that target each side, like so:</p>
<div class="sbox">
.box {<br />
border-left: 1px dashed #000;<br />
border-right: 2px solid #5ca3b7;<br />
border-top: 1px dashed #000;<br />
border-bottom: 2px solid #5ca3b7;<br />
}
</div>
<p>That&#8217;s nice, but sometimes we really don&#8217;t want the square boxy look. Rounded corners are nice, aren&#8217;t they? Well, our Firefox users can see rounded corners for the same box that we&#8217;ve built for our menu. All we have to do is add one property to the menu, called the -moz-border-radius, and specify its size. IE simply ignores this property, so those boxes will show pointed corners.</p>
<p>.roundedbox {<br />
-moz-border-radius:10px;<br />
}</p>
<p>The 10 pixel radius is the size of the rounded corner. We probably want to add a little padding to the menu box so the content isn&#8217;t smashed against the border, so we&#8217;ll set that at 10 px, too.</p>
<p>Here&#8217;s a menu box that will show rounded corners in Firefox/Mozilla browsers:</p>
<div class="rbox">
.roundedbox {<br />
border:1px solid #5ca3b7;<br />
padding:10px;<br />
-moz-border-radius:10px;<br />
}
</div>
<p>There are ways to get the rounded corner look in IE browsers, but it&#8217;s a bit more work. For now, we&#8217;ll continue to use the -moz-border-radius property in appreciation of our Firefox users.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/css-rounds-corners-firefox-not-ie8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ColorZilla Browser Extension for Firefox</title>
		<link>http://computeraxe.com/colorzilla-browser-extension-firefox/</link>
		<comments>http://computeraxe.com/colorzilla-browser-extension-firefox/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 12:24:53 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The GIMP]]></category>
		<category><![CDATA[browsers]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=132</guid>
		<description><![CDATA[Yet another way to explore colors is to use the ColorZilla browser extension for Firefox. This is one of my favorite ways to pick up colors as Firefox is always handy. Once installed, Colorzilla resides down in the left, bottom &#8230; <a href="http://computeraxe.com/colorzilla-browser-extension-firefox/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yet another way to explore colors is to use the <a href="http://www.iosart.com/firefox/colorzilla/">ColorZilla browser extension for Firefox</a>. This is one of my favorite ways to pick up colors as Firefox is always handy.</p>
<p>Once installed, Colorzilla resides down in the left, bottom corner of Firefox. You&#8217;ll see a little eye dropper icon. Click the eyedropper and the mouse pointer changes to a cross hair. Hover over any spot on the page and the RGB and #hex values are noted at the bottom of your browser. Click again and the color values are stored temporarily until you click on the eyedropper again.</p>
<p>If you leave the current tab and come back you&#8217;ll note that the color values have disappeared from the bottom bar, but they&#8217;re not really gone. Right-click the eyedropper and you&#8217;ll be presented with a menu of choices.</p>
<div id="attachment_133" class="wp-caption aligncenter" style="width: 227px"><a href="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu1.jpg"><img class="size-full wp-image-133" title="colorzilla-menu" src="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu1.jpg" alt="Right-click menu for ColorZilla Firefox browser extension." width="217" height="405" /></a><p class="wp-caption-text">Right-click menu for ColorZilla Firefox browser extension.</p></div>
<p>Have fun exploring all the features of ColorZilla, but take note that the details of the last color picked are ready for you to copy in your favorite format.</p>
<p>The Options menu has a hidden feature that you might want to check out:</p>
<div id="attachment_135" class="wp-caption aligncenter" style="width: 269px"><a href="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu-options1.jpg"><img src="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu-options1.jpg" alt="ColorZilla Firefox browser extension options menu." title="colorzilla-menu-options" width="259" height="261" class="size-full wp-image-135" /></a><p class="wp-caption-text">ColorZilla Firefox browser extension options menu.</p></div>
<p>Right-click on the eyedropper, click on Options, then click on <strong>Statusbar Format&#8230;</strong>. Here, you can modify the information that you see in the bottom bar of the Firefox browser when you activate ColorZilla.</p>
<div id="attachment_136" class="wp-caption aligncenter" style="width: 458px"><a href="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu-status1.jpg"><img src="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu-status1.jpg" alt="ColorZilla menu for statusbar formatting." title="colorzilla-menu-status" width="448" height="393" class="size-full wp-image-136" /></a><p class="wp-caption-text">ColorZilla menu for statusbar formatting.</p></div>
<p>Now, along with color values, you can &#8220;see&#8221; elements of a webpage, their paths, URLs and distances to other page elements.</p>
<p>A great feature that I must point out is the Webpage DOM Color Analyzer that you can reach from the Options menu. Visit a page where you like the color scheme, right-click the eyedropper and choose the <strong>Webpage DOM Color Analyzer&#8230;</strong>. A window at the bottom of the screen will show the main colors of the page, but not from the images on the page. Clicking on any of the colors in the palette will show you the css rules that are using that color.</p>
<p>ColorZillla &#8211; what a neat way to explore a page and all its colors!</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/colorzilla-browser-extension-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check Your Site Design in the New Chrome Browser and Many Other Browsers</title>
		<link>http://computeraxe.com/check-site-design-new-chrome-browser-other-browsers/</link>
		<comments>http://computeraxe.com/check-site-design-new-chrome-browser-other-browsers/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 16:43:37 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[browsers]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=101</guid>
		<description><![CDATA[Since the new browser from Google has come out I&#8217;ve wanted to see how my various websites look in Chrome. The fastest way to see how your site designs hold up in various browsers is to sign up for an &#8230; <a href="http://computeraxe.com/check-site-design-new-chrome-browser-other-browsers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Since the new browser from Google has come out I&#8217;ve wanted to see how my various websites look in Chrome.</p>
<p>The fastest way to see how your site designs hold up in various browsers is to sign up for an account at <a title="Browsershots shows sites in browsers." href="http://browsershots.org/">Browsershots</a>.</p>
<p>It&#8217;s as easy as ticking off a few boxes to select which browsers you want to view and hitting the Submit button.</p>
<p>As of today you can test your site designs in 31 browsers for Linux, 33 for Windows, 6 for Mac OS, and 11 for BSD. Each operating system is paired with the most popular browsers and some you&#8217;ve never heard of, like Dillo, Epiphany, Minefield, Shiretoko and others.</p>
<p>That&#8217;s not all! You also get to choose a screen size, the color depth, which javascript version is used or if it&#8217;s used, and whether java and flash are enabled or not. If these parameters don&#8217;t matter and you just want to look at a screenshot of your design in some different browsers, leave the spin boxes at the default &#8220;don&#8217;t care&#8221; setting.</p>
<p>Now you don&#8217;t have to wonder what your designs look like to Mac or Linux or BSD users, or even in the newest version of browsers you don&#8217;t use on your PC.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/check-site-design-new-chrome-browser-other-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Tools for Troubleshooting Problems with CSS and XHTML</title>
		<link>http://computeraxe.com/best-tools-troubleshooting-problems-css-xhtml/</link>
		<comments>http://computeraxe.com/best-tools-troubleshooting-problems-css-xhtml/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 13:09:53 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[browsers]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=85</guid>
		<description><![CDATA[Different browsers have their own ways of helping developers troubleshoot problems with positioning divs and combating errors that pop up here and there. I have found a few tools that are extremely valuable for developing web pages. I&#8217;m sure these &#8230; <a href="http://computeraxe.com/best-tools-troubleshooting-problems-css-xhtml/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Different browsers have their own ways of helping developers troubleshoot problems with positioning divs and combating errors that pop up here and there.</p>
<p>I have found a few tools that are extremely valuable for developing web pages. I&#8217;m sure these are very popular due to their ability of helping isolate and fix problems.</p>
<p>I prefer Firefox browser so these are my favorite browser add-ons and their features that I really like:</p>
<ul>
<li>Firebug &#8211; view divs onscreen, explore code and its output onscreen</li>
<li>Web Developer Toolbar &#8211; one-click validation, resize screen to 800&#215;600, disable cache, lots more &#8211; an army of tools</li>
<li>Total Validator &#8211; validates complete with screenshots in various browsers</li>
<li>ColorZilla &#8211; color picker, great view of css divs, zooms page</li>
</ul>
<p>Care to add to my list? What do you use to help in your WordPress and web page design?</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/best-tools-troubleshooting-problems-css-xhtml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
