<?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>Pam Van Londen &#187; Knowledge Base</title>
	<atom:link href="http://pamvanlonden.com/category/knowledge/feed/" rel="self" type="application/rss+xml" />
	<link>http://pamvanlonden.com</link>
	<description>Corvallis Artist, Oregon Artist. Creating Every Day...paintings, web sites, and courses Oregon daily painter, murals and portraits. Corvallis Web Designer / Web Developer</description>
	<lastBuildDate>Fri, 03 Sep 2010 00:20:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Stylesheets for Handheld Devices</title>
		<link>http://pamvanlonden.com/stylesheets-for-handheld-devices/</link>
		<comments>http://pamvanlonden.com/stylesheets-for-handheld-devices/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 02:27:34 +0000</pubDate>
		<dc:creator>Pam Van Londen</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://pamvanlonden.com/?p=4112</guid>
		<description><![CDATA[<a href="http://pamvanlonden.com/stylesheets-for-handheld-devices/"><img align="left" hspace="5" width="150" height="150" src="http://pamvanlonden.com/wp-content/plugins/thumbnail-for-excerpts/tfe_no_thumb.png" class="alignleft wp-post-image tfe" alt="" title="" /></a>To improve readability of your web site on smart phones and other handheld devices, add a handheld media type style sheet which simplifies the page layout, user interface, and eliminates unnecessary items. &#60;!-- for other devices --&#62; &#60;link href="handheld.css" rel="stylesheet" type="text/css" media="handheld, only screen and (max-device-width: 320px)" /&#62; &#60;!-- for iphones--&#62; &#60;link href="handheld.css" rel="stylesheet" type="text/css" [...]]]></description>
			<content:encoded><![CDATA[<p>To improve readability of your web site on smart phones and other handheld devices, add a handheld media type style sheet which simplifies the page layout, user interface, and eliminates unnecessary items.</p>
<pre><code>&lt;!-- for other devices --&gt;
&lt;link href="handheld.css"
rel="stylesheet" type="text/css"
media="handheld, only screen and (max-device-width: 320px)" /&gt; </code>

<code>&lt;!-- for iphones--&gt;
&lt;link href="handheld.css"
rel="stylesheet" type="text/css"
media="only screen and (max-device-width: 480px)" /&gt;</code>
</pre>
<h4>Key recommendations include using:</h4>
<ul>
<li>Single-column liquid layout, which does not use frames, popup windows, or JavaScript.</li>
<li>Useful alternative descriptions on images.</li>
<li>Simple, non-dynamic menus with links that look like links.</li>
<li>No floating:  <code>* {float: none;}</code></li>
<li>A maximum width for images: <code>#content img { max-width: 250px;}</code></li>
</ul>
<p>Note: According to Jeff Starr, &#8220;the trick to getting Windows Mobile to recognize <code>handheld</code> stylesheets is to capitalize the <code>media</code> attribute value for the <code>screen</code> stylesheet.&#8221;</p>
<h4>Resources</h4>
<ul>
<li><a href="http://perishablepress.com/press/2009/08/02/the-5-minute-css-mobile-makeover/">The 5-Minute CSS Mobile Makeover</a><em> by</em> Jeff Starr, 2009</li>
<li><a href="http://www.alistapart.com/articles/pocket/">Pocket-Sized Design: Taking Your Website to the Small Screen</a> by 	<a href="http://www.alistapart.com/authors/e/elikaetemad">Elika Etemad</a>,  	<a href="http://www.alistapart.com/authors/n/jorunnd.newth"> Jorunn D. Newth 2004</a></li>
<li><a href="http://m.alistapart.com/articles/return-of-the-mobile-stylesheet/">Return of the Mobile Stylesheet</a> by <a href="http://m.alistapart.com/authors/h/Dominique%20Haza%C3%ABl-Massieux">Dominique Hazaël-Massieux 2009</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://pamvanlonden.com/stylesheets-for-handheld-devices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a stylesheet for IE</title>
		<link>http://pamvanlonden.com/creating-a-stylesheet-for-ie/</link>
		<comments>http://pamvanlonden.com/creating-a-stylesheet-for-ie/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 01:45:49 +0000</pubDate>
		<dc:creator>Pam Van Londen</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://pamvanlonden.com/?p=4108</guid>
		<description><![CDATA[<a href="http://pamvanlonden.com/creating-a-stylesheet-for-ie/"><img align="left" hspace="5" width="150" height="150" src="http://pamvanlonden.com/wp-content/plugins/thumbnail-for-excerpts/tfe_no_thumb.png" class="alignleft wp-post-image tfe" alt="" title="" /></a>Internet Explorer 6, 7, and 8 can often provide a different design than intended due to the lack of adherence to WC3 standards. To help make your web design look like it does in FireFox, Chrome, and Safari, try these options: Use IE-only hacks in an existing external style sheet. Use a conditional statement in [...]]]></description>
			<content:encoded><![CDATA[<p>Internet Explorer 6, 7, and 8 can often provide a different design than intended due to the lack of adherence to WC3 standards. To help make your web design look like it does in FireFox, Chrome, and Safari, try these options:</p>
<ul>
<li>Use IE-only hacks in an existing external style sheet.</li>
<li>Use a <a href="http://msdn.microsoft.com/en-us/library/ms537512.aspx" target="_blank">conditional statement</a> in the &lt;head&gt; section which calls embedded &lt;style&gt; definitions.</li>
<li>Use a <a href="http://msdn.microsoft.com/en-us/library/ms537512.aspx" target="_blank">conditional statement</a> in the &lt;head&gt; section which calls an external style sheet build just for IE: ie.css.</li>
</ul>
<h4>Resources</h4>
<ul>
<li> <a title="Permanent Link to How To Create an IE-Only Stylesheet" rel="bookmark" href="http://css-tricks.com/how-to-create-an-ie-only-stylesheet/">How To Create an IE-Only Stylesheet</a> by Chris Coyier 2010</li>
<li><a href="http://www.webdevout.net/css-hacks" target="_blank">Conditional Comments, in-CSS Hacks, and Unrecommended Hacks</a> 2010</li>
<li><a href="http://www.webcredible.co.uk/user-friendly-resources/css/internet-explorer.shtml" target="_blank">Internet Explorer and CSS Issues</a> 2006</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://pamvanlonden.com/creating-a-stylesheet-for-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimize Images using iPhoto</title>
		<link>http://pamvanlonden.com/optimize-images-using-iphoto/</link>
		<comments>http://pamvanlonden.com/optimize-images-using-iphoto/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 18:55:33 +0000</pubDate>
		<dc:creator>Pam Van Londen</dc:creator>
				<category><![CDATA[Production]]></category>

		<guid isPermaLink="false">http://pamvanlonden.com/?p=4219</guid>
		<description><![CDATA[<a href="http://pamvanlonden.com/optimize-images-using-iphoto/"><img align="left" hspace="5" width="150" src="http://pamvanlonden.com/wp-content/uploads/2009/11/iphoto-settings-300x234.gif" class="alignleft wp-post-image tfe" alt="Update iPhone settings" title="Update iPhone settings" /></a>Optimize images using the Macintosh iPhoto application Double-click the Pictures menu in the Finder to open iPhoto. Select Preferences from the iPhoto menu on the main menu bar. Choose General-&#62;Edit Photo-&#62;in Separate Window to ensure you edit inside iPhoto and not another application. Select a photo from the Events, Photos, or Albums list. Click the [...]]]></description>
			<content:encoded><![CDATA[<h3>Optimize images using the Macintosh iPhoto application</h3>
<ol>
<li>Double-click the <strong>Pictures</strong> menu in the <strong>Finder</strong> to open <strong>iPhoto</strong>.</li>
<li>Select <strong>Preferences</strong> from the <strong>iPhoto</strong> menu on the main menu bar.
<ul>
<li>Choose <strong>General-&gt;Edit Photo-&gt;in Separate Window</strong> to ensure you edit inside <strong>iPhoto</strong> and not another application.</li>
<li>
<p><div id="attachment_4233" class="wp-caption alignnone" style="width: 310px"><a href="http://pamvanlonden.com/wp-content/uploads/2009/11/iphoto-settings.gif"><img class="size-medium wp-image-4233 " title="Update iPhone settings" src="http://pamvanlonden.com/wp-content/uploads/2009/11/iphoto-settings-300x234.gif" alt="Update iPhone settings" width="300" height="234" /></a><p class="wp-caption-text">Update iPhone settings</p></div></li>
</ul>
</li>
<li>Select a photo from the <strong>Events</strong>, <strong>Photos</strong>, or <strong>Albums</strong> list.
<ul>
<li>Click the <strong>Edit</strong> icon and <strong>Crop</strong> and enhance the image as needed.</li>
</ul>
<ul>
<li>Click <strong>Apply</strong> for each editing option.</li>
<li>
<p><div id="attachment_4229" class="wp-caption alignnone" style="width: 310px"><a href="http://pamvanlonden.com/wp-content/uploads/2009/11/iphoto-edit.jpg"><img class="size-medium wp-image-4229" title="Crop using the selection corners, then click Apply" src="http://pamvanlonden.com/wp-content/uploads/2009/11/iphoto-edit-300x284.jpg" alt="Crop using the selection corners, then click Apply" width="300" height="284" /></a><p class="wp-caption-text">Crop using the selection corners, then click Apply</p></div></li>
</ul>
</li>
<li>With the newly cropped image selected in the <strong>Photo Album</strong> screen, edit the <strong>Title</strong> of the image (remember not to add spaces or upper case letters).
<ul>
<li>
<p><div id="attachment_4231" class="wp-caption alignnone" style="width: 310px"><a href="http://pamvanlonden.com/wp-content/uploads/2009/11/iphoto-title.gif"><img class="size-medium wp-image-4231" title="Update the image's Title in the Information panel." src="http://pamvanlonden.com/wp-content/uploads/2009/11/iphoto-title-300x145.gif" alt="Update the image's Title in the Information panel." width="300" height="145" /></a><p class="wp-caption-text">Update the image&#39;s Title in the Information panel.</p></div></li>
</ul>
</li>
<li><strong>File-&gt;Export </strong>the image. Set the options like this: Kind: JPG
<ul>
<li>JPEG Quality: Low (smallest size)</li>
</ul>
<ul>
<li>Size: Custom (type a width, in pixels)</li>
</ul>
<ul>
<li>File Name: Use Title</li>
</ul>
<ul>
<li>
<p><div id="attachment_4230" class="wp-caption alignnone" style="width: 267px"><a href="http://pamvanlonden.com/wp-content/uploads/2009/11/iphoto-export.gif"><img class="size-medium wp-image-4230" title="iPhoto Export settings" src="http://pamvanlonden.com/wp-content/uploads/2009/11/iphoto-export-257x300.gif" alt="iPhoto Export settings" width="257" height="300" /></a><p class="wp-caption-text">iPhoto Export settings.</p></div></li>
</ul>
</li>
<li>Confirm the <strong>file size</strong> in the Finder.
<ul>
<li>
<p><div id="attachment_4227" class="wp-caption alignnone" style="width: 310px"><a href="http://pamvanlonden.com/wp-content/uploads/2009/11/iphoto-confirm.gif"><img class="size-medium wp-image-4227" title="Confirm the settings of your new file." src="http://pamvanlonden.com/wp-content/uploads/2009/11/iphoto-confirm-300x188.gif" alt="Confirm the settings of your new file." width="300" height="188" /></a><p class="wp-caption-text">Confirm the settings of your new file.</p></div></li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://pamvanlonden.com/optimize-images-using-iphoto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embedding Hyperlinks in Documents</title>
		<link>http://pamvanlonden.com/embedding-hyperlinks-in-documents/</link>
		<comments>http://pamvanlonden.com/embedding-hyperlinks-in-documents/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 17:19:58 +0000</pubDate>
		<dc:creator>Pam Van Londen</dc:creator>
				<category><![CDATA[Basic computer skills]]></category>
		<category><![CDATA[Production]]></category>

		<guid isPermaLink="false">http://pamvanlonden.com/?p=3195</guid>
		<description><![CDATA[<a href="http://pamvanlonden.com/embedding-hyperlinks-in-documents/"><img align="left" hspace="5" width="150" src="http://oregonstate.edu/instruct/ws320/screenshots/embedlinks.gif" class="alignleft wp-post-image tfe" alt="Example demonstrates selecting the title of an article, choosing the link tool, and pasting in the web address, starting with http://" title="Embedding links in Wordpress" /></a>Word processing applications allow writers to add hyperlinks to sources. Hyperlinks are sometimes automatically created when the writer pastes a web address/URL into the document. While long web addresses may be helpful to some they are generally hard to read and longer than the width of the page. To alleviate these problems, writers embed the [...]]]></description>
			<content:encoded><![CDATA[<p>Word processing applications allow writers to add hyperlinks to sources. Hyperlinks are sometimes automatically created when the writer pastes a web address/URL into the document.</p>
<p>While long web addresses may be helpful to some they are generally hard to read and longer than the width of the page. To alleviate these problems, writers embed the long web address into the label or title of the link.</p>
<p>For example this web address:</p>
<p><span id="sample-permalink">http://pamvanlonden.com/<span id="editable-post-name" title="Click to edit this part of the permalink">embedding-hyperlinks-in-documents </span></span></p>
<p><span><span title="Click to edit this part of the permalink">becomes</span></span></p>
<p><span><span title="Click to edit this part of the permalink"><a title="example of web address embedded in the lable/title" href="http://pamvanlonden.com/embedding-hyperlinks-in-documents">Embedding Hyperlinks In Documents</a></span></span></p>
<h3><span><span title="Click to edit this part of the permalink">Instructions<br />
</span></span></h3>
<p><span><span title="Click to edit this part of the permalink"> </span></span></p>
<div class="wp-caption alignnone" style="width: 499px"><img title="Embedding links in WordPress" src="http://oregonstate.edu/instruct/ws320/screenshots/embedlinks.gif" alt="Example demonstrates selecting the title of an article, choosing the link tool, and pasting in the web address, starting with http://" width="489" height="254" /><p class="wp-caption-text">Example demonstrates selecting the title of an article, choosing the link tool, and pasting in the web address, starting with http://</p></div>
<ol>
<li>Using a browser, locate the article you want to link to.
<ol>
<li>Copy the web address shown in the address bar of the browser.</li>
</ol>
</li>
<li>Inside your document, select the title of an article.
<ol>
<li>Choose the link making tool.</li>
<li>Paste in the web address copied in step 1.1.</li>
<li>Save the document.</li>
</ol>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://pamvanlonden.com/embedding-hyperlinks-in-documents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Table Functions</title>
		<link>http://pamvanlonden.com/table-functions/</link>
		<comments>http://pamvanlonden.com/table-functions/#comments</comments>
		<pubDate>Tue, 19 May 2009 19:45:14 +0000</pubDate>
		<dc:creator>jamesholladay</dc:creator>
				<category><![CDATA[Production]]></category>

		<guid isPermaLink="false">http://pamvanlonden.com/?p=2656</guid>
		<description><![CDATA[<a href="http://pamvanlonden.com/table-functions/"><img align="left" hspace="5" width="150" height="150" src="http://pamvanlonden.com/wp-content/plugins/thumbnail-for-excerpts/tfe_no_thumb.png" class="alignleft wp-post-image tfe" alt="" title="" /></a>Alternating table row colors Alternating row color is common practice on large tables of data. It improves readability. Try these resources to use CSS or JavaScript to enable row coloring. How to Alternate Table Row Colors in CSS and HTML Zebra Tables Zebra Striping: More Data for the Case Alter Table Row Background Colors Using [...]]]></description>
			<content:encoded><![CDATA[<h4>Alternating table row colors</h4>
<p>Alternating row color is common practice on large tables of data. It improves readability. Try these resources to use CSS or JavaScript to enable row coloring.</p>
<ul>
<li><a href="http://www.somacon.com/p338.php" target="_blank">How to Alternate Table Row Colors in CSS and HTML</a></li>
<li><a href="http://www.alistapart.com/articles/zebratables/">Zebra Tables</a>
<ul>
<li><a href="http://www.alistapart.com/articles/zebrastripingmoredataforthecase/">Zebra Striping: More Data for the Case</a></li>
</ul>
</li>
<li><a href="http://www.sitepoint.com/article/background-colors-javascript/">Alter Table Row Background Colors Using JavaScript</a></li>
</ul>
<h4>Making Tables Sortable</h4>
<p>You can use JavaScript to make your tables sortable. When you click on the column headers, the table is sorted based on the values in that column.</p>
<ul>
<li><a href="http://www.kryogenix.org/code/browser/sorttable/">SortTable &#8211; Making tables sortable</a></li>
<li><a href="http://http://www.smashingmagazine.com/2006/12/29/css-based-tables-modern-solutions/" target="_blank">CSS-Based Tables: Modern Solutions</a></li>
<li><a href="http://www.noupe.com/css/21-fresh-ajax-css-tables.html" target="_blank">21+ Fresh Ajax CSS Table</a></li>
</ul>
<h4>Adding a totals row</h4>
<p>If you have a table of numbers, you can add a totals row at the bottom with JavaScript. First set up your table structure with the three sections:</p>
<pre>&lt;table&gt;
  &lt;thead&gt; ...column names... &lt;/thead&gt;
  &lt;tbody&gt; ...cells go here... &lt;/tbody&gt;
  &lt;tfoot&gt; ...totals... &lt;/tfoot&gt;
&lt;table&gt;</pre>
<h4>Dynamic Development with Dreamweaver</h4>
<p>Lynda.com&#8217;s <a href="http://www.lynda.com/home/DisplayCourse.aspx?lpk2=424" target="_blank">Dreamweaver CS3 Dynamic Development</a> with David Gassner</p>
]]></content:encoded>
			<wfw:commentRss>http://pamvanlonden.com/table-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimizing Images in Office Picture Manager</title>
		<link>http://pamvanlonden.com/optimizing-images-in-office-picture-manager/</link>
		<comments>http://pamvanlonden.com/optimizing-images-in-office-picture-manager/#comments</comments>
		<pubDate>Thu, 14 May 2009 20:35:41 +0000</pubDate>
		<dc:creator>jamesholladay</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[Production]]></category>

		<guid isPermaLink="false">http://pamvanlonden.com/?p=2625</guid>
		<description><![CDATA[<a href="http://pamvanlonden.com/optimizing-images-in-office-picture-manager/"><img align="left" hspace="5" width="150" src="http://ws320.files.wordpress.com/2006/08/export.gif" class="alignleft wp-post-image tfe" alt="Cropping an image with Office Picture Manager. © Microsoft 2009" title="Cropping an image with Office Picture Manager. © Microsoft 2009" /></a>Optimize photos with Office Picture Manager In Windows, click Start-&#62;Programs-&#62;Microsoft Office-&#62;Microsoft Office Tools-&#62; Microsoft Office Picture Manager. From the File menu, choose Add Picture Shortcut. From the choose file screen, navigate to the folder where you photos reside. Click Add to add the folder of photos to the Picture Manager. Double-click on the photo you [...]]]></description>
			<content:encoded><![CDATA[<p><strong id="picturemanager">Optimize photos with Office Picture Manager</strong></p>
<ol>
<li>In Windows, click <strong>Start-&gt;Programs-&gt;Microsoft Office-&gt;Microsoft Office Tools-&gt; Microsoft Office Picture Manager.</strong></li>
<li>From the <strong>File</strong> menu, choose <strong>Add Picture Shortcut.</strong>
<ol>
<li>From the choose file screen, navigate to the folder where you photos reside. Click <strong>Add</strong> to add the folder of photos to the Picture Manager.</li>
</ol>
</li>
<li>Double-click on the photo you want to edit.</li>
<li>
<div class="wp-caption alignright" style="width: 216px"><a href="http://ws320.files.wordpress.com/2006/08/export.gif"><img title="Cropping an image with Office Picture Manager. © Microsoft 2009" src="http://ws320.files.wordpress.com/2006/08/export.gif" alt="Cropping an image with Office Picture Manager. © Microsoft 2009" width="206" height="101" /></a><p class="wp-caption-text">Cropping an image with Office Picture Manager. © Microsoft 2009</p></div>
<p>In the <strong>Edit Pictures&#8230; </strong>panel, click the <strong>Crop</strong> tool.</p>
<ol>
<li>Use the picture&#8217;s corners to drag a marquee around the  space you want to keep.</li>
<li>Click <strong>OK</strong> on the <strong>Crop panel </strong>to keep the changes.</li>
</ol>
</li>
<li>Click <strong>Edit Pictures&#8230;</strong> again to view the <strong>Edit Panel</strong>.</li>
<li>Click the <strong>Change Picture Size-&gt;Resize</strong> menu.
<ol>
<li>Note the the picture&#8217;s dimensions; do they fit your content column?
<ol>
<li>Do not leave the photo larger than the area in which it will sit in your web site&#8217;s content column.</li>
</ol>
</li>
<li>Change the <strong>percentage</strong>, type in a <strong>custom width and height</strong>, or choose a <strong>predefined</strong> width and height from the drop down menu.</li>
<li> Click <strong>OK</strong>.</li>
</ol>
</li>
<li>Click <strong>Edit Pictures&#8230;</strong> again to view the <strong>Edit Panel</strong>.</li>
<li>Click the <strong>Change Picture Size-&gt;Compress Pictures</strong> menu.
<ol>
<li>Choose <strong>Compress for Web Pages</strong>.</li>
<li>Click <strong>OK.</strong></li>
</ol>
</li>
<li><strong>File-&gt;Save as&#8230;</strong> the picture with a new name.
<ol>
<li>Do not save over your original high-resolution image. You may need it later.</li>
<li>Save the image with no spaces in the name.</li>
<li>Choose the directory/folder location that is just for the project you are working on.</li>
</ol>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://pamvanlonden.com/optimizing-images-in-office-picture-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimizing Images in Paint</title>
		<link>http://pamvanlonden.com/optimizing-images-in-paint/</link>
		<comments>http://pamvanlonden.com/optimizing-images-in-paint/#comments</comments>
		<pubDate>Thu, 14 May 2009 20:30:53 +0000</pubDate>
		<dc:creator>jamesholladay</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[Production]]></category>

		<guid isPermaLink="false">http://pamvanlonden.com/?p=2619</guid>
		<description><![CDATA[<a href="http://pamvanlonden.com/optimizing-images-in-paint/"><img align="left" hspace="5" width="150" height="150" src="http://pamvanlonden.com/wp-content/plugins/thumbnail-for-excerpts/tfe_no_thumb.png" class="alignleft wp-post-image tfe" alt="" title="" /></a>Optimizing images in Paint In Windows, click Start-&#62;Programs-&#62;Accessories-&#62;Paint. Open an original file graphic file. Usually one of these formats: .gif .jpg, .wmf, or .tif Save As a copy of this file so you do not overwrite the original. Name it something else. Choose Stretch and Skew from the Image menu. Update the height and width [...]]]></description>
			<content:encoded><![CDATA[<h4><a id="paint" name="paint"></a>Optimizing images in Paint</h4>
<ol>
<li>In Windows, click <strong>Start-&gt;Programs-&gt;Accessories-&gt;Paint</strong>.</li>
<li>Open an original file graphic file. Usually one of these formats: .gif .jpg, .wmf, or .tif
<ul>
<li><strong>Save As</strong> a copy of this file so you do not overwrite the original. Name it something else.</li>
</ul>
</li>
<li>Choose <strong>Stretch and Skew</strong> from the Image menu.
<ul>
<li>Update the height and width percentages so the image will fit within the web page column you&#8217;ll be placing it into.</li>
<li>Retain the proportions so the image does not look skewed.</li>
<li> A typical web site is 700 to 900 pixels wide.</li>
</ul>
</li>
<li><strong>Save As</strong> the file with a new name without spaces in one of the following formats:
<ul>
<li>Online photos are usually .jpg.</li>
<li>Flat-color images like logos and clipart are usually .gif and sometimes .png.</li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://pamvanlonden.com/optimizing-images-in-paint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimizing Images in PaintShop Pro</title>
		<link>http://pamvanlonden.com/optimizing-images-in-paintshop-pro/</link>
		<comments>http://pamvanlonden.com/optimizing-images-in-paintshop-pro/#comments</comments>
		<pubDate>Thu, 14 May 2009 20:27:29 +0000</pubDate>
		<dc:creator>jamesholladay</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[Production]]></category>

		<guid isPermaLink="false">http://pamvanlonden.com/?p=2615</guid>
		<description><![CDATA[<a href="http://pamvanlonden.com/optimizing-images-in-paintshop-pro/"><img align="left" hspace="5" width="150" height="150" src="http://pamvanlonden.com/wp-content/plugins/thumbnail-for-excerpts/tfe_no_thumb.png" class="alignleft wp-post-image tfe" alt="" title="" /></a>Optimizing images in PaintShop Pro Open the original file. Usually one of these formats: .gif .jpg, .wmf, or .tif Select the image you want to optimize using the selection tool. If cropping is necessary, from the image menu, choose crop to selection Make any other adjustments to the image such as sharpen, brightness/contrast, etc. Save [...]]]></description>
			<content:encoded><![CDATA[<h4><a id="paintshop" name="paintshop"></a>Optimizing images in PaintShop Pro</h4>
<ol>
<li><strong>Open</strong> the original file. Usually one of these formats: .gif .jpg, .wmf, or .tif</li>
<li><strong>Select</strong> the image you want to optimize using the selection tool.</li>
<li> If cropping is necessary, from the image menu, choose <strong>crop to selection</strong>
<ul>
<li>Make any other adjustments to the image such as sharpen, brightness/contrast, etc.</li>
</ul>
</li>
<li><strong>Save</strong> the new image. Choose JPEG.</li>
<li>Choose <strong>Save As&#8230;</strong> from the File menu. Name the file without spaces.
<ul>
<li>Underscore or hyphen characters are ok.</li>
</ul>
</li>
<li>Choose the <strong>images folder</strong> of your web site.
<ul>
<li>Make an images folder in your site directory if you haven&#8217;t already.</li>
</ul>
</li>
<li>Another option with PaintShop Pro is to let the <strong>Wizard</strong> help.
<ul>
<li>In the bottom right hand corner of the save as dialog box, click on <strong>Options</strong>.</li>
<li>Choose <strong>Run Optimizer</strong>.
<ul>
<li>A wizard dialog box will appear with a walk through of the process of optimizing.</li>
<li>Each change to the image will be shown as a preview with the option to save or discard.</li>
</ul>
</li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://pamvanlonden.com/optimizing-images-in-paintshop-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimizing Images in Photoshop</title>
		<link>http://pamvanlonden.com/optimizing-images-in-photoshop/</link>
		<comments>http://pamvanlonden.com/optimizing-images-in-photoshop/#comments</comments>
		<pubDate>Thu, 14 May 2009 20:25:11 +0000</pubDate>
		<dc:creator>jamesholladay</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[Production]]></category>

		<guid isPermaLink="false">http://pamvanlonden.com/?p=2612</guid>
		<description><![CDATA[<a href="http://pamvanlonden.com/optimizing-images-in-photoshop/"><img align="left" hspace="5" width="150" height="150" src="http://pamvanlonden.com/wp-content/plugins/thumbnail-for-excerpts/tfe_no_thumb.png" class="alignleft wp-post-image tfe" alt="" title="" /></a>Photoshop tutorial for preparing images for online viewing Open the original file Usually one of these formats: .jpg, .gif, .tif .wmf, .eps, .pdf. Choose RGB from the Image Mode menu. Select the area of the image you want to keep using the crop tool. Double-click in the center of the selection to keep the crop. [...]]]></description>
			<content:encoded><![CDATA[<h4>Photoshop tutorial for preparing images for online viewing</h4>
<ol>
<li><strong>Open</strong> the original file
<ul>
<li>Usually one of these formats: .jpg, .gif, .tif .wmf, .eps, .pdf.</li>
<li>Choose <strong>RGB</strong> from the <strong>Image Mode</strong> menu.</li>
</ul>
</li>
<li> <strong>Select</strong> the area of the image you want to keep using the <strong>crop tool. </strong>
<ul>
<li>Double-click in the center of the selection to keep the crop.</li>
</ul>
</li>
<li> Choose <strong>Image Size..</strong>. from the Image menu.
<ul>
<li>Change <strong>Resolution</strong> to 72.</li>
<li> Change <strong>Width</strong> and <strong>Height</strong> to fit the exact area needed on the web page (in pixels).</li>
<li> Click <strong>OK</strong>.</li>
<li>Enhance contrast and color as needed.</li>
</ul>
</li>
<li> Choose <strong>Adjust</strong> from the <strong>Image menu.</strong>
<ul>
<li>To lighten a dark image, choose <strong>Levels</strong> and slide the adjuster left.</li>
<li> <strong>Sharpen</strong> images that are soft or blurry.</li>
</ul>
</li>
<li> Choose <strong>Save for Web</strong> from the File menu.
<ul>
<li> Choose the proper <strong>format</strong>:
<ul>
<li> For images with just a few flat colors:
<ul>
<li><strong>GIF</strong>, Adaptive, 8 to 32 colors, Diffusion Dither 100%</li>
</ul>
</li>
<li>For images which use transparency:
<ul>
<li><strong>PNG-24</strong></li>
</ul>
</li>
<li>For images with many colors and gradations:
<ul>
<li><strong>JPG</strong>, medium (or less), optimized, regressive.</li>
</ul>
</li>
</ul>
</li>
<li>Reduce the <strong>size</strong> if needed.</li>
<li>Optimize file size to no more than <strong>30k.</strong></li>
<li>Click <strong>OK</strong> to save the new file in the images directory of your web site or other folder.
<ul>
<li><strong>Name</strong> the file without spaces.</li>
</ul>
<ul>
<li> Underscore or hyphen characters are ok.</li>
<li>Do NOT save over your original image file; use a new file name.</li>
</ul>
</li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://pamvanlonden.com/optimizing-images-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Style to Navigation Lists</title>
		<link>http://pamvanlonden.com/adding-style-to-navigation-lists/</link>
		<comments>http://pamvanlonden.com/adding-style-to-navigation-lists/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 19:23:16 +0000</pubDate>
		<dc:creator>jamesholladay</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[Production]]></category>

		<guid isPermaLink="false">http://pamvanlonden.com/?p=2526</guid>
		<description><![CDATA[<a href="http://pamvanlonden.com/adding-style-to-navigation-lists/"><img align="left" hspace="5" width="150" height="150" src="http://pamvanlonden.com/wp-content/plugins/thumbnail-for-excerpts/tfe_no_thumb.png" class="alignleft wp-post-image tfe" alt="" title="" /></a>CSS pseudo-classes Notice the menus in this page have a pseudo-class applied to them for the link, visited, hover, and active, colors. For the site with no need for fancy menus, these pseudo-class changes in the style sheet can make tagging your pages fast. Where &#8220;a&#8221; is a link tag, &#8220;a:hover&#8221; is a pseudo class, [...]]]></description>
			<content:encoded><![CDATA[<h3>CSS pseudo-classes</h3>
<p>Notice the menus in this page have a pseudo-class applied to them for the link, visited, hover, and active, colors. For the site with no need for fancy menus, these pseudo-class changes in the style sheet can make tagging your pages fast.</p>
<p>Where &#8220;a&#8221; is a link tag, &#8220;a:hover&#8221; is a pseudo class, which can have a different look for each type of navigation on your page. The footers at the bottom of this page have a &#8220;a.footer:hover&#8221; pseudo class applied, which works because a class called &#8220;.footer&#8221; is defined.</p>
<p>When list items are used to create menus, stylesheet definitions can easily transform them to vertical or horizontal bars with tabs, borders, and rollover effects. Examples:</p>
<p>This code:</p>
<pre>&lt;div&gt;
     &lt;ul class="toolbar"&gt;
       &lt;li&gt;&lt;a href="#" title="one"&gt;one&lt;/a&gt;&lt;/li&gt;

       &lt;li&gt;&lt;a href="#" title="two"&gt;two&lt;/a&gt;&lt;/li&gt;
       &lt;li&gt;&lt;a href="#" title="three"&gt;three&lt;/a&gt;&lt;/li&gt;

     &lt;/ul&gt;
&lt;/div&gt;</pre>
<p>&#8230;and this style sheet:</p>
<pre><code>
ul.toolbar {
  margin:0; padding:0; text-align:left;
}

ul.toolbar li {
  margin:0; padding:0; display:inline; list-style-type:none; font-size:12px;
}

ul.toolbar li a {
  margin:0; padding:10px; text-decoration:none; color:#6600CC;
  border: 1px solid #6600cc;
}

ul.toolbar li a:hover {
  margin:0; padding:10px; text-decoration:underline; color:#fff;
  background-color:#6600CC;
}
</code></pre>
<p>&#8230;give you a menu that looks like this (roll over the menu items to see them change):</p>
<div id="example">
<ul class="toolbar" style="margin:0; padding:0; text-align:left;">
<li style="display:inline; padding:0; margin:0; list-style-type:none; font-size:12px;"><a style="margin:0; padding:10px; text-decoration:none; color:#6600CC; border: 1px solid #6600cc;" title="one" onmouseover="javascript: this.style.color='#fff'; this.style.backgroundColor='#6600CC'; this.style.textDecoration = 'underline';" onmouseout="javascript: this.style.color='#6600CC'; this.style.backgroundColor=''; this.style.textDecoration = 'none';" href="#">one</a></li>
<li style="display:inline; padding:0; margin:0; list-style-type:none; font-size:12px;"><a style="margin:0; padding:10px; text-decoration:none; color:#6600CC; border: 1px solid #6600cc;" title="one" onmouseover="javascript: this.style.color='#fff'; this.style.backgroundColor='#6600CC'; this.style.textDecoration = 'underline';" onmouseout="javascript: this.style.color='#6600CC'; this.style.backgroundColor=''; this.style.textDecoration = 'none';" href="#">two</a></li>
<li style="display:inline; padding:0; margin:0; list-style-type:none; font-size:12px;"><a style="margin:0; padding:10px; text-decoration:none; color:#6600CC; border: 1px solid #6600cc;" title="one" onmouseover="javascript: this.style.color='#fff'; this.style.backgroundColor='#6600CC'; this.style.textDecoration = 'underline';" onmouseout="javascript: this.style.color='#6600CC'; this.style.backgroundColor=''; this.style.textDecoration = 'none';" href="#">three</a></li>
</ul>
</div>
<h4>Additional Resources</h4>
<ul>
<li><a href="http://htmlfixit.com/tutes/css_menus/index4.html" target="_blank">Pure CSS Menus</a> (Horizontal or Vertical Multiple Level Menus)</li>
<li><a href="http://www.alistapart.com/articles/taminglists/" target="_blank">CSS Design: Taming Lists</a> is a wonderful tutorial on making your own CSS lists.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://pamvanlonden.com/adding-style-to-navigation-lists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
