<?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 Design Blog</title>
	<atom:link href="http://www.northstarwebdesign.com/web-design-blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.northstarwebdesign.com/web-design-blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 22 Feb 2010 15:11:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Website Security: Keep Your Passwords Strong!</title>
		<link>http://www.northstarwebdesign.com/web-design-blog/website-security-keep-your-passwords-strong/</link>
		<comments>http://www.northstarwebdesign.com/web-design-blog/website-security-keep-your-passwords-strong/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 20:49:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.northstarwebdesign.com/web-design-blog/?p=66</guid>
		<description><![CDATA[CNN aired a story on keeping your passwords secure.  This is very important to your personal and business security.



Why Are Strong Passwords Important?
Strong Passwords are important to protect your private information. There are many ways that hackers and others try to guess passwords. There are software programs that are used to guess passwords and until [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_73" class="wp-caption aligncenter" style="width: 572px"><img class="size-full wp-image-73 " title="Do you portect your password?" src="http://www.northstarwebdesign.com/web-design-blog/wp-content/uploads/2010/01/4.jpg" alt="Do you portect your password?" width="562" height="257" /><p class="wp-caption-text">Do you portect your password?</p></div>
<p>CNN aired a story on keeping your passwords secure.  This is very important to your personal and business security.<span id="more-66"></span></p>
<div id="content">
<div><object id="ep" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="416" height="374" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#000000" /><param name="src" value="http://i.cdn.turner.com/cnn/.element/apps/cvp/3.0/swf/cnn_416x234_embed.swf?context=embed&amp;videoId=tech/2010/01/21/elam.poor.password.practicies.cnn" /><embed id="ep" type="application/x-shockwave-flash" width="416" height="374" src="http://i.cdn.turner.com/cnn/.element/apps/cvp/3.0/swf/cnn_416x234_embed.swf?context=embed&amp;videoId=tech/2010/01/21/elam.poor.password.practicies.cnn" bgcolor="#000000" wmode="transparent" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<div></div>
<h3 class="bold">Why Are Strong Passwords Important?</h3>
<div>Strong Passwords are important to protect your private information. There are many ways that hackers and others try to guess passwords. There are software programs that are used to guess passwords and until they find the right one. Do what you can to protect yourself and use a Strong Password.</div>
<div></div>
<h3 class="bold">What is a Strong Password?</h3>
<div>A Strong Passwords is a random string of letters, numbers and special characters, usually consisting of 12-14 characters in length. You should NEVER use passwords that are based on your background like birthdays, where you are from, mother or father&#8217;s name, or even any words in the dictionary.</div>
<div></div>
<h3 class="bold">Where Should I Use Strong Password?</h3>
<div>You should use Strong Passwords for any system accessible from the internet that has personal information that you want to protect. Some examples of those programs might be Email Accounts, Website FTP Accounts, User Accounts on E-commerce Websites, Instant Messaging Account, Social Netowrking Website Accounts.</div>
</div>
<div></div>
<div><a title="Random Password Generator" href="http://password.northstarwebdesign.com/" target="_blank">Click here to our Online Password Generator</a></div>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.northstarwebdesign.com/web-design-blog/website-security-keep-your-passwords-strong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful JavaScript: Toggle Div Show/Hide</title>
		<link>http://www.northstarwebdesign.com/web-design-blog/useful-javascript-toggle-div-showhide/</link>
		<comments>http://www.northstarwebdesign.com/web-design-blog/useful-javascript-toggle-div-showhide/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 21:59:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.northstarwebdesign.com/web-design-blog/?p=47</guid>
		<description><![CDATA[I was developing an e-commerce site today and I ran across a pretty light weight piece of JavaScript code to show and hide a DIVs.
Here it is:
&#60;script type="text/javascript"&#62;
&#60;!--
    function toggle_visibility(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
   [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_53" class="wp-caption aligncenter" style="width: 572px"><img class="size-full wp-image-53" title="JavaScript: Show or Hide Elements" src="http://www.northstarwebdesign.com/web-design-blog/wp-content/uploads/2010/01/3.jpg" alt="JavaScript: Show or Hide Elements" width="562" height="257" /><p class="wp-caption-text">JavaScript: Show or Hide Elements</p></div>
<p>I was developing an e-commerce site today and I ran across a pretty light weight piece of JavaScript code to show and hide a DIVs.</p>
<p><span id="more-47"></span>Here it is:</p>
<pre><code>&lt;script type="text/javascript"&gt;
&lt;!--
    function toggle_visibility(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
          e.style.display = 'block';
    }
//--&gt;
&lt;/script&gt;
</code></pre>
<p>Put that between your HEAD tags and call it from your code with &#8220;onClick=&#8221;.</p>
<p>Simple!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.northstarwebdesign.com/web-design-blog/useful-javascript-toggle-div-showhide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress Plugin: Posts By Category Widget</title>
		<link>http://www.northstarwebdesign.com/web-design-blog/wordpress-plugin-posts-by-category-widget-1-0/</link>
		<comments>http://www.northstarwebdesign.com/web-design-blog/wordpress-plugin-posts-by-category-widget-1-0/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 02:21:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.northstarwebdesign.com/web-design-blog/?p=17</guid>
		<description><![CDATA[This simple plugin is a widget that displays a list categories and the posts in those categories separated by category on your widgetized sidebar.

Requires at least: 2.1
Tested up to: 2.9.1
Download

Wordpress Plugin: Posts By Category Widget


Demo

Free Design Resources Chapolito Creative



Installation

Upload `postbycategory.php` to the `/wp-content/plugins/` directory
Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress
Use your &#8216;Presentation&#8217;/'Sidebar Widgets&#8217; [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_40" class="wp-caption aligncenter" style="width: 572px"><img class="size-full wp-image-40 " title="Wordpress Plugin: Posts By Category Widget" src="http://www.northstarwebdesign.com/web-design-blog/wp-content/uploads/2010/01/21.jpg" alt="Wordpress Plugin: Posts By Category Widget" width="562" height="257" /><p class="wp-caption-text">Wordpress Plugin: Posts By Category Widget</p></div>
<p>This simple plugin is a widget that displays a list categories and the posts in those categories separated by category on your widgetized sidebar.</p>
<p><span id="more-17"></span></p>
<p>Requires at least: 2.1<br />
Tested up to: 2.9.1</p>
<p><strong>Download</strong></p>
<ul>
<li><a href="http://www.northstarwebdesign.com/web-design-blog/wp-content/uploads/2010/01/posts-by-category-widget.1.zip">Wordpress Plugin: Posts By Category Widget</a></li>
</ul>
<p><strong><br />
Demo</strong></p>
<ul>
<li><a title="Free Design Resources Chapolito Creative" href="http://chapo.nswebdns.com/free-design-resources" target="_blank">Free Design Resources Chapolito Creative</a><strong><br />
</strong></li>
</ul>
<p><strong><br />
Installation</strong></p>
<ol>
<li>Upload `postbycategory.php` to the `/wp-content/plugins/` directory</li>
<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress</li>
<li>Use your &#8216;Presentation&#8217;/'Sidebar Widgets&#8217; settings to drag and configure</li>
</ol>
<p><strong><br />
Configuration</strong></p>
<ul>
<li>Widget title: the title of the widget</li>
<li>List types: ul for bulleted list, p for paragraph, br for paragraph with line breaks</li>
<li>Post count: Number of random posts you would like to be displayed, must be a number</li>
<li>Category: Only this category will be selected as the source, must be the ID of the Category</li>
</ul>
<p><strong><br />
Change Log</strong></p>
<ul>
<li>1-January-2010: Plugin created</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.northstarwebdesign.com/web-design-blog/wordpress-plugin-posts-by-category-widget-1-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Launched! New NorthstarWebDesign.com</title>
		<link>http://www.northstarwebdesign.com/web-design-blog/new-northstarwebdesign-com-launched/</link>
		<comments>http://www.northstarwebdesign.com/web-design-blog/new-northstarwebdesign-com-launched/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 08:01:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[New Website]]></category>
		<category><![CDATA[Norhtstar Web Design]]></category>
		<category><![CDATA[Northstar]]></category>

		<guid isPermaLink="false">http://www.northstarwebdesign.com/web-design-blog/?p=3</guid>
		<description><![CDATA[We have launched our new redesign of NorthstarWebDesign.com. With so much client work we had no time to re-brand for the last few years and thought it was well over due to be updated to reflect the level and style of our work.

The new website will continue to change over the next few weeks and [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_43" class="wp-caption aligncenter" style="width: 572px"><img class="size-full wp-image-43 " title="Launched! New NorthstarWebDesign.com" src="http://www.northstarwebdesign.com/web-design-blog/wp-content/uploads/2010/01/1.jpg" alt="New NorthstarWebDesign.com Screenshot" width="562" height="257" /><p class="wp-caption-text">Launched! New NorthstarWebDesign.com Screenshot</p></div>
<p><strong>We have launched our new redesign of NorthstarWebDesign.com.</strong> With so much client work we had no time to re-brand for the last few years and thought it was well over due to be updated to reflect the level and style of our work.</p>
<p><span id="more-3"></span></p>
<p>The new website will continue to change over the next few weeks and we will let you know about updates!  Thanks for your interest and continued support!</p>
<p><a href="http://www.northstarwebdesign.com" target="_self">http://www.northstarwebdesign.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.northstarwebdesign.com/web-design-blog/new-northstarwebdesign-com-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
