<?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>Jgm3 Web Design Blog</title>
	<atom:link href="http://www.jgm3webdesign.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jgm3webdesign.com/blog</link>
	<description>Web Design, Development and SEO</description>
	<lastBuildDate>Wed, 09 May 2012 02:53:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>The Best Mac Keyboard Shortcut EVER</title>
		<link>http://www.jgm3webdesign.com/blog/graphics/the-best-mac-keyboard-shortcut-ever/</link>
		<comments>http://www.jgm3webdesign.com/blog/graphics/the-best-mac-keyboard-shortcut-ever/#comments</comments>
		<pubDate>Wed, 09 May 2012 02:53:38 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Graphics]]></category>

		<guid isPermaLink="false">http://www.jgm3webdesign.com/blog/?p=93</guid>
		<description><![CDATA[This is a little off-topic from my usual web dev posts, but this one is worth mentioning I think. If you&#8217;re a frequent screen shot taker like me, you may have tried browser add-ons, stand-alone apps or other ways of making the screen capture process easier. I&#8217;m almost always working in Photoshop so it is [...]]]></description>
			<content:encoded><![CDATA[<p>This is a little off-topic from my usual web dev posts, but this one is worth mentioning I think.<br />
If you&#8217;re a frequent screen shot taker like me, you may have tried browser add-ons, stand-alone apps or other ways of making the screen capture process easier. I&#8217;m almost always working in Photoshop so it is always open and ready to go, and on Windows PC&#8217;s the built-in screen shot method copies the image to your clipboard, from which you can just paste into Photoshop, Word, Email or whatever. When I started using Macs I was a little disappointed with the native screen capture behavior: (cmd + shift + 4) it automatically saves the image to your desktop, which can become a mess of random images. I might be the last guy on earth to find out, but there is a simple way to make a Mac behave like Windows&#8230;
</p>
<h3>PRESS CMD + SHIFT + <i>CONTROL</i> + 4</h3>
<p>That&#8217;s it! Now the image is in your clipboard, ready to paste into whatever program you choose. (cmd + v) Aaaaah no more desktop waste, no more arbitrary &#8216;Picture-1.png&#8217; files&#8230;</p>
<h3>Oh, You Don&#8217;t Like The default .png Image Format? Change it!</h3>
<p>Here&#8217;s how to change the default format that Mac uses for screenshots:</p>
<p>
Open Terminal and type:<br />
<strong>defaults write com.apple.screencapture type [image-type] <br />
killall SystemUIServer</strong><br />
Just replace &#8216;image-type&#8217; with your preferred image format.<br />
Types that work are:</p>
<ul>
<li>bmp</li>
<li>pdf</li>
<li>gif</li>
<li>jpg</li>
<li>png</li>
<li>tiff</li>
</ul>
<p>That&#8217;s all for now&#8230;I found this to be incredibly useful since I take a zillion screen shots every day&#8230;I hope you get some use out of it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jgm3webdesign.com/blog/graphics/the-best-mac-keyboard-shortcut-ever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free HTML and CSS Validation &#8211; Use It!</title>
		<link>http://www.jgm3webdesign.com/blog/html-code/free-html-and-css-validation-use-it/</link>
		<comments>http://www.jgm3webdesign.com/blog/html-code/free-html-and-css-validation-use-it/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 14:30:50 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[HTML Code]]></category>

		<guid isPermaLink="false">http://www.jgm3webdesign.com/blog/?p=84</guid>
		<description><![CDATA[One of the most important aspects to creating a website is making sure the pages can be interpreted by most web browsing software, like Internet Explorer, Firefox, Chrome, Opera, and others. Of course all of these browsers have a number of different versions being used, which creates all sorts of issues for web developers in [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most important aspects to creating a website is making sure the pages can be interpreted by most web browsing software, like Internet Explorer, Firefox, Chrome, Opera, and others. Of course all of these browsers have a number of different versions being used, which creates all sorts of issues for web developers in terms of making their sites compatible with all of the versions. While your site may look OK in IE7, it may fall apart in IE6, or look a little off in Chrome. This is usually due to the way these browsers interpret HTML and CSS code. Even though there have been huge efforts to standardize HTML, (<a href="http://www.w3.org/">W3C</a>) there are still plenty of differences in browsers and the way they display web pages. But, the cause of most web page problems is due to sloppy HTML or CSS code, which is usually easy to troubleshoot.</p>
<h3>Where to Start When Troubleshooting Web Pages</h3>
<p>The simplest way to troubleshoot the code web pages are built on is to make sure it conforms to the W3C standard. While there is some debate about whether having pages &#8216;validate&#8217; or not is really necessary, there is no doubt that the validator can find mistakes in both HTML and CSS, which can save you hours of searching for bone-headed coding errors. The <a href="http://validator.w3.org/">W3C Validator</a> should be your first stop on the road to troubleshooting code. If the site is live on the web, just paste the page link right into the validator, or if it is not live, just copy &amp; paste the generated HTML right into the validator&#8217;s &#8216;Direct Input&#8217; form. It will scrutinize your HTML and find any non-standard conventions, mistakes, or just typos, etc&#8230;</p>
<h3>Use the Custom Options</h3>
<p>A handy feature of the validator is the &#8216;More Options&#8217; section &#8211; this allows you to fine-tune the results for your needs. Checking the &#8216;Show Outline&#8217; box will give you an overview of the page&#8217;s structure to make sure you are using H1, H2, H3 tags correctly. This is a big help for SEO. The &#8216;Show Source&#8217; option allows you to see the errors right in your original code. It&#8217;s like having a paper graded by your elementary school teacher! </p>
<p><a href="http://www.jgm3webdesign.com/blog/wp-content/uploads/2012/03/w3c.jpg"><img src="http://www.jgm3webdesign.com/blog/wp-content/uploads/2012/03/w3c.jpg" alt="More Options in the W3c Validator" title="W3C Validation - more options" width="602" height="220" class="alignnone size-full wp-image-85" /></a></p>
<p>The &#8216;Verbose Output&#8217; option will give more details than you probably wanted, but the suggestions are helpful and you might learn something new.
</p>
<h3>Don&#8217;t Forget the CSS Stylesheets</h3>
<p>The other important part of the validation system allows you to <a href="http://jigsaw.w3.org/css-validator/">check your CSS code</a>. It is very easy to overlook some of the obscure syntax (or even the not so obscure!) when writing stylesheets. Just paste a link, upload a file, or copy the code straight in &#8211; the validator will do the rest and let you know if there are any mistakes. It will also show any warnings for non-standard code.</p>
<p>Just like the HTML validator, the CSS checker gives you options, even allowing you to validate against different versions of CSS &#8211; VERY helpful if you are writing mobile apps or web pages. Clicking the &#8216;More Options&#8217; link will open a little dialog with the following dropdown for &#8216;Profile&#8217;:</p>
<p><a href="http://www.jgm3webdesign.com/blog/wp-content/uploads/2012/03/w3c-css.jpg"><img src="http://www.jgm3webdesign.com/blog/wp-content/uploads/2012/03/w3c-css.jpg" alt="More options for CSS validation" title="w3c-css" width="447" height="191" class="alignnone size-full wp-image-87" /></a></p>
<p>The &#8216;Medium&#8217; selections will even allow you to validate based on the intended viewing medium&#8230;screen, projector, print, braille, handheld, etc&#8230; Pretty cool!</p>
<h3>Save Time and Just Check It!</h3>
<p>It seems like a no-brainer, right? Just run your code through the W3C service and get quick, accurate results, which will save time and money. Best of all, it is free&#8230;and won&#8217;t confiscate your chewing gum.</p>
<p><a href="http://validator.w3.org/">HTML Validation</a></p>
<p><a href="http://jigsaw.w3.org/css-validator/">CSS Validator</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jgm3webdesign.com/blog/html-code/free-html-and-css-validation-use-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 vs. Flash &#8211; Waste of an Argument?</title>
		<link>http://www.jgm3webdesign.com/blog/web-applications/html5-vs-flash-waste-of-an-argument/</link>
		<comments>http://www.jgm3webdesign.com/blog/web-applications/html5-vs-flash-waste-of-an-argument/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 04:14:43 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[interactive apps]]></category>
		<category><![CDATA[multimedia]]></category>

		<guid isPermaLink="false">http://www.jgm3webdesign.com/blog/?p=74</guid>
		<description><![CDATA[As the iPad gained popularity and Steve Job&#8217;s resistance to Flash stayed the course, the issue became &#8220;If not Flash, then what?&#8221; which prompted plenty of heated arguments over the merits of each technology. Sure, Flash requires a separate download, Flash has security issues, on and on&#8230; But is HTML5 robust enough to take on [...]]]></description>
			<content:encoded><![CDATA[<p>As the iPad gained popularity and Steve Job&#8217;s resistance to Flash stayed the course, the issue became &#8220;If not Flash, then what?&#8221; which prompted plenty of heated arguments over the merits of each technology. Sure, Flash requires a separate download, Flash has security issues, on and on&#8230; But is HTML5 robust enough to take on the king of web animation? Not yet.</p>
<h3>Choosing The Best Technology</h3>
<p>Instead of arguing over which technology will ultimately win the war, I&#8217;d rather focus on choosing the right one for a given project. Sure, HTML5 is new and has a long way to go before it catches up with Flash, but the future is promising thanks to aggressive developer efforts. Plus, HTML5 offers some things that Flash does not, and it is an open language &#8211; not a proprietary technology whose future is determined by a big company. So, How do you know which is right for your project?</p>
<h3>HTML5 Compatibility</h3>
<p>The main hurdle we face today with HTML5 is browser compatibility. Firefox, Chrome, Opera, and Safari all have varying levels of support, while IE trails far behind. Add to that the fact that Internet Explorer does not have an aggressive upgrade approach like Firefox, which (constantly) prompts it&#8217;s users to upgrade with each new release. IE is also widely used in the corporate world, where a browser update can mean broken intranets, web applications and other related mayhem, so full compatibility is still a couple of years away at the earliest.</p>
<h3>Breaking Down the Issues</h3>
<p>A recent project inquiry prompted me to face the HTML5/Flash topic head on. If you take some of the big issues with each technology and break them down, you can narrow your choices down quite easily. Does the content need to display on iPad or iPhone? Use HTML5. Is SEO a concern? Use HTML5. Sure, there are some workarounds for SEO in Flash, but let&#8217;s not get too far off. Is the animation and multimedia very complex? Use Flash. Sorry HTML5 aficionados, but HTML5 just isn&#8217;t there yet. Not even close really. No doubt this will change over time, with the HTML5 language gaining traction quickly.</p>
<h3>For Now, Use Either As Needed</h3>
<p>Flash isn&#8217;t going away any time soon, and still reigns supreme for complex animations and interactivity&#8230;just not on iPads or iPhones! There&#8217;s always Apple&#8217;s XCode if you need a rich graphic/multimedia app for those platforms, but for the web we are &#8216;stuck&#8217; with HTML5. I say pick the one that works best for the job and worry about the battle between technologies another day! I&#8217;m off to learn some more HTML5 coding&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jgm3webdesign.com/blog/web-applications/html5-vs-flash-waste-of-an-argument/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Applications: Development Beyond Contact Forms</title>
		<link>http://www.jgm3webdesign.com/blog/web-applications/web-applications-development-beyond-contact-forms/</link>
		<comments>http://www.jgm3webdesign.com/blog/web-applications/web-applications-development-beyond-contact-forms/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 17:15:16 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[corporate intranet]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web application development]]></category>
		<category><![CDATA[web apps]]></category>
		<category><![CDATA[web software]]></category>

		<guid isPermaLink="false">http://www.jgm3webdesign.com/blog/?p=58</guid>
		<description><![CDATA[Whether it&#8217;s a corporate intranet or public-facing website, businesses often under-utilize the power of the web. Once their site is up and running with the bare-necessities, they usually leave it untouched for months or even years, much to the detriment of the site itself. Going beyond the basic &#8216;About Us&#8217; and &#8216;Contact&#8217; pages can make [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin:12px" alt="web apps for business" src="http://www.jgm3webdesign.com/img/port/form2.jpg" title="Business Application" class="alignright" width="200" height="156" /></p>
<p>Whether it&#8217;s a corporate intranet or public-facing website, businesses often under-utilize the power of the web. Once their site is up and running with the bare-necessities, they usually leave it untouched for months or even years, much to the detriment of the site itself. Going beyond the basic &#8216;About Us&#8217; and &#8216;Contact&#8217; pages can make a site more engaging for visitors and more productive for a company and it&#8217;s employees.</p>
<p><img style="margin:12px" alt="web apps for business" src="http://www.jgm3webdesign.com/img/port/form.jpg" title="Web Application Interfaces" class="alignright" width="200" height="230" /></p>
<h3>What is Possible With Web Apps?</h3>
<p>From the most basic contact form to elaborate accounting systems, today&#8217;s web application architectures can support complex programming and database functionality, making modern web applications behave similarly to desktop apps like Word or Excel. Job applications, banking services, appointment setting apps and more can be built to live right on a web server, available to users with no installation or complicated software update processes. Web apps can also be designed for compatibility with any type of computer, be it PC or Mac. Why limit your users based on the hardware they choose?</p>
<h3>Adapting Desktop Applications to Web Apps</h3>
<p>On a past project, I was tasked with translating an existing support desk ticket system to a web-based application. The existing program needed to be installed on each user&#8217;s PC, requiring valuable support time from the help desk, as well as compatibility troubleshooting for each new operating system change that occurred, making the desktop app more trouble than it was worth. Moving to a web-based system meant that software updates could be done once on the server and would be instantly &#8216;rolled out&#8217; to all users. In addition, users could access the program from any computer with internet access, whether it was from home via a VPN (virtual private network) or via the corporate office computers. </p>
<h3>Security For Web Apps</h3>
<p>A well-designed application can utilize the same security technology as your bank or a government website, with the proper security measures built-in to ensure the data is safe from hackers or other prying eyes. Secure logins and encrypted data transfers make sure the database and user info are protected from attacks, while giving full access to the app&#8217;s users where needed. Modern browsers support these technologies better than ever before, making them a solid platform for secure web-based business software.</p>
<h3>Informing Business Owners of the Options Available</h3>
<p>As mentioned before, most sites stop at the basic static pages, never taking advantage of the myriad web application possibilities available. A web project manager or developer should help the company identify processes that could benefit from a software solution. Many day-to-day functions could be streamlined to save hundreds or thousands of man-hours, thus saving the company money. Private intranet sites and internal applications are more and more common these days for large companies, but can also be utilized by small businesses trying to cut down on costs by reducing tedious jobs or recurring tasks that would be well-suited to a web app. Some Examples are: appointment setting programs, calendar apps, order taking apps, custom contact or information request forms, accounting software, or employee scheduling apps. Mobile web applications are another entirely new frontier, offering portable functionality with the same access as desktop apps with a simple, mobile-friendly interface. The possibilities are truly endless, and in many cases the app itself can help to generate new business, by engaging the customer in new ways.</p>
<h3>Leverage the Web&#8217;s Power and Reap the Rewards</h3>
<p>On your next web project, think beyond the same old static content and find some ways to incorporate web software solutions that help increase your productivity. Chances are there are existing business processes that would be well-suited to a browser-based program, or new creative solutions that could be introduced that will enhance the business and save valuable employee time.</p>
<p><a href="http://www.jgm3webdesign.com/contact_jgm3.php">Contact Jgm3 today for a free web app consultation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jgm3webdesign.com/blog/web-applications/web-applications-development-beyond-contact-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SOPA Makes Red Very Sad</title>
		<link>http://www.jgm3webdesign.com/blog/internet/sopa-makes-red-very-sad/</link>
		<comments>http://www.jgm3webdesign.com/blog/internet/sopa-makes-red-very-sad/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 15:54:35 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[internet censorship]]></category>
		<category><![CDATA[pipa]]></category>
		<category><![CDATA[sopa]]></category>
		<category><![CDATA[web politics]]></category>

		<guid isPermaLink="false">http://www.jgm3webdesign.com/blog/?p=52</guid>
		<description><![CDATA[In a (misguided) attempt to thwart online piracy, our friends on the Hill have come up with a frighteningly overreaching bill that will give content providers and their legal eagles far too much control over what goes on the web. I don&#8217;t need to explain the whole bill &#8211; you can read all about it [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin:12px;" src="http://www.jgm3webdesign.com/blog/wp-content/uploads/2012/01/sad-red.jpg" alt="Internet Marketing Director Red - Very sad about SOPA/PIPA" title="SOPA makes my dog sad" width="302" height="357" class="alignright size-full wp-image-53" /></p>
<p>In a (misguided) attempt to thwart online piracy, our friends on the Hill have come up with a frighteningly overreaching bill that will give content providers and their legal eagles far too much control over what goes on the web. I don&#8217;t need to explain the whole bill &#8211; you can <a href="http://en.wikipedia.org/wiki/Stop_Online_Piracy_Act">read all about it here</a>. I just want to pile on the opposition to it.</p>
<h3>SOPA + PIPA = Slippery Slope?</h3>
<p>If this bill passes, the legal fiasco(s) that will ensue will be such a mess that the internet as we know it will slide into the abyss of censorship, financial warfare and corporate control. In other words, once things start sliding down the slope, the mess will be far-reaching and can&#8217;t help but hurt us in ways that don&#8217;t really help the situation they are &#8216;trying&#8217; to fix (piracy/intellectual property rights,etc&#8230;)</p>
<h3>They Just Haven&#8217;t Caught Up Yet</h3>
<p>Even With all of the intellectual firepower at hand on this globe of ours, the entertainment industry just has not been able to figure out a way to protect their goodies, which has created a divide in the world of finance and the world of entertainment. There&#8217;s an &#8216;old guard&#8217; and a new one, which boils down to one side has embraced the new economy and &#8216;gets it&#8217;, while the other side is so bogged down in the old ways and their corporate minutia, they can&#8217;t get a foothold on this new system. So what do they do? Of course, create ridiculous legal spiderwebs to catch and sue the violators&#8230;which will affect us all in the end.</p>
<p>Don&#8217;t support it, <a href="https://writerep.house.gov/writerep/welcome.shtml">tell your rep you hate SOPA/PIPA</a> and tell your friends who don&#8217;t know about it. Awareness is an amazing tool when used correctly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jgm3webdesign.com/blog/internet/sopa-makes-red-very-sad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing Good Keywords For Your Site</title>
		<link>http://www.jgm3webdesign.com/blog/seo/choosing-good-keywords-for-your-site/</link>
		<comments>http://www.jgm3webdesign.com/blog/seo/choosing-good-keywords-for-your-site/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 16:37:00 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[google rank]]></category>
		<category><![CDATA[search engine rank]]></category>
		<category><![CDATA[sem]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[web marketing]]></category>
		<category><![CDATA[web roi]]></category>

		<guid isPermaLink="false">http://www.jgm3webdesign.com/blog/?p=45</guid>
		<description><![CDATA[Gone are the days of randomly guessing what terms people will search for on the web. These days competition is heavy to get on top of the search engines, and the only way to compete is to know your stuff. Instead of picking terms out of thin air and peppering your site with useless phrases [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin:12px;" src="http://www.jgm3webdesign.com/blog/wp-content/uploads/2012/01/keyword-choices1.jpg" alt="selecting good keywords" title="keyword-choices" width="275" height="367" class="alignright size-full wp-image-50" /></p>
<p>Gone are the days of randomly guessing what terms people will search for on the web. These days competition is heavy to get on top of the search engines, and the only way to compete is to know your stuff. Instead of picking terms out of thin air and peppering your site with useless phrases you &#8216;think&#8217; will get you found, there are some much more strategic ways to approach the issue.</p>
<h3>Don&#8217;t Guess Which Phrases Will Rank Highly</h3>
<p>Let&#8217;s say your business is Auto Glass &amp; Windshield Repair. Certainly you can fill your site with the terms related to &#8216;Auto Glass&#8217; and &#8216;Windshield Repair&#8217;, which are obvious terms, and also high-competition terms. Some people might just search for &#8216;chip repair&#8217; or &#8216;cracked windshield repair&#8217;, along with the city or county name where they are located. Google has become pretty specific in how it handles phrases and the order of words within them, to the point where getting the right combination of terms can be the difference between page 1 and page 2 of the search results.</p>
<h3>Keyword Tools Focus Your Efforts</h3>
<p>There are tools we use to discover the appropriate terms and variations on them which will bring the most traffic. Google even provides it&#8217;s own <a href="http://www.googlekeywordtool.com/" title="keyword tool" target="_blank">keyword tool</a> which takes some learning to really use properly, but provides valuable insight into what phrases people are really using. The info can be interpreted in many ways, so it is definitely a good idea to have an expert assist or take the time to study the ins &amp; outs of the system. <a href="http://www.jgm3webdesign.com/contact_jgm3.php">(I can recommend just such an expert!)</a></p>
<h3>SEO Campaigns Take Time</h3>
<p>Business owners want to see results fast &#8211; any business expense should have tangible ROI that returns real results in a reasonable amount of time. Instead of randomly choosing search terms and hoping your site will jump to the top of Google, it pays (pun intended) to learn the ropes or hire an expert to do the legwork when it comes to keyword research and implementation. Even with the right keywords, there are other factors to consider, such as avoiding &#8216;spammy&#8217; usage of terms, &#8216;keyword stuffing&#8217; which flags Google that you&#8217;re gaming the system, etc&#8230; Many neophite SEO consultants will jump in a little too heavy, going overboard with adding keywords in ways that can actually hurt the site&#8217;s ranking. Dirty SEO tricks are no longer tolerated by search engines&#8230;they are getting too smart to be fooled easily!</p>
<h3>Keep things Fresh</h3>
<p>Once you have established good SEO habits and have some targeted phrases, be sure to keep them updated &#8211; don&#8217;t think you can &#8216;set and forget&#8217; with web content. The search engines are smart enough to know when your content has changed, and they give more importance to new content in most cases. There is plenty of voodoo involved as to how this really works, and is a subject for another article&#8230;but for now, just remember to keep things from getting stale &#8211; the competition may just be a little bit fresher!</p>
<p><a href="http://www.jgm3webdesign.com/contact_jgm3.php">Contact Jgm3 today for a free SEO consultation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jgm3webdesign.com/blog/seo/choosing-good-keywords-for-your-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sketchy Ideas Are Good</title>
		<link>http://www.jgm3webdesign.com/blog/graphics/sketchy-ideas-are-good/</link>
		<comments>http://www.jgm3webdesign.com/blog/graphics/sketchy-ideas-are-good/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 16:06:19 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[freelance web design]]></category>
		<category><![CDATA[web graphics]]></category>
		<category><![CDATA[web project management]]></category>

		<guid isPermaLink="false">http://www.jgm3webdesign.com/blog/?p=38</guid>
		<description><![CDATA[Remember when you were a kid and you drew all over everything? Walls, furniture, people, pets&#8230;Well, just because it isn’t cool to cover the walls in permanent marker anymore doesn’t mean you should abandon your art career altogether. Even if nobody ever sees your ‘masterpieces’, the practice can keep your eyes and design skills sharp, [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.jgm3webdesign.com/blog/wp-content/uploads/2011/12/sketchbook.jpg" alt="Sketchbooks make better thinkers" title="sketchbook" width="250" height="344" style="margin:12px;" class="alignright size-full wp-image-39" /><br />
Remember when you were a kid and you drew all over everything? Walls, furniture, people, pets&#8230;Well, just because it isn’t cool to cover the walls in permanent marker anymore doesn’t mean you should abandon your art career altogether. Even if nobody ever sees your ‘masterpieces’, the practice can keep your eyes and design skills sharp, as well as record those bright ideas when they hit.</p>
<h3>Have Sketchbook, Will Travel</h3>
<p>Buy yourself a sketchpad and a couple of pencils or pens&#8230;whatever is your medium of choice, and keep them in the car or next to your desk &#8211; and get in the habit of using them! Sure, there are millions of apps and note-taking devices for your phone, laptop, iPad, etc&#8230;but there is something visceral about the act of scraping a pen across paper that makes it more fun. Maybe I’m just old-fashioned, but for me, writing and drawing will never be replaced by voice recorders or tablets and other digital doodling devices. They even have pens that record audio&#8230;talk about redundant technology! The simple sketchbook will go anywhere, travel well and doesn’t require batteries. You don’t even have to turn it off on a plane.</p>
<h3>What if I Suck At Drawing?</h3>
<p>Most kids love to draw&mdash;that is why crayons are marketed to them&mdash;they have no inhibitions about drawing or painting and just dive into it, without fear. Adults can learn a lot from this, as we tend to ‘grow out’ of art, which is a shame. There are hardly any efforts made to market the practice of art to adults, and when asked to draw something most adults just shy away “Oh I can’t draw at all!” There are plenty of <a href="http://www.amazon.com/How-Draw-What-Practical-Books/dp/0823023753">great drawing books</a> on the subject, which are targeted specifically at people who left drawing behind in their younger days, or stopped at lollipop trees and stick figures.</p>
<h3>All in the Eyes</h3>
<p>If there is any one ‘secret’ to sketching or drawing well, it’s the fact that the skill is more about ‘seeing’, not penmanship. It has been said that if you can write your name neatly, you probably have the technical skill to draw. It has to do with how you observe shapes and spatial relationships, as well as light and dark values. Other than that, it’s practice. Learning ‘How to see’ is the real secret. And it won’t just help your sketching ability&mdash;it can make you a better conceptual thinker, designer, and generally more creative. How? Because the act of drawing engages the senses in a way that most people don’t experience in day-to-day life. It forces us to think in dimensional, spatial, aesthetic ways&mdash;concepts that have been shelved for most adults, but usually nurtured in children. </p>
<h3>Just Let It Fly</h3>
<p>So grab a sketchbook and a scribbling device and see what happens! Most importantly, don’t be self-conscious or timid about what you create &#8211; just let it fly and have fun with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jgm3webdesign.com/blog/graphics/sketchy-ideas-are-good/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Small Business Website Design and Credibility</title>
		<link>http://www.jgm3webdesign.com/blog/web-design/small-business-website-design-and-credibility/</link>
		<comments>http://www.jgm3webdesign.com/blog/web-design/small-business-website-design-and-credibility/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 02:00:33 +0000</pubDate>
		<dc:creator>Jgm3</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[project planning]]></category>
		<category><![CDATA[small business websites]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web projects]]></category>

		<guid isPermaLink="false">http://www.jgm3webdesign.com/blog/?p=33</guid>
		<description><![CDATA[In today&#39;s increasingly computer-centric world, many businesses are discovered online first, brick and mortar second. The customer&#39;s first impression often comes from how nice a website looks, not how the actual store looks. While this is certainly a new frontier for most business owners, it should definitely be something that is embraced, not ignored. The [...]]]></description>
			<content:encoded><![CDATA[<p>In today&#39;s increasingly computer-centric world, many businesses are discovered online first, brick and mortar second. The customer&#39;s first impression often comes from how nice a website looks, not how the actual store looks. While this is certainly a new frontier for most business owners, it should definitely be something that is embraced, not ignored.</p>
<h2>The Online Gauge of Trust </h2>
<p>
<img src="http://www.jgm3webdesign.com/blog/wp-content/uploads/2011/10/website-trust-gauge.jpg" alt="" title="website-trust-gauge" width="116" height="116" class="alignright size-full wp-image-40" /><br />
When a potential customer first visits a site, they start with a clean slate of trust&mdash;a clear, unclouded opinion of this world they have just entered. As they take in the information and graphic treatments that make up a site, they judge the site&#39;s credibility by the presentation of info, imagery, and general usability. If the site is for a photography business and the photo work is second rate, the visitor is immediately going to lose some of that trust. Likewise if the site is for a copywriter and there are misspellings or bad grammar on the site, there is an instant drop in that gauge of credibility. And all it takes is one tiny slip!</p>
<h3>Watch Those Pixels!</h3>
<p>The human eye has an incredible ability to detect spatial alignment. Even the tiniest inconsistencies in typography, graphic elements, or form elements will be noticed by the observant web surfer. Setting proper CSS margins, padding, floats, and line heights are crucial for a designer, not just because it &#8216;looks pretty&#8217;, but because when things are <i>not</i> well styled, the business takes the hit, not the designer.</p>
<p>As I mentioned, a site visitor shows up with an unbiased opinion of the business behind the site&mdash;after a bit of clicking around, how much of that opinion is still positive? How many times did they think &#8220;Hmmm&#8230;that looks a little <i>Off</i>&#8230;&#8221;<br />
Each little moment of &#8220;hmmmm&#8230;&#8221; is a ding for the business.</p>
<p>
<img src="http://www.jgm3webdesign.com/blog/wp-content/uploads/2011/10/signup1-300x95.jpg" alt="form field and button" title="form button alignment" width="300" height="95" class="alignright size-medium wp-image-37" />What&#39;s wrong with this form submit button? Even a quick glance and you can see that the &#39;Password&#39; label is too high in relation to the field, the &#39;sign up&#39; text is too far down within the button&#39;s border, and the button itself is not lined up with the password field above. In other words, a big mess! And that is only subtle alignment issues. Poor grammar and misspelled words look even worse, lowering that gauge quickly.</p>
<p>Spending the extra time it takes to polish up every piece of type, layout, or imagery on a website can mean the difference between new customers and lost ones. Don&#39;t let tiny pixels make a giant dent in your bottom line!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jgm3webdesign.com/blog/web-design/small-business-website-design-and-credibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Project Planning &#8211; Just Do It</title>
		<link>http://www.jgm3webdesign.com/blog/web-design/web-project-planning-just-do-it/</link>
		<comments>http://www.jgm3webdesign.com/blog/web-design/web-project-planning-just-do-it/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 17:34:16 +0000</pubDate>
		<dc:creator>Jgm3</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.jgm3webdesign.com/blog/?p=25</guid>
		<description><![CDATA[No matter what size a website is, the future success of the site is dependent on how well the site delivers content to visitors, and how pleasant that experience is. A well-planned site is easy to navigate and organized so the user doesn&#39;t get confused or have to think (much) to find what they need. [...]]]></description>
			<content:encoded><![CDATA[<p>No matter what size a website is, the future success of the site is dependent on how well the site delivers content to visitors, and how pleasant that experience is. A well-planned site is easy to navigate and organized so the user doesn&#39;t get confused or have to think (much) to find what they need. A solid project plan is essential for bringing a great site to life.</p>
<h3>What is Involved in a Website Plan?</h3>
<p>Unless you routinely manage projects and have that experience under your belt, planning even a small project can be a dreaded exercise. There are two sides to this:</p>
<ol>
<li>1. The Client </li>
<li>2. The Company or Individual Building the Site</li>
</ol>
<p>In many cases, the client is a small business owner with limited time for planning web projects, since they are obviously running a business. That is why they hired a developer, right? They want to be led through the process by an expert with experience. The developer&#39;s job is to make sure things are planned and executed correctly and delivered on time.</p>
<h3>The Basic Site Plan</h3>
<ul>
<li>Set Goals &#8211; What should the site offer?</li>
<li>Set Timelines &#8211; When should things get done?</li>
<li>Assign Responsibilities &#8211; Who needs to deliver what and when?</li>
<li>Test &amp; Launch the Site</li>
</ul>
<h4>Set Goals</h4>
<p>At the onset of a web project, the first goal is usually very simple &#8211; the client needs a web presence, or needs to revise their current one. Beyond that, there are many specific issues that need to be decided as far as site design, layout, navigation, technology utilized, etc&#8230; All of these decisions make up the site&#39;s overall focus. The more specific you can get here the better, since a loose, unfocused set of goals can lead to never-ending time lines, indecision, and ultimately a weak end-result.</p>
<p>Some simple ways to set goals can vary from drawing out a basic plan on paper to using some of the free online tools like <a href="http://www.mockflow.com/">Mockflow</a> or <a href="http://balsamiq.com/products/mockups">Balsamiq</a>, to just using your favorite software like Photoshop, Illustrator, or Visio. Once you have a visual reference for how the site is structured, you can start to see how things are organized and if there are potential problems with navigation or future expansion. Once you have an overview of what the site is supposed to do and how you want to lay things out, you need some deadlines for getting things done.</p>
<h3>Set Time Lines &#8211; Solid, But Flexible</h3>
<p>The hardest aspect of many site projects is setting a solid time frame to complete and launch the site. The client has a business to run and is often unavailable when decisions or input are needed, and technical issues can arise that hold up the developer from completing tasks on time. Folks with experience planning projects know that a too-rigid time line is a bad idea waiting to happen, and factoring in some cushion is a skill learned only from that experience.</p>
<p>A good rule of thumb is to add 20% to a project&#39;s deadline, assuming that things will go <i>well</i>. It takes a really honest look at the possible delays and complications, which go with every project. Just make sure there is enough elasticity in the plan to compensate for these delays.</p>
<h3>Responsibilities &#8211; Define Who Delivers What</h3>
<p>This one should be fairly easy to define: Who is responsible for providing each piece of content or info? Start with a list of deliverables and assign them to the appropriate folks. Sure, it can get more complicated than that, but even for small projects this can eliminate confusion and unintended delays because someone was waiting for something you didn&#39;t know you were delivering! In the planning stages, have each party sign off on the list to make sure there are no issues that may hold the process up.</p>
<h3>Testing &#8211; Websites Just Work, Right? Right&#8230;</h3>
<p>Oh, how we wish that were true! Testing and fixing errors can actually be the longest phase of a web project. Things like browser compatibility, coding errors, typos, client change requests, and poorly planned web applications will all factor into the testing and quality assurance phase. This can be tough when the client and developer both have small teams and little time to devote to testing, but needs to be a priority with a dedicated time line. If you see a project plan with the building phase quickly followed by the launch, with no testing factored in, chances are someone forgot this most important of all pieces.</p>
<p>Ideally, testing a piece of software or a website should be done by a team of professional testers, who have a list of activities to carry out, while being observed by a user testing expert. This obviously is not always possible, or within budget. So, you often have to get creative with your test methods. You might recruit your relatives&#8230;your kids, your friends or co-workers to try out the app or site, giving you feedback where needed. Sometimes an outside party can bring a perspective you would not have thought about, spawning new ways to solve a tricky problem or finding issues that an expert user would not find.</p>
<p>This would be a good time to point out that <strong>expert users do not make great testers</strong>. Why? Because they know how to get around better than novice users&#8230;they are familiar with all of the common conventions with apps and websites, and don&#39;t get tripped up as easily as a novice user. The site or application needs to be as user-friendly as possible, with the novice user being the target user. You <i>want</i> people to say &#39;It&#39;s so simple even a _______ can use it!&#39;. A good plan for testing and user acceptance will go a long way towards earning you that &#39;accolade&#39;.</p>
<h3>Embrace the Plan, Check Back Often</h3>
<p>All of this planning and effort can get you started on the right track, but it is also important to refer back to the plan and make sure things are staying on track and the goals are being met. Don&#39;t be afraid to revise the plan as well, since unintended circumstances can always crop up, requiring a change of thought, new addition, or modification. Maybe the client decides to scrap the contact form and just wants an email address, or perhaps they want to add a <a href="http://www.jgm3webdesign.com/blog/web-design/how-to-make-your-website-mobile-friendly/">mobile formatted site</a>, or change the look &amp; feel. Get used to incorporating any changes into the original plan and adjusting time lines as needed&#8230;the fewer surprises the better!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jgm3webdesign.com/blog/web-design/web-project-planning-just-do-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modern Web Design: More than Pretty Pictures</title>
		<link>http://www.jgm3webdesign.com/blog/web-design/modern-web-design-more-than-pretty-pictures/</link>
		<comments>http://www.jgm3webdesign.com/blog/web-design/modern-web-design-more-than-pretty-pictures/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 17:19:02 +0000</pubDate>
		<dc:creator>Jgm3</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.jgm3webdesign.com/blog/?p=13</guid>
		<description><![CDATA[Web designers have always fallen into two main categories: Visual Designers and Coders. The visual designer dreams up magnificent imagery and hip graphics to represent their client&#39;s brand, often at the expense of efficiency, cross-browser support, and maintainability. The coder deals with the arcane back-end technologies with acronyms like HTML, CSS, PHP and ASP.NET. The [...]]]></description>
			<content:encoded><![CDATA[<p>
<img src="http://jgm3webdesign.com/img/dzn/the-designer.jpg" style="float:right;margin:10px;" width="300" height="310" alt="The designer ponders silly details" /><br />
Web designers have always fallen into two main categories: Visual Designers and Coders. The visual designer dreams up magnificent imagery and hip graphics to represent their client&#39;s brand, often at the expense of efficiency, cross-browser support, and maintainability. The coder deals with the arcane back-end technologies with acronyms like HTML, CSS, PHP and ASP.NET. The coder will often be at odds with the visual designer&#39;s goals, explaining that elaborate graphics or animated thingys just aren&#39;t practical, for various cryptic reasons. The result is usually some form of compromise that works, but doesn&#39;t necessarily hit the target square on.</p>
<h3>The New Web Designer</h3>
<p>I like to think of the term &#39;Designer&#39; as more than just a graphic designer. The design of a site encompasses all of the content, not just imagery. A well-<i>designed</i> site has a clean layout, organized content, good font choice, and is easily maintained. Thus, a designer needs to also be a planner, organizer, and (how terrible!) have an understanding of the code.</p>
<h3>Focus on Site Content</h3>
<p>
Modern web design has come a long way from 2 minute Flash intros, scrolling banner text, iFrames and other hideous design trends that hinder site performance. Today&#39;s designs focus on user experience, proper information display, navigational ease, and cross-browser compatibility. With the mobile device revolution and popularity of tablets like Xoom and iPad, sites are focusing more on simplicity and speed, with designs that let the content shine instead of blinding the user with gaudy graphic novelty.
</p>
<h3>How to Make Your Web Design Better</h3>
<p>Instead of starting with the colors and size of the logo, a site should be planned first around the presentation of content and ease of use. Map out the placement of content on a high level &#8211; Where does the contact info go? Where does the news section go? Think about your visitors &#8211; what are they looking for? Narrow that list down to just a few things&#8230;take the top 3 things a user will want to find and make sure those things are dead-simple to locate. Even a split-second of indecision can mean a lost visit. Think hard before implementing that fancy navigation system &#8211; is it adding to the user experience or does it just look cool?</p>
<p>Once the few primary content items have a home, you can determine how the rest of the site will flow. If you have a blog or news section, make sure the older articles are search-able and categorized. Just because it isn&#39;t the latest article doesn&#39;t mean someone out there has seen it. While you are at it, make sure the content is easily index-able by search engines. Those old articles can still help your Google rank. Most CMS systems have built-in search functions that allow users to find articles&#8230;yet another reason to use them.</p>
<h3>Good Designers Always Think Ahead</h3>
<p>It is important to make sure your site has room to grow. If your site continuously adds content, (which it should!) where will it go? Is there room to expand or is the layout so fixed graphically that any changes are a massive headache and require a committee to solve? Taking on the mentality that EVERYTHING on the site may expand is a good strategy. Most modern design techniques are rooted in the concepts of fluidity, adaptation, flexibility, and simplicity. Your site should deliver it&#39;s content to the user in a usable way no matter what browser or device they are using.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jgm3webdesign.com/blog/web-design/modern-web-design-more-than-pretty-pictures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

