<?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>Kim Fenolio &#187; Technical Advice</title>
	<atom:link href="http://www.kimfenolio.com/category/technical-advice/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kimfenolio.com</link>
	<description>Recognizing the importance of convenience, quality and versatility</description>
	<lastBuildDate>Tue, 15 Feb 2011 19:52:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
  <link>http://www.kimfenolio.com</link>
  <url>http://www.kimfenolio.com/favicon1.ico</url>
  <title>Kim Fenolio</title>
</image>
		<item>
		<title>The Purpose and Importance of a DOCTYPE</title>
		<link>http://www.kimfenolio.com/11-08-2010/the-purpose-and-importance-of-a-doctype/</link>
		<comments>http://www.kimfenolio.com/11-08-2010/the-purpose-and-importance-of-a-doctype/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 15:40:25 +0000</pubDate>
		<dc:creator>Kim Fenolio</dc:creator>
				<category><![CDATA[Technical Advice]]></category>
		<category><![CDATA[doc]]></category>
		<category><![CDATA[doctype]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[reasons]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[why]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=188</guid>
		<description><![CDATA[
			
				
			
		Recently someone asked me what a DOCTYPE was. I paused for a moment and thought, &#8220;well, I know the DOCTYPE is the first thing at the top of every webpage, even before the HTML tag.&#8221; Quite honestly though, I had no idea what the purpose of it was. When I start coding a new page, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F11-08-2010%2Fthe-purpose-and-importance-of-a-doctype%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F11-08-2010%2Fthe-purpose-and-importance-of-a-doctype%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p><img class="alignright size-full wp-image-194" title="doctype" src="http://www.kimfenolio.com/wp-content/uploads/2010/11/doctype.png" alt="doctype" width="250" height="128" />Recently someone asked me what a DOCTYPE was. I paused for a moment and thought, &#8220;well, I know the DOCTYPE is the first thing at the top of every webpage, even before the HTML tag.&#8221; Quite honestly though, I had no idea what the purpose of it was. When I start coding a new page, I let Dreamweaver create a new blank document and generate whatever the default tags are. DOCTYPE was one of the ones it tosses in there for me. I figure, if this is a standard thing on webpages, I should know what it is, why it&#8217;s there and why it&#8217;s so important. Yes, DOCTYPE is important. Why do I know this? It&#8217;s on <strong>every</strong> page of every website, or at least it should be.</p>
<p>For example, the DOCTYPE on this website looks like this:<br />
&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;</p>
<h3>But What Does it All Mean?</h3>
<p>Let&#8217;s break down what DOCTYPE means to try and make it easy. DOC means document. TYPE means type. Plainly put, the DOCTYPE declares what type of documentation (or rules) our HTML page is being displayed with.  If you don&#8217;t declare a DOCTYPE, the browser will assume you have no idea what you&#8217;re doing and will go into &#8220;fix-it&#8221; mode <em>generally</em> using the transitional ruleset as outlined below. The action is not the same from browser to browser. The unpredictability of that in and of itself should encourage you to not only use a DOCTYPE but also the <em>proper</em> DOCTYPE. If you&#8217;re paying attention that means there are different types of documentation, or sets of rules, that each website can be displayed using.</p>
<h3>Strict DOCTYPE</h3>
<p>The first of three types is the <strong>strict</strong> DOCTYPE. Any website with strict DOCTYPEs will tell the browser to follow the HTML rules as set by the W3C. For those of you not in <em>the know</em>, the World Wide Web Consortium is the lovely group that outlines and sets all the HTML standards that us developers should be following. That means that any website using using this DOCTYPE will not display deprecated items like the &lt;font&gt; tag (if you&#8217;re still using &lt;font&gt; I&#8217;ll ask that you please back away from the keyboard slowly, then call me for some consulting help).</p>
<p>Let&#8217;s say that you didn&#8217;t know what a DOCTYPE was and you never included it on your webpage, but then you also used &lt;font&gt; tags. I bet you had all kinds of trouble trying to figure out why the darn code you were using didn&#8217;t work. Well, if you don&#8217;t specify within the DOCTYPE tag which type you want it to use, then your browser is trained like a good little puppy to display your page using <strong>strict</strong> rules by default. You see, the strict DOCTYPE makes you stand up straight! Stomach in, chest out! It accepts no substitutes or less than what the rules call for.</p>
<p>Strict HTML<br />
&lt;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.01//EN&#8221; &#8220;http://www.w3.org/TR/html4/strict.dtd&#8221;&gt;</p>
<p>Strict XHTML<br />
&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;</p>
<h3>Transitional DOCTYPE</h3>
<p>The <strong>transitional</strong> DOCTYPE is for those of us who are want a little bit of everything. For instance, you don&#8217;t want to stop using &lt;font&gt; tags (shame on you!) but you have moved onto trying out some of the newer rules. Basically, this DOCTYPE gives you greater flexibility and tells your browser it&#8217;s okay to use both current and deprecated tags.</p>
<p>Transitional HTML<br />
&lt;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.01 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/html4/loose.dtd&#8221;&gt;</p>
<p>Transitional XHTML<br />
&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;</p>
<h3>Frameset DOCTYPE</h3>
<p>If you were to use frames (which you shouldn&#8217;t), then the <strong>frameset</strong> DOCTYPE can be used. It will tell your browser to use the rules of the transitional DOCTYPE but also allow for frames. For the record: frames are bad for SEO, search engines, usability, bookmarking and it just plain looks bad.</p>
<p>HTML Frameset<br />
&lt;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.01 Frameset//EN&#8221; &#8220;http://www.w3.org/TR/html4/frameset.dtd&#8221;&gt;</p>
<p>XHTML Frameset<br />
&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Frameset//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd&#8221;&gt;</p>
<p>As you can see in my examples above, you can tell your browser through the DOCTYPE tag if your page was built in HTML or XHTML. It will also include a URL to the official W3C website. It points to the exact page where the rules for that DOCTYPE actually exist. You&#8217;re telling the browser, &#8220;this is the DOCTYPE that I want you to use and here&#8217;s the rules to support it.&#8221; That leaves zero questions, your browser has less to think about and will display your page quicker. As standards change, using these URLs will allow browsers to seemlessly support your HTML code even after the W3C posts new standards.</p>
<p>It&#8217;s important to keep up with what&#8217;s changing with the W3C. As they release new versions of HTML or XHTML, our DOCTYPE tags will need to change in order to maintain top standards. For example, with HTML 5 now making it&#8217;s way towards the mainstream, the tag you would use is &lt;!DOCTYPE HTML&gt;. Pretty simple and quite a bit different than current methods, however it&#8217;ll be the new standard!</p>
<p>Now remember, if you don&#8217;t follow the rules, your webpage just won&#8217;t work right. So with a little bit of practice, you&#8217;ll be able to keep that stomach in and your chest out. C&#8217;mon, show me what you can do!</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F11-08-2010%2Fthe-purpose-and-importance-of-a-doctype%2F';
  addthis_title  = 'The+Purpose+and+Importance+of+a+DOCTYPE';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/11-08-2010/the-purpose-and-importance-of-a-doctype/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>An HTML Footer Include Made Easy</title>
		<link>http://www.kimfenolio.com/08-03-2010/html-footer-include-made-easy/</link>
		<comments>http://www.kimfenolio.com/08-03-2010/html-footer-include-made-easy/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 19:54:03 +0000</pubDate>
		<dc:creator>Kim Fenolio</dc:creator>
				<category><![CDATA[Technical Advice]]></category>
		<category><![CDATA[footer]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[include]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=173</guid>
		<description><![CDATA[
			
				
			
		Someone asked me a question about HTML includes recently.
I want to make changes to the footer on one page and make it change across all of my pages. How do I do this?
Well, it&#8217;s pretty simple. Here&#8217;s a quick tutorial.

Create a new HTML page with empty code. If your editor inserts code automatically, delete it.
Go [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F08-03-2010%2Fhtml-footer-include-made-easy%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F08-03-2010%2Fhtml-footer-include-made-easy%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p>Someone asked me a question about HTML includes recently.
<div style="border:1px solid #999;background:#e4e4e4;padding:5px;margin:10px 0 10px 60px;"><b>I want to make changes to the footer on one page and make it change across all of my pages. How do I do this?</b></div>
<p>Well, it&#8217;s pretty simple. Here&#8217;s a quick tutorial.</p>
<ol>
<li>Create a new HTML page with empty code. If your editor inserts code automatically, delete it.</li>
<li>Go to your original HTML page where you have your existing footer. Cut the code (Edit-&gt;Cut). Paste (Edit-&gt;Paste) it into the new HTML file you created. Save it as footer.html into the root directory (wherever your index.html is located.</li>
<li>Now we want to insert the code that includes the newly created footer on the page. This is called an HTML Include. Go back to your original HTML page. In place of where you originally had the footer code, you&#8217;re going to insert this code:<br />
&lt;!&#8211;#include file=&#8221;footer.html&#8221;&#8211;&gt;</li>
<li>Save your file.</li>
<li>Upload both files to your server and everything should work perfectly.</li>
</ol>
<p>For all other existing pages of your website, you&#8217;ll need to go and delete its current footer and add in the HTML Include footer code. If you&#8217;re using a program like Dreamweaver or Microsoft Visual Web Developer you can do a Find and Replace of the entire solution to make it quick and easy.</p>
<p>You can also do the same thing for your header, a sidebar or anything else that repeats throughout your site.</p>
<p>Any questions?</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F08-03-2010%2Fhtml-footer-include-made-easy%2F';
  addthis_title  = 'An+HTML+Footer+Include+Made+Easy';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/08-03-2010/html-footer-include-made-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adjusting Your Microphone&#8217;s Recording Volume</title>
		<link>http://www.kimfenolio.com/01-29-2008/adjusting-your-microphones-recording-volume/</link>
		<comments>http://www.kimfenolio.com/01-29-2008/adjusting-your-microphones-recording-volume/#comments</comments>
		<pubDate>Tue, 29 Jan 2008 23:05:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Experience]]></category>
		<category><![CDATA[Technical Advice]]></category>
		<category><![CDATA[adjustment]]></category>
		<category><![CDATA[microphone]]></category>
		<category><![CDATA[recording volume]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://www.kimfenolio.com/?p=18</guid>
		<description><![CDATA[
			
				
			
		This article is going to cover how to adjust your microphone&#8217;s recording volume if you&#8217;re on a Windows XP machine. I voice chat a lot and run across many people whose microphone volume&#8217;s are coming across either too soft or too loud.
Why is this a problem? Well, for example, if I have three other people [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.kimfenolio.com%2F01-29-2008%2Fadjusting-your-microphones-recording-volume%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.kimfenolio.com%2F01-29-2008%2Fadjusting-your-microphones-recording-volume%2F&amp;source=kFenolio&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" />
			</a>
		</div><p>This article is going to cover how to adjust your microphone&#8217;s recording volume if you&#8217;re on a Windows XP machine. I voice chat a lot and run across many people whose microphone volume&#8217;s are coming across either too soft or too loud.</p>
<p>Why is this a problem? Well, for example, if I have three other people on a Skype conference call, one person might be soft while the other two are a good volume. I don&#8217;t want to turn up my system volume because the other two will be exceptionally loud in my ear while that one person will be at an acceptable level. The one person who is too soft should be able to adjust their level so that the rest of the people in the call won&#8217;t have to adjust.</p>
<p>These instructions are for those who are using the Win XP generic drivers for their sound card. The majority of people are. If you&#8217;re using something else, then you may be able to adapt these instructions. Give it a read and see.</p>
<p>There are two different ways to get into the panel and adjust the recording volume. I&#8217;m going to list both ways. You decide which is easier. Screen shots are provided within the instructions. Click on the thumbnails to view the full size image.</p>
<p><strong>Access From the System Tray </strong>(with explanations)</p>
<ol>
<li>In your system tray (the little area on your taskbar with the clock) there will be an icon that looks like a little gray speaker. Double click on it.<br />
<a href="http://www.kimfenolio.com/wp-content/uploads/2008/01/taskbar.jpg" target="_blank" title="Sound Mixer via the Taskbar"><img src="http://www.kimfenolio.com/wp-content/uploads/2008/01/taskbar.thumbnail.jpg" alt="Sound Mixer via the Taskbar" /></a></li>
<li>The window that comes up is called your Playback Control. This is what controls the volume of anything that you hear either over your speakers or through your headphones. There, you will see a Microphone slider. This controls how loud you hear yourself through your headphones. If the mute button is checked, then you won&#8217;t hear yourself at all. This has no baring on whether or not others will hear you if you&#8217;re in a VOIP call. It only controls what *you* hear of yourself. Only adjust this volume slider if you need to hear more or less of yourself.<br />
<a href="http://www.kimfenolio.com/wp-content/uploads/2008/01/playbackcontrol.jpg" target="_blank" title="Playback Control"><img src="http://www.kimfenolio.com/wp-content/uploads/2008/01/playbackcontrol.thumbnail.jpg" alt="Playback Control" /></a></li>
<li>To get to the area where we adjust the recording volume (what others will hear when you&#8217;re in a call) click on Options at the top of the window. Then Properties.</li>
<li>The Properties box now has an area in the top that says &#8220;Adjust volume for&#8221;. Click the Recording button.<br />
<a href="http://www.kimfenolio.com/wp-content/uploads/2008/01/propertiesplayback.jpg" target="_blank" title="Playback Properties"><img src="http://www.kimfenolio.com/wp-content/uploads/2008/01/propertiesplayback.thumbnail.jpg" alt="Playback Properties" /></a></li>
<li>You should now notice that the options in the bottom of that box have changed. Make sure that there is a check mark next to where it says Microphone. Then click OK.<br />
<a href="http://www.kimfenolio.com/wp-content/uploads/2008/01/propertiesrecord.jpg" target="_blank" title="Recording Properties"><img src="http://www.kimfenolio.com/wp-content/uploads/2008/01/propertiesrecord.thumbnail.jpg" alt="Recording Properties" /></a></li>
<li>The window will now change and become the Record Control. This is the mixer that controls what gets recorded or sent out as audio through a call. Each of these sliders does not have a &#8220;Mute&#8221; under it, instead it has &#8220;Select&#8221; under it. Unless you have an advanced setup (you&#8217;ll know if you have this) you will want the check in the box underneath the Microphone slider. None of the other sliders on this window will effect your outgoing voice or audio. Generally, the best place to have your slider is right at or just above the halfway mark. If people tell you that you need to be louder, obviously you&#8217;ll want to drag the slider up. If you&#8217;re too loud, drag the slider down.<br />
<a href="http://www.kimfenolio.com/wp-content/uploads/2008/01/recordcontrol.jpg" target="_blank" title="Record Control"><img src="http://www.kimfenolio.com/wp-content/uploads/2008/01/recordcontrol.thumbnail.jpg" alt="Record Control" /></a></li>
<li>When your voice is being sent out at an acceptable level, simply close the window.</li>
</ol>
<p><strong> Access From Control Panel</strong></p>
<ol>
<li>Go to Start, Control Panel. Double click on Sound and Audio Devices. If you don&#8217;t see that, click on &#8220;Classic View&#8221; in the left hand side of the window.</li>
<li>Click the Audio tab. Then click Volume under the &#8220;Sound recording&#8221; area.<br />
<a href="http://www.kimfenolio.com/wp-content/uploads/2008/01/sadp.jpg" target="_blank" title="Sound and Device Properties"><img src="http://www.kimfenolio.com/wp-content/uploads/2008/01/sadp.thumbnail.jpg" alt="Sound and Device Properties" /></a></li>
<li>The window will now change and become the Record Control. This is the mixer that controls what gets recorded or sent out as audio through a call. Each of these sliders does not have a &#8220;Mute&#8221; under it, instead it has &#8220;Select&#8221; under it. Unless you have an advanced setup (you&#8217;ll know if you have this) you will want the check in the box underneath the Microphone slider. None of the other sliders on this window will effect your outgoing voice or audio. Generally, the best place to have your slider is right at or just above the halfway mark. If people tell you that you need to be louder, obviously you&#8217;ll want to drag the slider up. If you&#8217;re too loud, drag the slider down.</li>
<li>When your voice is being sent out at an acceptable level, simply close the window.</li>
</ol>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.kimfenolio.com%2F01-29-2008%2Fadjusting-your-microphones-recording-volume%2F';
  addthis_title  = 'Adjusting+Your+Microphone%26%238217%3Bs+Recording+Volume';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.kimfenolio.com/01-29-2008/adjusting-your-microphones-recording-volume/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

