<?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>Web Hosting Help Guy &#187; Web Hosting</title>
	<atom:link href="http://webhostinghelpguy.inmotionhosting.com/category/web-hosting/feed/" rel="self" type="application/rss+xml" />
	<link>http://webhostinghelpguy.inmotionhosting.com</link>
	<description></description>
	<lastBuildDate>Thu, 01 Dec 2011 23:24:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS – 5 Tips To Organize A Style Sheet</title>
		<link>http://webhostinghelpguy.inmotionhosting.com/web-design-tips/css-%e2%80%93-5-tips-to-organize-a-style-sheet/</link>
		<comments>http://webhostinghelpguy.inmotionhosting.com/web-design-tips/css-%e2%80%93-5-tips-to-organize-a-style-sheet/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 20:05:14 +0000</pubDate>
		<dc:creator>Web Hosting Help Guy</dc:creator>
				<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[How To:]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web Design Tips]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://webhostinghelpguy.inmotionhosting.com/?p=3354</guid>
		<description><![CDATA[When designing a complicated, large-scale website or anywebsite even, an important factor to keep in mind is how to keep your files organized.  I mean, why make any process more difficult than it should be just by not arranging items to make them easily accessible...

<img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2011/01/organize-css.jpg" alt="Organized CSS Code Screencap" title="organize-css" width="575" height="300" class="alignnone size-full wp-image-3473" />


Related posts:<ol><li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/ab-testing-a-guide-to-split-testing-2-different-versions-of-a-website/' rel='bookmark' title='Permanent Link: A/B Testing:  A Guide To Split Testing 2 Versions Of A Full Website'>A/B Testing:  A Guide To Split Testing 2 Versions Of A Full Website</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/9-tips-to-make-your-website-load-much-faster-part-1/' rel='bookmark' title='Permanent Link: 9 Tips to Make Your Website Load Much Faster (Part 1)'>9 Tips to Make Your Website Load Much Faster (Part 1)</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/updating-a-css-file-%e2%80%93-the-importance-of-clearing-a-browsers-cache/' rel='bookmark' title='Permanent Link: Updating A CSS File – The Importance Of Clearing A Browser&#8217;s Cache'>Updating A CSS File – The Importance Of Clearing A Browser&#8217;s Cache</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>When designing a complicated, large-scale website or <strong>any</strong> website even, an important factor to keep in mind is how to keep your files organized.  I mean, why make any process more difficult than it should be just by not arranging items to make them easily accessible?  </p>
<p>Lets take into account designing a website using <a  href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets">Cascading Style Sheets (CSS)</a>.  With the main purpose of CSS being a way of separating document content from document presentation, it&#8217;s already meant to be a step taken to organize and simplify HTML coding.  Now, with that in mind, why not complete the process by organizing your style sheets to help make them easy to understand, making the maintenance of your website a much easier task.  But, as far as which is the best way of organizing a style sheet, it really all comes down to a matter of preference.</p>
<p><img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2011/01/CSS.jpg" alt="CSS Image" title="CSS" width="575" height="351" class="alignnone size-full wp-image-3357" /></p>
<h4 style="text-align:left;">Here are basic guidelines to get you started:</h4>
<p><br/><strong style="font-size:16px;">Divide Into Specific Sections Using Flags</strong><br />
This helps to identify sections to get to  them more quickly.  Make sure to first plan out what the specific sections will be.  For example:<br />
<br/>
<ul>
	<br/>
<li><strong>Global Styles</strong> – This section can define background, link color, image related things, etc.</li>
<p><br/>
<li><strong>Typography</strong> – This section can define font size, header tags, paragraph tags, etc.</li>
<p><br/>
<li><strong>Library Styles</strong> – This section can define classes for pages that have recurring style elements on various parts of your site.</li>
<p><br/>
<li><strong>Templates</strong> – This section can define your main template layout.</li>
<p><br/>
<li><strong>Individual Page Structures</strong> – This section can define classes for individual pages that do not particularly follow the uniform style of the other pages on your site.</li>
</ul>
<p></span></li>
<p><img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2011/01/organize-css.jpg" alt="Organized CSS Code Screencap" title="organize-css" width="575" height="300" class="alignnone size-full wp-image-3473" /></p>
<p><br/><br/><strong style="font-size:16px;">Create A Table Of Contents</strong><br />
Creating a table of contents creates an easy overview of the stylesheet and adding number references to your code is very helpful for finding sections faster.</p>
<p><br/><br/><strong style="font-size:16px;">Alphabetize Your Properties</strong><br />
This is another way of making specific properties faster to locate.</p>
<p><br/><br/><strong style="font-size:16px;">Indent Descendant/Child Items &#038; Related Rules</strong><br />
This helps to visually define page areas and how they&#8217;re related.</p>
<p><br/><br/><strong style="font-size:16px;">CSS Organizer Web Apps</strong><br />
Tools such as <a  href="http://styleneat.com/">StyleNeat</a> or <a  href="http://procssor.com/">ProCSSor</a>  can help to visually organize and standardize your CSS.</p>
<p><br/>
<p class="commenter">What other methods have you used to organize a stylesheet?</p>


<p>Related posts:<ol><li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/ab-testing-a-guide-to-split-testing-2-different-versions-of-a-website/' rel='bookmark' title='Permanent Link: A/B Testing:  A Guide To Split Testing 2 Versions Of A Full Website'>A/B Testing:  A Guide To Split Testing 2 Versions Of A Full Website</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/9-tips-to-make-your-website-load-much-faster-part-1/' rel='bookmark' title='Permanent Link: 9 Tips to Make Your Website Load Much Faster (Part 1)'>9 Tips to Make Your Website Load Much Faster (Part 1)</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/updating-a-css-file-%e2%80%93-the-importance-of-clearing-a-browsers-cache/' rel='bookmark' title='Permanent Link: Updating A CSS File – The Importance Of Clearing A Browser&#8217;s Cache'>Updating A CSS File – The Importance Of Clearing A Browser&#8217;s Cache</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://webhostinghelpguy.inmotionhosting.com/web-design-tips/css-%e2%80%93-5-tips-to-organize-a-style-sheet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WWW Vs No WWW On A Canonical URL?</title>
		<link>http://webhostinghelpguy.inmotionhosting.com/homepage/www-vs-no-www-on-a-canonical-url/</link>
		<comments>http://webhostinghelpguy.inmotionhosting.com/homepage/www-vs-no-www-on-a-canonical-url/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 22:14:28 +0000</pubDate>
		<dc:creator>Web Hosting Help Guy</dc:creator>
				<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[Homepage]]></category>
		<category><![CDATA[How To:]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Web Design Tips]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://webhostinghelpguy.inmotionhosting.com/?p=3377</guid>
		<description><![CDATA[So though this is not a new issue on the web, there still continues to be debate over the use of WWW versus no WWW on canonical URLs.  Which is better for SEO?  The answer is...
<img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2011/01/canonicalization.jpg" alt="WWW or No WWW" title="canonicalization" width="575" height="431" class="alignnone size-full wp-image-3397" />


Related posts:<ol><li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/subdirectories-3-ways-to-hide-them-through-cpanel/' rel='bookmark' title='Permanent Link: Subdirectories &#8211; 3 Ways To Hide Them Through CPanel'>Subdirectories &#8211; 3 Ways To Hide Them Through CPanel</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/3-ways-to-shorten-urls/' rel='bookmark' title='Permanent Link: 3 Ways To Shorten URLs'>3 Ways To Shorten URLs</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/website-optimization/search-engine-ranking-%e2%80%93-5-useful-serp-trackers/' rel='bookmark' title='Permanent Link: Search Engine Ranking – 5 Useful SERP Trackers'>Search Engine Ranking – 5 Useful SERP Trackers</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>So though this is not a new issue on the web, there still continues to be debate over the use of WWW versus no WWW on canonical URLs.  With websites like <a  href="http://www.yes-www.org/">Yes-WWW</a> and <a  href="http://no-www.org/">No-WWW</a>, you can see just how strong of a stance groups have on this topic.</p>
<p>Now, while I&#8217;m not going to side with either, I do want to clarify and emphasize that after all of the debate, <strong>it really comes down to a matter of preference.</strong></p>
<p><br/><img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2011/01/canonicalization.jpg" alt="WWW or No WWW" title="canonicalization" width="575" height="431" class="alignnone size-full wp-image-3397" /><br />
<br/><br />
<h4 style="text-align:left;">Which is better for SEO?</h4>
<p>The answer is&#8230;it does NOT matter.  Using either WWW/no WWW versions of a website does not effect a website&#8217;s rankings because search engines do not base their ranking algorithms on that part of a URL.    But, what is important is that for which ever one you choose, you need to continue to only use that format for all inbound links to your canonical URL.  Otherwise, if some websites link to your WWW site, while others link to your non WWW site, then your search engine rankings will be split and not strengthen your canonical URL.</p>
<p>In this case, what you need to do from the get-go is create a 301 redirect from your non-canonical URL to your chosen canonical URL.  This way, search engines will automatically redirect inbound links to your canonical URL, giving it the full “link juice” that it&#8217;s meant to get.<br />
<br/><strong>Here are 2 ways of doing a 301 redirect:</strong></p>
<p><strong>I.  Through cPanel:</strong></span></li>
<p><a  href="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2011/01/cpanel-redirects-screencap.png" class="thickbox no_icon" rel="gallery-3377" title="CPanel Redirects Screencap"><img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2011/01/cpanel-redirects-screencap.png" alt="CPanel Redirects Screencap" title="cpanel-redirects-screencap" width="575" height="117" class="alignnone size-full wp-image-3391" /></a><br />
<br/>
<ul style="list-style-type:decimal !important; font-weight: bold;">
<li><span style="font-weight: normal;">Log into your cPanel account</span></li>
<li><span style="font-weight: normal;">Under the “Domains” section, click “Redirects”</span></li>
<li><span style="font-weight: normal;">Select the domain name in the drop down menu next to “http://(www.)?”</span></li>
<li><span style="font-weight: normal;">In the text box to the right, type in the URL that you want to redirect</span></li>
<li><span style="font-weight: normal;">Next to “redirects to?” enter your canonical URL</span></li>
<li><span style="font-weight: normal;">Click “Add”</span></li>
</ul>
<p><br/><strong>II.  Through .htaccess:</strong></span></li>
<p><br/>
<ul style="list-style-type:decimal !important; font-weight: bold;"></span></li>
<li><span style="font-weight: normal;">Download the .htaccess file</span></li>
<li><span style="font-weight: normal;">Open the file in a text editor (e.g. Notepad)</span></li>
<li><span style="font-weight: normal;">Use the following code below to redirect (replacing “domain.com” with your URL)</span></li>
</ul>
<pre class="brush: php; title: ;">
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{http_host} ^www.domain.com$
RewriteRule (.*) http://domain.com/$1 [R=301,L]
</pre>
<p><br/><strong><em>NOTE</em> – For SSL Certificates:</strong></p>
<p>By default, companies assign SSL&#8217;s to “exampledomain.com” without the WWW, so if you decide to include the WWW in your canonical URL, make sure to notify your SSL company about that, and remember to do so every time you do renewals.</p>
<p><br/>
<p class="commenter">Are you Pro or No WWW?</p>


<p>Related posts:<ol><li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/subdirectories-3-ways-to-hide-them-through-cpanel/' rel='bookmark' title='Permanent Link: Subdirectories &#8211; 3 Ways To Hide Them Through CPanel'>Subdirectories &#8211; 3 Ways To Hide Them Through CPanel</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/3-ways-to-shorten-urls/' rel='bookmark' title='Permanent Link: 3 Ways To Shorten URLs'>3 Ways To Shorten URLs</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/website-optimization/search-engine-ranking-%e2%80%93-5-useful-serp-trackers/' rel='bookmark' title='Permanent Link: Search Engine Ranking – 5 Useful SERP Trackers'>Search Engine Ranking – 5 Useful SERP Trackers</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://webhostinghelpguy.inmotionhosting.com/homepage/www-vs-no-www-on-a-canonical-url/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A/B Testing:  A Guide To Split Testing 2 Versions Of A Full Website</title>
		<link>http://webhostinghelpguy.inmotionhosting.com/web-design-tips/ab-testing-a-guide-to-split-testing-2-different-versions-of-a-website/</link>
		<comments>http://webhostinghelpguy.inmotionhosting.com/web-design-tips/ab-testing-a-guide-to-split-testing-2-different-versions-of-a-website/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 20:01:29 +0000</pubDate>
		<dc:creator>Web Hosting Help Guy</dc:creator>
				<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[How To:]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web Design Tips]]></category>
		<category><![CDATA[A/B Testing]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Google Website Optimizer]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://webhostinghelpguy.inmotionhosting.com/?p=3360</guid>
		<description><![CDATA[Website A/B testing is a common practice used to compare the effectiveness of different combinations of elements on a website; but most notably on individual sections, such as landing pages, newsletters, and  so on.  A good web designer knows that when it comes to having a successful website, there are many elements that need to come together...
<img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2011/01/balance_scale.jpg" alt="Balance Scale" title="balance_scale" width="575" height="456" class="alignnone size-full wp-image-3367" />


Related posts:<ol><li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/unobtrusive-javascript-%e2%80%93-website-accessibility-even-if-javascript-is-disabled/' rel='bookmark' title='Permanent Link: Unobtrusive JavaScript – Website Accessibility When JavaScript Is Disabled'>Unobtrusive JavaScript – Website Accessibility When JavaScript Is Disabled</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/usability-track-test-and-improve-your-website/' rel='bookmark' title='Permanent Link: Usability &#8211; Track, Test, And Improve Your Website'>Usability &#8211; Track, Test, And Improve Your Website</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/how-to-add-a-search-engine-to-your-website/' rel='bookmark' title='Permanent Link: How To Add A Search Engine To Your Website'>How To Add A Search Engine To Your Website</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Website A/B testing is a common practice used to compare the effectiveness of different combinations of elements on a website; but most notably on individual sections, such as landing pages, newsletters, and  so on.  </p>
<p>A good web designer knows that when it comes to having a successful website, there are many elements that need to come together in order to obtain “success.”  Which, of course, will vary depending on the website type (e.g. &#8211; e-commerce, blog, non-profit, etc.).  These elements can range anywhere from design (e.g. &#8211; color combinations, font sizes, item placements, etc.) to usability (e.g. &#8211; how many steps in an order process, new pages vs modal windows, text hierarchy, etc.).  </p>
<p>Once you&#8217;ve put these elements together, the next step would be to test it out with users.  In which there are many different testing options that can be utilized, as mentioned in this previous article: <a  href="http://webhostinghelpguy.inmotionhosting.com/web-design-tips/usability-track-test-and-improve-your-website/">Usability – Track, Test, And Improve Your Website</a>.<br />
<br/><img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2011/01/balance_scale.jpg" alt="Balance Scale" title="balance_scale" width="575" height="456" class="alignnone size-full wp-image-3367" /></p>
<h4 style="text-align:left;">So what if you want to compare 2 versions of a website?</h4>
<p>Well here&#8217;s a way of doing so&#8230;If you&#8217;re familiar with A/B testing, then you&#8217;re probably familiar with <a  href="http://www.google.com/websiteoptimizer">Google Website Optimizer (GWO)</a>.  If you&#8217;re new to it, this is the most  commonly used website testing and optimization tool that&#8217;s available free.  </p>
<p>To summarize, GWO lets you create an experiment by taking either a variation of parts of a web page (e.g. – call to action button, image, etc.) or testing 2 different pages to compare conversion rates.  This is done by including Control, Tracking and Conversion scripts/tags generated in GWO on your web pages for that particular experiment.  <em>For an example of the scripts you can go to <a  href="http://www.intelligrape.com/blog/2010/08/12/applying-google-web-optimization/">http://www.intelligrape.com/blog/2010/08/12/applying-google-web-optimization/</a>.</em></p>
<p>It also lets you set the percentage of how many various users are directed to each version. For example, you could set a randomization of 50% of users going to either version A or B, or 80% A and 20% B, etc. </p>
<p><img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2011/01/gwo-screencap.png" alt="Google Website Optimizer Screencap" title="gwo-screencap" width="575" height="350" class="alignnone size-full wp-image-3371" style="border: 1px solid darkgrey;"/></p>
<p><strong>Now, in order to utilize GWO to compare 2 full websites, you will need to:</strong><br />
<br/>
<ul style="list-style-type:decimal !important; font-weight: bold;">
<li><span style="font-weight: normal;">In Website A, add empty GWO tags.</span></li>
<li><span style="font-weight: normal;">In Website B, enter a redirect script that goes to version B.</span></li>
</ul>
<p><br/><em><strong>NOTE:</strong></em><br />
If there is 1 goal defined for the 2 websites, such as conversion rate, then the statistics calculated in GWO can be used. But, if you want to analyze individual areas of each website, then that can be done for each in <a  href="http://www.google.com/analytics/">Google Analytics</a>. Therefore, GWO will work as the first step as a tool to randomly direct users to either version A or B.</p>
<p><br/>
<p class="commenter">Have you used another method for comparing full websites?</p>


<p>Related posts:<ol><li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/unobtrusive-javascript-%e2%80%93-website-accessibility-even-if-javascript-is-disabled/' rel='bookmark' title='Permanent Link: Unobtrusive JavaScript – Website Accessibility When JavaScript Is Disabled'>Unobtrusive JavaScript – Website Accessibility When JavaScript Is Disabled</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/usability-track-test-and-improve-your-website/' rel='bookmark' title='Permanent Link: Usability &#8211; Track, Test, And Improve Your Website'>Usability &#8211; Track, Test, And Improve Your Website</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/how-to-add-a-search-engine-to-your-website/' rel='bookmark' title='Permanent Link: How To Add A Search Engine To Your Website'>How To Add A Search Engine To Your Website</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://webhostinghelpguy.inmotionhosting.com/web-design-tips/ab-testing-a-guide-to-split-testing-2-different-versions-of-a-website/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Embed An RSS Feed To Your Website For Cross-Promotion</title>
		<link>http://webhostinghelpguy.inmotionhosting.com/web-design-tips/cross-promotion-embed-an-rss-feed-to-your-website/</link>
		<comments>http://webhostinghelpguy.inmotionhosting.com/web-design-tips/cross-promotion-embed-an-rss-feed-to-your-website/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 21:20:35 +0000</pubDate>
		<dc:creator>Web Hosting Help Guy</dc:creator>
				<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[How To:]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web Design Tips]]></category>
		<category><![CDATA[Website Marketing]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://webhostinghelpguy.inmotionhosting.com/?p=3180</guid>
		<description><![CDATA[If you have both a blog and a website or more than one of each, have you thought of incorporating RSS feeds of one to another?  Well if you haven't considered it, you should take into account some of the benefits of cross-promotion...
<img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2010/12/rssfeeds.png" alt="RSS Feeds" title="rssfeeds" width="575" height="430" class="alignnone size-full wp-image-3186" />


Related posts:<ol><li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/how-to-add-a-search-engine-to-your-website/' rel='bookmark' title='Permanent Link: How To Add A Search Engine To Your Website'>How To Add A Search Engine To Your Website</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/website-optimization/rss-or-email-how-to-keep-your-viewers-updated/' rel='bookmark' title='Permanent Link: RSS Or Email? &#8211; How To Keep Your Viewers Updated'>RSS Or Email? &#8211; How To Keep Your Viewers Updated</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/unobtrusive-javascript-%e2%80%93-website-accessibility-even-if-javascript-is-disabled/' rel='bookmark' title='Permanent Link: Unobtrusive JavaScript – Website Accessibility When JavaScript Is Disabled'>Unobtrusive JavaScript – Website Accessibility When JavaScript Is Disabled</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you have both a blog and a website or more than one of each, have you thought of incorporating RSS feeds of one to another?  For example, you can embed the RSS feed from your blog into another one of your websites.  This is of course presuming that you already have an existing RSS feed.  If not, you can get a little more background information on RSS feeds from the previous article “<a  href="http://webhostinghelpguy.inmotionhosting.com/djh">RSS Or Email? &#8211; How To Keep Your Viewers Updated</a>.”  </p>
<p>Well if you haven&#8217;t considered incorporating your feed to your other website(s), you should take into account some of the benefits of cross-promoting:  </p>
<ul>
	<br/>
<li>Exposes viewers to your other site(s) to help increase traffic</li>
<p><br/>
<li>Viewers can easily see the content of your feed if they&#8217;re not subscribers yet</li>
<p><br/>
<li>It adds more opportunity for search engine spiders to index the additional content</li>
</ul>
<p><br/><img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2010/12/rssfeeds.png" alt="RSS Feeds" title="rssfeeds" width="575" height="430" class="alignnone size-full wp-image-3186" /></p>
<p><br/><br />
<h4 style="text-align:center;">Here are a few different tools to embed a feed into your website:</h4>
<p><br/>
<p style="text-align: center;"><a  href="http://feedburner.google.com"><img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2010/12/buzzboost-screencap1.png" alt="BuzzBoost Logo" title="buzzboost-screencap" width="190" height="223" class="alignnone size-full wp-image-3189" /></a></p>
<p><br/><a  href="http://feedburner.google.com">BuzzBoost</a> &#8211; This is a feature from FeedBurner (now acquired by Google) that lets you cross-promote a feed to any site that you can display HTML by inserting a small piece of JavaScript code into your website.</p>
<p><br/>
<p style="text-align: center;"><a  href="http://www.google.com/uds/solutions/wizards/dynamicfeed.html"><img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2010/12/google-feed-screencap.png" alt="Google AJAX Feed API" title="google-feed-screencap" width="575" height="129" class="alignnone size-full wp-image-3192" style="border: 1px solid darkgrey;"/></a></p>
<p><br/><a  href="http://www.google.com/uds/solutions/wizards/dynamicfeed.html">Google AJAX Feed API</a> &#8211; This is another tool from Google that allows you to embed a Dynamic Feed Control on your website that displays customized views of the feeds you want to display in 2 steps.</p>
<p><br/>
<p style="text-align: center;"><a  href="http://www.feedforall.com/more-php.htm"><img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2010/12/feedforall-screencap.png" alt="FeedForAll Screencap" title="feedforall-screencap" width="335" height="133" class="alignnone size-full wp-image-3195" style="border: 1px solid darkgrey;"/></a></p>
<p><br/><a  href="http://www.feedforall.com/more-php.htm">RSS2HTML PHP Script</a> &#8211; This is a free PHP script that serves as another method of embedding an RSS feed to a website.  The benefit of adding a non-JavaScript format is that the content can be found by search engine bots.</p>
<p><br/>
<p style="text-align: center;"><a  href="http://wordpress.org/extend/plugins/selective-rss/"><img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2010/12/selectiverss-screencap.png" alt="Selective RSS Screencap" title="selectiverss-screencap" width="561" height="273" class="alignnone size-full wp-image-3197" style="border: 1px solid darkgrey;"/></a></p>
<p><br/><a  href="http://wordpress.org/extend/plugins/selective-rss/">Selective RSS For WordPress</a> &#8211; This is a plugin for WordPress that allows you to embed an RSS feed into your WP pages or posts, with additional options such as selecting the amount of feeds to display or choosing which ones to display using keywords.</p>
<p><br/>
<p class="commenter">What other ways do you cross-promote your websites/blogs?</p>


<p>Related posts:<ol><li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/how-to-add-a-search-engine-to-your-website/' rel='bookmark' title='Permanent Link: How To Add A Search Engine To Your Website'>How To Add A Search Engine To Your Website</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/website-optimization/rss-or-email-how-to-keep-your-viewers-updated/' rel='bookmark' title='Permanent Link: RSS Or Email? &#8211; How To Keep Your Viewers Updated'>RSS Or Email? &#8211; How To Keep Your Viewers Updated</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/unobtrusive-javascript-%e2%80%93-website-accessibility-even-if-javascript-is-disabled/' rel='bookmark' title='Permanent Link: Unobtrusive JavaScript – Website Accessibility When JavaScript Is Disabled'>Unobtrusive JavaScript – Website Accessibility When JavaScript Is Disabled</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://webhostinghelpguy.inmotionhosting.com/web-design-tips/cross-promotion-embed-an-rss-feed-to-your-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Favicon.ico – How To Easily Add A Favorites Icon To Your Website</title>
		<link>http://webhostinghelpguy.inmotionhosting.com/web-design-tips/favicon-ico-%e2%80%93-how-to-easily-add-a-favorites-icon-to-your-website/</link>
		<comments>http://webhostinghelpguy.inmotionhosting.com/web-design-tips/favicon-ico-%e2%80%93-how-to-easily-add-a-favorites-icon-to-your-website/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 20:39:44 +0000</pubDate>
		<dc:creator>Web Hosting Help Guy</dc:creator>
				<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[How To:]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web Design Tips]]></category>
		<category><![CDATA[Favicon]]></category>
		<category><![CDATA[ICO]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://webhostinghelpguy.inmotionhosting.com/?p=3156</guid>
		<description><![CDATA[From a user's perspective, Favicons act as a visual cue for easily identifying different websites in a Favorites list.  And from a website owner's perspective, it acts as a branding tool.  But not only that, if you don't have a Favicon, which most browsers look for these days, you will end up with a large amount of 404 errors in your server error logs...
<img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2010/12/bookmarks-screencap.png" alt="Bookmarks Favicon Screencap" title="bookmarks-screencap" width="575" height="380" class="alignnone size-full wp-image-3172" style="border: 1px solid darkgrey;"/>


Related posts:<ol><li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/streaming-video-audio-on-your-website/' rel='bookmark' title='Permanent Link: Streaming Video &#038; Audio On Your Website'>Streaming Video &#038; Audio On Your Website</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/ab-testing-a-guide-to-split-testing-2-different-versions-of-a-website/' rel='bookmark' title='Permanent Link: A/B Testing:  A Guide To Split Testing 2 Versions Of A Full Website'>A/B Testing:  A Guide To Split Testing 2 Versions Of A Full Website</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/unobtrusive-javascript-%e2%80%93-website-accessibility-even-if-javascript-is-disabled/' rel='bookmark' title='Permanent Link: Unobtrusive JavaScript – Website Accessibility When JavaScript Is Disabled'>Unobtrusive JavaScript – Website Accessibility When JavaScript Is Disabled</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Have you ever wondered what that tiny image is next to a URL in your browser&#8217;s address bar (which is usually a logo associated with the website)?  Or, how you could add one to your own website?  </p>
<p><img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2010/12/favicon-screencap.png" alt="Favicon Screencap" title="favicon-screencap" width="575" height="55" class="alignnone size-full wp-image-3164" style="border: 1px solid darkgrey;"/></p>
<p>That small image is referred to as a Favorites Icon, or better known by it&#8217;s abbreviation as a Favicon <em>(which is usually 16&#215;16 or 32&#215;32 pixels in size, and has 8 or 24-bit color depth)</em>.  These images also appear in a Favorites or Bookmarks list if websites on the list utilize them, and on tabs in tab-enabled browsers.  </p>
<p><img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2010/12/favicon-tabs-screencap.png" alt="Favicon Tabs Screencap" title="favicon-tabs-screencap" width="575" height="31" class="alignnone size-full wp-image-3168" style="border: 1px solid darkgrey;"/></p>
<p>So, from a user&#8217;s perspective, Favicons act as a visual cue for easily identifying different websites in a Favorites list.  And from a website owner&#8217;s perspective, it acts as a branding tool.  </p>
<p>But not only that, if you don&#8217;t have a Favicon, which most browsers look for these days, you will end up with a large amount of 404 errors in your server error logs just for misdirected “favicon.ico” (.ico is the Windows Icon file format) file  requests.  Moreover, if you have a custom 404 error file, you could end up with wasted bandwidth with all of the requests for that 404 file instead of just pulling up a smaller .ico file.</p>
<p>Therefore, it would be beneficial to add a Favicon to your website to help clean up your server error logs, and more importantly, add an extra step to establish your website&#8217;s identity.</p>
<p><img src="http://webhostinghelpguy.inmotionhosting.com/wp-content/uploads/2010/12/bookmarks-screencap.png" alt="Bookmarks Favicon Screencap" title="bookmarks-screencap" width="575" height="380" class="alignnone size-full wp-image-3172" style="border: 1px solid darkgrey;"/></p>
<p><strong>Note:</strong><br />
<em>Favicons can also be created in other file formats, such as PNG, GIF, JPEG, etc.  However, Internet Explorer does not support these formats.  The ICO format is cross-browser compatible (Internet Explorer, Google Chrome, Mozilla Firefox, Opera, and Safari).</em><br />
<br/><br />
<h4 style="text-align:left;">How to create a Favicon:</h4>
<p><strong>Generators</strong><br />
Here&#8217;s a short list of various Favicon generators:<br />
<br/>
<ul style="list-style-type:decimal !important; font-weight: bold;">
<li><span style="font-weight: normal;"><a href="http://tools.dynamicdrive.com/favicon/">DynamicDrive FavIcon Generator</a> &#8211; This tool will automatically generate a .ico file and scale down its size using an image that you upload.</span></li>
<p><br/>
<li><span style="font-weight: normal;"><a href="http://www.favicon.cc/">Favicon.cc</a> &#8211; This site allows you to design your Favicon using the painting/drawing tool on their website, and then generates a .ico file of your design.</span></li>
<p><br/>
<li><span style="font-weight: normal;"><a href="http://www.htmlkit.com/services/favicon/">FavIcon from Pics</a> &#8211; This can create a still or animated Favicon (.ico file) from an image that you upload.</span></li>
</ul>
<p><br/><strong>Using Photoshop</strong><br />
In order to create a Favicon using Adobe Photoshop:<br />
<br/>
<ul style="list-style-type:decimal !important; font-weight: bold;">
<li><span style="font-weight: normal;">Download the Windows Icon (ICO) file format plugin that allows you to export the file to the .ico format.  You can download an ICO Format plugin for Photoshop here: <a href="http://www.telegraphics.com.au/sw/">http://www.telegraphics.com.au/sw/</a>.</span></li>
<p><br/>
<li><span style="font-weight: normal;">Scale an image or logo down to 16&#215;16 pixels, or you can use a 64&#215;64 canvas to create a simple design that can be scaled down.</span></li>
</ul>
<p><br/><br />
<h4 style="text-align:left;">How to add a Favicon to your site:</h4>
<p>Once you&#8217;ve created a Favicon by either methods, the next step is to upload the file.<br />
<br/>
<ul style="list-style-type:decimal !important; font-weight: bold;">
<li><span style="font-weight: normal;"><strong>Add To Root Directory</strong> – If you have access to the root directory of your website, add the following code into the <head></head> section or to any specific web page(s).</span></li>
<pre class="brush: xml; title: ;">
&lt;link rel=&quot;shortcut icon&quot; type=&quot;image/x-icon&quot; href=&quot;/favicon.ico&quot;/&gt;
</pre>
<p><br/>
<li><span style="font-weight: normal;"><strong>Add To Your Blog</strong> – To add a Favicon to your blog, you will have to add a plugin to the platform that you&#8217;re using.  Here&#8217;s a free WordPress plugin called <a  href="http://wordpress.org/extend/plugins/shockingly-simple-favicon/">Shockingly Simple Favicon</a>.</span></li>
</ul>
<p><br/><strong>Note:</strong><br />
To test that your Favicon file is working, make sure to:<br />
<br/>
<ul style="list-style-type:decimal !important; font-weight: bold;">
<li><span style="font-weight: normal;">Delete all of the current bookmarks to your website if you have any</span></li>
<li><span style="font-weight: normal;">Clear your History, Cache and Recycle Bin</span></li>
<li><span style="font-weight: normal;">Restart your computer</span></li>
<li><span style="font-weight: normal;">Bookmark your website, and your Favicon should appear</span></li>
</ul>
<p><br/>
<p class="commenter">Which method of creating a Favicon do you prefer?</p>


<p>Related posts:<ol><li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/streaming-video-audio-on-your-website/' rel='bookmark' title='Permanent Link: Streaming Video &#038; Audio On Your Website'>Streaming Video &#038; Audio On Your Website</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/ab-testing-a-guide-to-split-testing-2-different-versions-of-a-website/' rel='bookmark' title='Permanent Link: A/B Testing:  A Guide To Split Testing 2 Versions Of A Full Website'>A/B Testing:  A Guide To Split Testing 2 Versions Of A Full Website</a></li>
<li><a href='http://webhostinghelpguy.inmotionhosting.com/web-design-tips/unobtrusive-javascript-%e2%80%93-website-accessibility-even-if-javascript-is-disabled/' rel='bookmark' title='Permanent Link: Unobtrusive JavaScript – Website Accessibility When JavaScript Is Disabled'>Unobtrusive JavaScript – Website Accessibility When JavaScript Is Disabled</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://webhostinghelpguy.inmotionhosting.com/web-design-tips/favicon-ico-%e2%80%93-how-to-easily-add-a-favorites-icon-to-your-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

