<?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>A Beautiful Blog &#187; Tutorials</title>
	<atom:link href="http://www.abeautifulsite.net/blog/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.abeautifulsite.net/blog</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 02:48:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Convert Word (and other) Documents to PDF for the&#160;Web</title>
		<link>http://www.abeautifulsite.net/blog/2009/07/convert-word-and-other-documents-to-pdf-for-the-web/</link>
		<comments>http://www.abeautifulsite.net/blog/2009/07/convert-word-and-other-documents-to-pdf-for-the-web/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 23:52:14 +0000</pubDate>
		<dc:creator>Cory LaViska</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://abs.lavitech.com/?p=102</guid>
		<description><![CDATA[A brief guide on how to produce portable, web-friendly documents for your website. <a class="more-link" href="http://www.abeautifulsite.net/blog/2009/07/convert-word-and-other-documents-to-pdf-for-the-web/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As a developer in the content management industry, I see people uploading Word documents and other proprietary formats to the web all the time.  This is especially true with smaller, homegrown websites that make brochures, newsletters, and forms that they want visitors to print out.  The problem is that these formats aren&#8217;t very web-friendly — and they&#8217;re also very tacky. <span id="more-102"></span></p>
<p>A much better practice is to offer your visitors printable media in PDF format.  Why?  Because PDF files are portable, meaning they work just about anywhere.  Most Windows users have <a rel="external" href="http://get.adobe.com/reader/">Adobe Reader</a> installed (a free download, if they don&#8217;t have it).  Mac and Linux users have software that can read PDFs which comes with their operating system.  Google Docs (and thus, Gmail) has a built in PDF viewer.  Even my iPhone can read PDF files!</p>
<p>Try doing that with a Word document, a Visio flowchart, or an AutoCAD drawing.</p>
<p>The important thing to realize is that you don&#8217;t have to buy any expensive software to create PDF files.  If you&#8217;re on a Mac or a popular Linux distribution, you can usually select <samp>File &gt; Print</samp> and choose the PDF option.  Windows users can download a free application that will give you the exact same functionality.</p>
<p>Once installed, <a rel="external" href="http://www.cutepdf.com/Products/CutePDF/writer.asp">CutePDF Writer</a> will appear in your list of printers so you can quickly and easily convert any document into PDF format, which is much more reliable for the web.  Using PDF files in lieu of proprietary formats will ensure that your visitors will be able to view your documents the way you intended them to — and it will give your website a more professional touch.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abeautifulsite.net/blog/2009/07/convert-word-and-other-documents-to-pdf-for-the-web/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>What Happens if IE8 “Breaks” My&#160;Website?</title>
		<link>http://www.abeautifulsite.net/blog/2009/06/what-happens-if-ie8-breaks-my-website/</link>
		<comments>http://www.abeautifulsite.net/blog/2009/06/what-happens-if-ie8-breaks-my-website/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 16:42:12 +0000</pubDate>
		<dc:creator>Cory LaViska</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://abs.lavitech.com/?p=101</guid>
		<description><![CDATA[The quick fix from Microsoft to get you back up and running. <a class="more-link" href="http://www.abeautifulsite.net/blog/2009/06/what-happens-if-ie8-breaks-my-website/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Last year all of the hype was about <acronym title="Internet Explorer 8">IE8</acronym> and <a rel="external" href="http://blogs.msdn.com/ie/archive/2008/01/21/compatibility-and-ie8.aspx">Microsoft&#8217;s decision</a> to default the browsers version targeting to &#8220;quirks mode&#8221; rather than standards mode.  This essentially meant that developers would have to opt-in to IE8&#8242;s standards mode using a proprietary <samp>&lt;meta&gt;</samp> tag that tells the browser which mode you want it to render your website in.<span id="more-101"></span></p>
<p>Needless to say, this was a very frustrating proposal for developers worldwide.  At the same time, Microsoft&#8217;s obligation to not &#8220;break&#8221; the web was very understandable.  It was a catch 22 for the company, but the issue had to be tended to promptly. After much discussion and some encouragement from the community, <a rel="external" href="http://www.zeldman.com/2008/03/04/microsoft-reverses-version-targeting-default/">Microsoft officially reversed their decision</a> to handle version targeting this way.</p>
<p>Now that IE8 has been officially released, one problem still remains for many legacy sites.  What if IE8 &#8220;breaks&#8221; your website? The short-term solution is actually <a rel="external" href="http://msdn.microsoft.com/en-us/library/cc817574.aspx">very simple</a>:</p>
<blockquote><p>Windows Internet Explorer 8 introduces document compatibility modes that allow Web developers to tell the browser to render their pages in the same way as older versions would, thereby allowing the developer to choose when to update.</p></blockquote>
<p>In short, add this tag inside the <samp>&lt;head&gt;</samp> of each of your webpages and call it a day:</p>
<pre class="brush: xml; title: ; notranslate">&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;quot;IE=EmulateIE7&quot; /&gt;</pre>
<p>Wait! Don&#8217;t actually call it a day and forget about it! Although I&#8217;m sure a lot of folks will do just that, the fact is that you really should treat this as the temporary fix that it is and make an honest effort to get those legacy websites and applications up to date.  The reality is, however, that many developers will be confronted with compatibility issues as IE8 gets pushed out to millions of users via <a rel="external" href="http://www.microsoft.com/windows/downloads/windowsupdate/automaticupdate.mspx">Windows Automatic Update</a>. Of course, many won&#8217;t have the time or resources it takes to redevelop or modify all those old sites so, in a pinch, you can at least get by.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abeautifulsite.net/blog/2009/06/what-happens-if-ie8-breaks-my-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What Are&#160;Favicons?</title>
		<link>http://www.abeautifulsite.net/blog/2007/05/what-are-favicons/</link>
		<comments>http://www.abeautifulsite.net/blog/2007/05/what-are-favicons/#comments</comments>
		<pubDate>Fri, 11 May 2007 01:01:48 +0000</pubDate>
		<dc:creator>Cory LaViska</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://abs.lavitech.com/?p=11</guid>
		<description><![CDATA[Learn what favicons are and how to create them for your own website. <a class="more-link" href="http://www.abeautifulsite.net/blog/2007/05/what-are-favicons/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>What is a favicon?</h2>
<p>A favicon (pronounced &#8220;fave-icon&#8221;) is typically a small, iconic image that represents your website. Favicons are most often found in the address bar of your web browser, but they can also be used in lists of bookmarks in web browsers and feed aggregators. Well-designed favicons are styled to match the logo or theme of your website, that way users have a quick and easy way to recognize your website at a glance.<span id="more-11"></span></p>
<div id="attachment_174" class="wp-caption aligncenter" style="width: 232px"><img class="size-full wp-image-174  " title="favicon_example" src="/blog/wp-content/uploads/2007/05/favicon_example.png" alt="A Beautiful Site's favicon in the Firefox address bar." width="222" height="28" /><p class="wp-caption-text">A Beautiful Site&#39;s favicon in the Firefox address bar.</p></div>
<h2>What type of image is a favicon?</h2>
<p>Although most modern browsers will recognize PNG, GIF, and JPG formats for favicons, Internet Explorer currently does not. It is recommended to use the Microsoft ICO format, which works in all browsers.</p>
<h2>What size should my favicon be?</h2>
<p>Another good reason to use the ICO format is because it can contain multiple favicons of different sizes in one ICO file. It is best to have, at minimum, a 16&#215;16 pixel version. I usually include 32&#215;32 and 48&#215;48 versions as well. That way, if users drag the bookmark to their desktop they will see a nicely scaled version of the icon instead of the 16&#215;16 version stretched out. To learn how to create a favicon with multiple sizes, see <a href="#how-to-create-a-favicon">How to create a favicon</a> below.</p>
<div id="attachment_175" class="wp-caption aligncenter" style="width: 155px"><img class="size-full wp-image-175 " title="favicon_mult_sizes" src="/blog/wp-content/uploads/2007/05/favicon_mult_sizes.png" alt="16x16, 32x32, and 48x48 versions of A Beautiful Site's favicon. Each image is embedded in one favicon.ico file. " width="145" height="50" /><p class="wp-caption-text">16x16, 32x32, and 48x48 versions of A Beautiful Site&#39;s favicon. Each image is embedded in one favicon.ico file.</p></div>
<p>The most common sizes for favicons are:</p>
<ul>
<li>16&#215;16</li>
<li>32&#215;32</li>
<li>48&#215;48</li>
<li>64&#215;64</li>
<li>128&#215;128</li>
</ul>
<h2>How to create a favicon</h2>
<p>Although there are many ways to create favicons, the easiest is to use an online tool.  We happen to have a <a href="http://favikon.com/">favicon generator</a> that&#8217;s entirely free.  It&#8217;s called <a href="http://favikon.com/">Favikon</a>.  To create your favicon using Favikon, simply upload an image, crop it, and then download the resulting icon.</p>
<h2>How to link to your favicon</h2>
<p>Now that you&#8217;ve created a nice little favicon, you need to tell web browsers and other applications where to find it. Adding this line to the <strong>&lt;head&gt;</strong> section of your HTML will ensure that your favicon will be found:</p>
<pre class="brush: xml; title: ; notranslate">&lt;link rel=&quot;shortcut icon&quot; href=&quot;/favicon.ico&quot; type=&quot;image/x-icon&quot; /&gt;</pre>
<p>The location of the favicon isn&#8217;t really important, as long as the <strong>href</strong> attribute is accurate. Most favicons, however, are placed in the root directory (the directory that contains the homepage). Keep in mind that it is not necessary to have multiple instances of the same favicon on one website.</p>
<p>If you add a favicon without linking to it within your HTML, you may notice that some browsers will still find and display it. This only occurs if the favicon is in the root directory. It isn&#8217;t good to rely on this method, so if you want to make sure that applications will see your favicon, <strong>&lt;link&gt;</strong> to it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abeautifulsite.net/blog/2007/05/what-are-favicons/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>GIF, JPEG or PNG? Using Images on the&#160;Web</title>
		<link>http://www.abeautifulsite.net/blog/2007/04/gif-jpeg-or-png-using-images-on-the-web/</link>
		<comments>http://www.abeautifulsite.net/blog/2007/04/gif-jpeg-or-png-using-images-on-the-web/#comments</comments>
		<pubDate>Sun, 29 Apr 2007 04:11:28 +0000</pubDate>
		<dc:creator>Cory LaViska</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://abs.lavitech.com/?p=2</guid>
		<description><![CDATA[The appropriate use of images on the Web can be extremely trivial to amateur designers. In fact, many people know what JPEGs, GIFs, and PNGs are, but they don&#8217;t know how to use them properly on the web. This article gives amateur designers a better understanding about the three most popular image formats on the web, and how to use them appropriately. <a class="more-link" href="http://www.abeautifulsite.net/blog/2007/04/gif-jpeg-or-png-using-images-on-the-web/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This article aims to describe the difference between the three most popular types of images used on the Web, and how to use them effectively in your websites.<span id="more-947"></span></p>
<h1>JPEG</h1>
<p><acronym title="Joint Photo Experts Group">JPEG</acronym> files are compressed images that maintain a balance of size versus quality.  For example: <strong>More compression = less image quality = smaller file size</strong>.  In contrast, <strong>less compression = more image quality = larger file size</strong>.  Since JPEG files do not maintain 100% of the original image&#8217;s pixel data, it is not considered a lossless image format.</p>
<h2>Usage</h2>
<p>Due to this sensitive balance, JPEGs are best suited for photographs where slightly depreciated quality is not very noticeable.  JPEG is not typically a good format for logos, icons, and other simple images.</p>
<h1>GIF</h1>
<p>The <acronym title="Graphic Interchange Format">GIF</acronym> format was developed by CompuServe specifically for use online.  GIF, sometimes pronounced &#8220;GIFF&#8221;, is a lossless, 8-bit image format.  Lossless means that 100% of the original pixel data is maintained.  The term 8-bit refers to color depth — an 8-bit image can only have up to 256 colors.</p>
<h2>Usage</h2>
<p>Because of these limitations, GIFs <em>should not</em> be used for photographic images.  Instead, use them for things like:</p>
<ul>
<li>Logos</li>
<li>Icons</li>
<li>Layout images (such as corners, borders, etc.)</li>
<li>Any other small, simple image with only a few colors</li>
</ul>
<h2>Transparency</h2>
<p>GIF supports basic transparency, which means that certain pixels in the image can be &#8220;invisible&#8221;, so you can see whatever lies behind them.  This is especially useful for making icons that are intended to sit on top of a varying background.</p>
<h2>Compression</h2>
<p>The GIF format uses the <acronym title="Lempel-Ziv-Welch">LZW</acronym> compression algorithm, which is patented by Unisys.  For a time, this meant that the authors of image-editing programs were forced to pay Unisys for the rights to include GIF support in their programs.  The patent, however, expired on June 20, 2003 in the United States.</p>
<h2>Interlacing</h2>
<p>GIF also supports interlacing, which makes the image appear to load faster in web browsers.  This could be helpful for people browsing your site on a slow dial-up connection.</p>
<h2>Animated GIFs</h2>
<p>An animated GIF is a single file that contains multiple variations (frames) of an image.  These frames are drawn over and over again to create the illusion of animation.  When used appropriately, animated GIFs can be catchy and impressive.  Unfortunately, many people tend to overuse them on the web, creating a very annoying experience for their users.</p>
<h1>PNG</h1>
<p><acronym title="Portable Network Graphic">PNG</acronym> files, pronounced &#8220;PING&#8221;, were developed as a freeware alternative to GIF files which, at the time, used a patented compression algorithm.  The PNG format is also lossless but, unlike GIF, PNG can support 8-bit and 24-bit images.</p>
<h2>8-bit PNGs</h2>
<p>An 8-bit PNG can have up to 256-colors with basic transparency.  This format is very similar to that of GIFs, except for the compression method.</p>
<h2>Usage</h2>
<p>8-bit PNGs should be used the same way as GIFs:</p>
<ul>
<li>Logos</li>
<li>Icons</li>
<li>Layout images (such as corners, borders, etc.)</li>
<li>Any other small, simple image with only a few colors</li>
</ul>
<h2>24-bit PNGs</h2>
<p>24-bit PNGs can have up to 16 million colors and can support alpha-transparency.  This means that a partially transparent image with <acronym title="The blending of pixel colors on the edges of shapes to smooth jagged edges">anti-aliasing</acronym> can blend smoothly into the background.</p>
<h2>PNG Support</h2>
<p>PNG support is becoming more widespread as browser developers become more conscious of <a rel="external" href="http://www.w3.org/">Web Standards</a>.  Fortunately, PNGs are currently supported by all popular web browsers including, <acronym title="Microsoft Internet Explorer">IE</acronym>*, Firefox, Safari, Opera, and Konqueror.</p>
<p>*Unfortunately, IE6 screws up alpha-transparency in 24-bit PNGs and displays a grayish-blue background color instead.  IE6 has also been known to render some 8-bit PNG colors slightly off hue (a gamma correction error).  Although the alpha-transparency issue has been resolved in IE7 beta 2, Microsoft hasn&#8217;t addressed gamma correction yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abeautifulsite.net/blog/2007/04/gif-jpeg-or-png-using-images-on-the-web/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

