<?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>Sprise Media &#124; Freelance Web Design &#38; Development in Scottsdale, Arizona &#187; Blog</title>
	<atom:link href="http://www.sprisemedia.com/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sprisemedia.com</link>
	<description></description>
	<lastBuildDate>Fri, 01 Nov 2013 16:41:49 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Restore Email from a Cpanel Backup &#8211; for Thunderbird</title>
		<link>http://www.sprisemedia.com/blog/restore-email-from-a-cpanel-backup-for-thunderbird/</link>
		<comments>http://www.sprisemedia.com/blog/restore-email-from-a-cpanel-backup-for-thunderbird/#comments</comments>
		<pubDate>Fri, 06 Sep 2013 01:16:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.sprisemedia.com/?p=197</guid>
		<description><![CDATA[If you&#8217;ve moved hosts and saved a full Cpanel backup, here&#8217;s a way to recover your old emails. I&#8217;m using the Thunderbird mail client on Ubuntu today and have extracted my Cpanel backup to ~/Downloads, and this may require some command line use to accomplish. First navigate to the email directory of the backup for [...]]]></description>
				<content:encoded><![CDATA[<p>If you&#8217;ve moved hosts and saved a <strong>full Cpanel backup</strong>, here&#8217;s a way to recover your old emails.</p>
<p>I&#8217;m using the Thunderbird mail client on Ubuntu today and have extracted my Cpanel backup to ~/Downloads, and this may require some command line use to accomplish.</p>
<p>First navigate to the email directory of the backup for the user mailbox you&#8217;d like to restore. In my case it is <strong>~/Downloads/backup_folder_name/homedir/mail/.noreply@sprisemedia.com</strong>; make sure you have hidden files visible and be looking for the email address of your choice. There was no new email on this account so the command to run is this:</p>
<pre>cd ~/Downloads/backup_folder_name/homedir/mail/.noreply@sprisemedia.com/cur

</pre>
<p>Take a look at the filenames, each file is an email and will need to have the &#8220;.eml&#8221; extension. If your files do not have the .eml extension (such as in the below image), you will need to add it.<img class="aligncenter size-full wp-image-201" alt="spr" src="http://www.sprisemedia.com/wordpress/wp-content/uploads/2013/09/spr.gif" width="600" height="208" /></p>
<p>At this point Ubuntu does realize these are email files but Thunderbird does not handle them properly. So let us run this command and add &#8220;.eml&#8221; to all of these filenames:</p>
<pre>find . -type f -exec mv '{}' '{}'.eml \;

</pre>
<p>Now they should all have the proper extension. To get them all imported you will want to install <a href="https://addons.mozilla.org/en-us/thunderbird/addon/importexporttools/" target="_blank">Thunderbird Import Export Tools</a>, simply download the file and follow the simple instructions on the prompt.</p>
<p>The last step is to now go to <strong>Tools &gt; ImportExportTools &gt; Import All Messages From A Directory</strong> and point it towards your dir full of .eml files. Hooray!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sprisemedia.com/blog/restore-email-from-a-cpanel-backup-for-thunderbird/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programmatically Set English as Default Language for Nodes in Drupal 7</title>
		<link>http://www.sprisemedia.com/blog/programmatically-set-english-as-default-language-for-nodes-in-drupal-7/</link>
		<comments>http://www.sprisemedia.com/blog/programmatically-set-english-as-default-language-for-nodes-in-drupal-7/#comments</comments>
		<pubDate>Fri, 28 Jun 2013 19:05:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[multilingual]]></category>

		<guid isPermaLink="false">http://www.sprisemedia.com/?p=194</guid>
		<description><![CDATA[Add this code to your template.php to select English as the default langauge for node editing.]]></description>
				<content:encoded><![CDATA[<p>If you have a multilingual Drupal 7 site and are looking for a way to make the default language choice English (or other) rather than Language Neutral, you can use this small snippet to make that happen:<br />
<code> </code></p>
<pre>function mytheme_form_alter(&amp;$form, &amp;$form_state, $form_id) {    
    // Set default language to English 
    if(strrpos($form_id,'_node_form')) {
        if(isset($form['language']) &amp;&amp; $form['language']['#value'] == 'und') {
            $script = "&lt;script type=\"text/javascript\"&gt;
            var l = document.getElementById('edit-language');
            if(l.value == 'und') l.value = 'en';
            &lt;/script&gt;";
            
            $form['some_text'] = array( '#markup' =&gt; $script );
        }
    } 
}</pre>
<p>Simply add the above to your template.php (and replace mytheme with your theme name).</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sprisemedia.com/blog/programmatically-set-english-as-default-language-for-nodes-in-drupal-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Taking Your Web Design to Print: Color Hints</title>
		<link>http://www.sprisemedia.com/blog/taking-your-web-design-to-print-color-hints/</link>
		<comments>http://www.sprisemedia.com/blog/taking-your-web-design-to-print-color-hints/#comments</comments>
		<pubDate>Sat, 11 May 2013 16:47:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[consistency]]></category>
		<category><![CDATA[gamut]]></category>
		<category><![CDATA[print design]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.sprisemedia.com/?p=189</guid>
		<description><![CDATA[If you have a website and need to develop printed collateral to go with it, here are a few notes on the process that will hopefully save you time and money.]]></description>
				<content:encoded><![CDATA[<p>If you have a website and need to develop printed collateral to go with it, here are a few notes on the process that will hopefully save you time and money.</p>
<h2>Color Gamut of Print vs Screen</h2>
<p>While the color output of your website ultimately depends on a user&#8217;s monitor/device, generally it will be quite good and in the &#8220;millions of colors&#8221; capacity. <strong>Gamut</strong> is the technical term that describes the range of color produced as well as what colors are rendered well if at all. The gamut of the average screen is pretty good, and being that monitors are light emitting devices, they can really make things &#8220;pop&#8221; even using subtle textures and changes of color. Gradients for example can look great on monitors!</p>
<p>But you may notice that when going to print that same website or image, things flatten out a bit. Colors can get muddy, or the overlaid design element that was &#8220;just right&#8221; on screen is now almost invisible. What gives? The fact of the matter is that printing is a very technical and variable process, and rarely does printing the exact web design (at print resolution) produce a piece that &#8220;looks just like the website&#8221;. <strong>Every single printer will have a different gamut</strong> and it is part of the designer&#8217;s task to built the piece so that it will print well, and even then it may require many test prints and print checks on-scene at the final hour. Typically printers (be it desktop or professional) use the standard four colors of <strong>cyan, magenta, yellow, and blank</strong> &#8220;CMYK&#8221; to build all the hues for the print. This produces a wide gamut for the money but will not produce every color of the rainbow! Perhaps the easiest to see example of the shortcomings of the CMYK gamut is a bright green or purple.</p>
<p><span style="text-decoration: underline;">To address your color gamut problems from web to print:</span> choose an excellent printer early on, make many test prints on your laser or inkjet, and when necessary be prepared to spend a little extra to get a spot color (separate ink, eg bright green) when it is important to do so.</p>
<h2>Color Consistency</h2>
<p>Here is one area where print design can thoroughly beat the pants off of webdesign: every piece that comes off the press is going to have the same color. Contrast that to walking into the computer or television store with all the screens facing the aisle, and inevitably they all look slightly different. A monitor can be tweaked to be brighter or darker, more or less contrast, and can be set to look more or less red, blue, or green.</p>
<p>A light yellow page background may look brown on a different computer, and be all but invisible on another. Short of doing the best possible to make it look acceptable on a variety of displays, there is really nothing you can do to control the situation 100%. And you wouldn&#8217;t want to, as each user needs to be able to adjust their display to fit their eyesite, location, and preference.</p>
<p>But a printed piece is different. A business card or promotion held in your hand (off the same print run) will have the same color in Scottsdale Arizona as would another in Madison Wisconsin. If bright green lawns are the sales pitch, everyone is going to get that bright green mailer!</p>
<h2>Designing Collateral for the Website</h2>
<p>In summary, when designing a print piece for a website you must keep in mind that your color <em>gamut</em> is going to be a bit more restrictive. Add to that the non-glowing medium of ink on paper, and those test prints are going to be critical in making adjustments to your colors. You will probably have to make subtle gradients and transitions much more pronounced so that they show up effectively. You may be disappointed to see that the richness of some colors or combinations is not as rich when reproduced in CMYK and no longer as attractive. Don&#8217;t despair though, you can print with spot colors (find the PANTONE number for the color &amp; paper you want to reproduce) or simply create a new look for the print work that is similar but not exactly matching the website. There is no rule that full-width high color websites need promotional material that is the same. And frankly, unless you have a good printer who can work with you, there is a real possibility of being disappointed in the finished piece. Maybe their press color is running hot (high on Magenta) and your &#8220;beach volleyball&#8221; is going to become &#8220;lobster volleyball&#8221;! But hey, at least it will be consistent across all 10,000 fliers, right?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sprisemedia.com/blog/taking-your-web-design-to-print-color-hints/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cforms II: Save Button Disappears on WordPress 3.5 &#8211; Solution</title>
		<link>http://www.sprisemedia.com/blog/cforms-ii-save-button-disappears-on-wordpress-3-5-solution/</link>
		<comments>http://www.sprisemedia.com/blog/cforms-ii-save-button-disappears-on-wordpress-3-5-solution/#comments</comments>
		<pubDate>Wed, 20 Mar 2013 20:52:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.sprisemedia.com/?p=169</guid>
		<description><![CDATA[Here is the problem with the Cforms II Save/Update button disappearing when you upgrade your WordPress sites from 3.3x to 3.51. There are a couple of steps to fix this: Change the method add_menu in $wp_admin_menu-&#62;add_menu to add_node. For each add_action call in the cforms plugin, you will need to change $wp_admin_bar-&#62;add_menu to $wp_admin_bar-&#62;add_node. Put [...]]]></description>
				<content:encoded><![CDATA[<p>Here is the problem with the Cforms II Save/Update button disappearing when you upgrade your WordPress sites from 3.3x to 3.51.</p>
<p>There are a couple of steps to fix this:</p>
<ol>
<li>Change the method add_menu in $wp_admin_menu-&gt;add_menu to add_node. For each add_action call in the cforms plugin, you will need to change $wp_admin_bar-&gt;add_menu to $wp_admin_bar-&gt;add_node.</li>
<li>Put the add_action(&#8216;admin_menu_bar&#8217;, $func) calls into the main cforms.php file, rather than the other library files they are in. This is very important. Just cut and paste the add_action() calls and the add_item() function below the other add_actions() of cforms.php. Your Cforma II admin Save links should be showing up again!</li>
<li>Now you just need a little conditional magic to make sure they only show up on the Cforms plugin admin page. Wrap your add_action(&#8216;admin_menu_bar&#8217;, &#8216;add_items&#8217;); with a conditional such as this:<br />
if(strrpos($_SERVER['REMOTE_URI'],&#8217;cforms&#8217;)) {<br />
add_action(&#8216;admin_menu_bar&#8217;,'add_items&#8217;);<br />
}</li>
</ol>
<p>There now, that wasn&#8217;t so bad, you can stop pulling your hair out over the upgrade.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sprisemedia.com/blog/cforms-ii-save-button-disappears-on-wordpress-3-5-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Design: Trends that Border on Convention</title>
		<link>http://www.sprisemedia.com/blog/web-design-trends-that-border-on-convention/</link>
		<comments>http://www.sprisemedia.com/blog/web-design-trends-that-border-on-convention/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 18:31:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.sprisemedia.com/?p=147</guid>
		<description><![CDATA[To expand on the notion of web design conventions, there is a broader set of techniques that aren't mandatory but are inching their way towards being a standard. Here are a few website styles that have solidified into conventions and are holding on for the long haul.]]></description>
				<content:encoded><![CDATA[<p>To expand on the notion of web design conventions, there is a broader set of techniques that aren&#8217;t mandatory but are inching their way towards being a standard. Here are a few website styles that have solidified into conventions and are holding on for the long haul.</p>
<h2>Social Media Icons</h2>
<p>Businesses using social media (Twitter, Facebook, YouTube, Flickr, LinkedIn, etc) are strongly encouraged to add links to each of their profiles on their website. The new convention, going by the trend, is to add these links as a set of style-matching icons to the header or footer of the site&#8217;s design. This trend has created a predictable place to find social media connection links, as well as established a pattern a set of small icons. You can find many sets of icons for the popular networks for free online in various styles and shapes (glossy, round, sketchy, etc).</p>
<p>The typical exceptions to the header/footer icon trend are sites with widgets &amp; organizations with few social media outlets.  Websites making use of the available widgets or API functionality will typically have a leaderboard of their Facebook friends or a ticker of their latest Twitter tweets. Friend/follower widgets are almost always used in the sidebar, whereas a Latest Tweets is slightly more flexible and can be styled to fit a variety of applications – though the default plug &amp; play variety will also tend to be on a sidebar.</p>
<h2>Single (or Social) Sign On</h2>
<p>Single/Social Sign On allows users to perform logged-in activities on your website without having to create and remember a special account just for the site. SSO is extremely convenient for blog commenting since the user does not need to create a new account with the website to participate. They may have concerns about security or remembering a litany of username/password combinations, and with SSO systems such as Gravatar, Disqus, and Twitter Oauth they are far more likely to jump into the discussion. The added bonus of a SSO for blogs is that the user&#8217;s name, avatar image, and URL can be utilized. Your comment sections are instantly more personable!</p>
<h2>Graceful Degradation</h2>
<p>Web designers and developers can sometimes be heard grumbling about certain pieces of software that are long-outdated but just won&#8217;t die. You can help them wish Internet Explorer 6 a happy 10th birthday, and then start a conversation on how your website can degrade gracefully.</p>
<p>“Graceful degradation” describes the decline in quality (of design or user experience) for browsers that are substandard. There was a time when it was practical to expect your website to look basically the same on everybody&#8217;s computer, and designers and developers would use workarounds and certain techniques to ensure consistency. But today&#8217;s browsers are vastly superior and more consistent (compared to each other). We now have new ways to achieve the same effects that are faster, smarter, and more extensible. The new challenge is to make the experience GREAT for modern browser users and GOOD for those people who are unable to upgrade their systems (usually because of old infrastructure).</p>
<p>Real-world examples of graceful degradation:</p>
<ul>
<li> For Flash or video content, offer an explanation and descriptive image for non-Flash devices (or those incapable of seeing the video).</li>
<li> Allow certain design features or non-critical functionality to be lost on older browsers.</li>
<li> Be prepared for your preferred fonts to be unavailable, aliased (jagged), or the wrong size on some machines.</li>
</ul>
<p>All of the above examples are within the lines of graceful degradation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sprisemedia.com/blog/web-design-trends-that-border-on-convention/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scottsdale Web Design &#8211; Officially!</title>
		<link>http://www.sprisemedia.com/blog/scottsdale-web-design-officially/</link>
		<comments>http://www.sprisemedia.com/blog/scottsdale-web-design-officially/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 00:44:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.sprisemedia.com/?p=145</guid>
		<description><![CDATA[SPRISE MEDIA is proud to announce that we have officially moved to Scottsdale, Arizona! We are now designing websites in sunny North Scottsdale and look forward to this new transition.

If you are a Scottsdale business in need of a website or looking to revise (or revitalize) your existing web pages, please <a href="/#connect">drop us a line</a> or <a href="/quote">request a quote</a>. ]]></description>
				<content:encoded><![CDATA[<p>SPRISE MEDIA is proud to announce that we have officially moved to Scottsdale, Arizona! We are now designing websites in sunny North Scottsdale and look forward to this new transition.</p>
<p>If you are a Scottsdale business in need of a website or looking to revise (or revitalize) your existing web pages, please <a href="/#connect">drop us a line</a> or <a href="/quote">request a quote</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sprisemedia.com/blog/scottsdale-web-design-officially/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sprise Media Joins Local First Arizona</title>
		<link>http://www.sprisemedia.com/blog/sprise-media-joins-local-first-arizona/</link>
		<comments>http://www.sprisemedia.com/blog/sprise-media-joins-local-first-arizona/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 00:26:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.sprisemedia.com/?p=142</guid>
		<description><![CDATA[In our ongoing efforts to support local business and show our commitment to spending locally, we are happy to announce our inclusion to Local First Arizona! LFA works to educate and enrich on the community level, celebrating local businesses and the benefits of working with them. Sprise Builds Websites Locally in Scottsdale, Arizona...]]></description>
				<content:encoded><![CDATA[<p>In our ongoing efforts to support local business and show our commitment to spending locally, we are happy to announce our inclusion to Local First Arizona! LFA works to educate and enrich on the community level, celebrating local businesses and the benefits of working with them.</p>
<h2>Sprise Builds Websites Locally in Scottsdale, Arizona</h2>
<p>As a local Scottsdale business, we look forward to working with you on your next web project. Sprise is a fully local web design shop, we do not utilize contractors from the far corners of the world. By keeping our talent Arizona-based we are able to make a larger contribution back into the community that most directly impacts our lives.</p>
<blockquote><p>“When you shop locally owned businesses, your money is re-circulated over and over and creates up to 75% more tax revenue to our community and state.”<br />
- LFA</p></blockquote>
<p><a href="/#connect">Contact Sprise Media</a> today for your next creative project, freelance work inquiry, or website consultation. See special offer for new clients on our <a href="http://www.localfirstaz.com/directory/listing.php?member_id=5122&#038;area=">Local First Arizona listing</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sprisemedia.com/blog/sprise-media-joins-local-first-arizona/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lessons Learned from Realtor &amp; Real Estate Websites</title>
		<link>http://www.sprisemedia.com/blog/lessons-learned-realtor-websites/</link>
		<comments>http://www.sprisemedia.com/blog/lessons-learned-realtor-websites/#comments</comments>
		<pubDate>Mon, 09 May 2011 17:44:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.sprisemedia.com/?p=130</guid>
		<description><![CDATA[What's happening now in Arizona's real estate market is interesting to watch and learn from if you are able to do so. While some real estate professionals are going hungry and looking for other jobs, there are many who have turned up the dial on their websites and online marketing instead of backing down in the face of market conditions. Here are three lessons you can learn from the Realtors of Arizona.]]></description>
				<content:encoded><![CDATA[<p>It&#8217;s no secret that Arizona real estate is either in the toilet or ripe with opportunities – depending on your viewpoint and what assets you were holding when the bubble burst. Many fine people had to walk away from their now over-mortgaged homes and were subject to the black mark of bankruptcy. But what about the Realtors themselves, whose own homes and livelihood depend on selling properties to the (now dwindling) buyer base?</p>
<p>What&#8217;s happening now in Arizona&#8217;s real estate market is interesting to watch and learn from if you are able to do so. While some real estate professionals are going hungry and looking for other jobs, there are many who have turned up the dial on their websites and online marketing instead of backing down in the face of market conditions. They know that houses will always need to be bought and sold and they know that people are turning to the internet for everything, from cancer to condos.</p>
<p>Here are three lessons you can learn from the Realtors of Arizona and their web marketing strategies.</p>
<h2>Choose a narrower target audience than you would have in prior years.</h2>
<p>It&#8217;s not just local firms vying for keywords like “arizona real estate” – brokerages all over the world are trying to get a piece of the US and AZ real estate market! 	The most generic keywords in any industry are more challenging to rank for, and with the boom of interest in capitalizing on Arizona&#8217;s housing crisis, the competition makes general terms cost prohibitive. Similarly with so many firms to choose from it has 	become more important for the Realtor to appeal to a more niche market. While the broad-spectrum approach doesn&#8217;t alienate, it also doesn&#8217;t resonate deeply with buyers.</p>
<p>Examples of target markets for a real estate website:</p>
<ul>
<li>Canadians looking for winter condos</li>
<li>Relocations</li>
<li>Renovate and sell investors (“fix and flip”)</li>
<li>Rental investors</li>
<li>Horse properties</li>
</ul>
<h2>Use your website to provide a  service first, and promote yourself second.</h2>
<p>Providing a free online service to the world at large is a great way to put your name on the radar to folks who 	aren&#8217;t even interested or able to buy yet. They may not be at the stage of choosing a Realtor yet, just checking out the geographical area. Many 	Phoenix – Scottsdale Realtors have created blogs about the locale they serve and rather than reposting the same old MLS listings, they post about what&#8217;s new and hot in the city. They broaden their website&#8217;s visitor base by providing restaurant reviews, new business openings, city projects, and local news. They have their websites built in content management systems (e.g. WordPress) and do the updates 	themselves.</p>
<h3>Case Study:</h3>
<p>Who doesn&#8217;t like to chuckle and think they could have done it better? AZ Realtor Leif Swanson turned his everyday sea of sad MLS photos into a fun “fail blog” of real estate. Readers from around the world tune in to see Christmas trees up in July, million-dollar cluttered kitchens, and the occasional perfectly-preserved 50&#8242;s kitchen. The <a href="http://www.uglyhousephotos.com">Ugly House Photos</a> blog also has a nice series of posts about homebuilding trends in the Phoenix area throughout the decades. The website&#8217;s design is  a tongue-in-cheek reflection of its contents.</p>
<h2>Be aggressive with organic SEO and web marketing, especially in stiff competition.</h2>
<p>It&#8217;s not enough in the real estate field to optimize a website and then leave it. Too many competitors are 	making frequent and targeted updates to their own sites, trying to get a piece of the action. A firm that doesn&#8217;t put time or money into their continued online success will become buried by more 	active competition in the search results.</p>
<p>Continually make additions and efforts with your target audience in mind. Remember at all times that the market has changed and no longer allows for complacency. The techniques that served your company well in the earlier part of the decade may no longer apply, and if you don&#8217;t adjust course there are many professionals who will gladly take your future business. Don&#8217;t try to sacrifice your advertising and marketing when business is slow – instead, push harder. If you can&#8217;t hire an expert, ask your web professional if they can create a site for you to update personally. Remember, your online competition is very hungry!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sprisemedia.com/blog/lessons-learned-realtor-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hiring a Freelance Web Designer</title>
		<link>http://www.sprisemedia.com/blog/hiring-a-freelance-web-designer/</link>
		<comments>http://www.sprisemedia.com/blog/hiring-a-freelance-web-designer/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 22:35:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.sprisemedia.com/?p=126</guid>
		<description><![CDATA[Why hire a freelance webdesigner? Cost Savings Hiring a freelancer can save you money on your project! Think about it, there is no expensive office to furnish and maintain. Their business will be without many expenses that an agency or design studio would incur, and their own travel/commuting expenses will be lower. Work that would [...]]]></description>
				<content:encoded><![CDATA[<h2>Why hire a freelance webdesigner?</h2>
<h3>Cost Savings</h3>
<p><strong>Hiring a freelancer can save you money on your project! </strong>Think about it, there is no expensive office to furnish and maintain. Their business will be without many expenses that an agency or design studio would incur, and their own travel/commuting expenses will be lower. Work that would typically be billed $65-$100 per hour in an agency environment is significantly cheaper when you contract that job to a skilled freelancer whose <strong>operating costs are a fraction of the agency.</strong></p>
<p>Having said that, there is one caveat. If your prospective web designer&#8217;s rates look too good to be true, then it probably is. Your freelance web designer still has to do his or her taxes, pay for insurance, meet their own bills, and do all the tasks usually delegated to a bookkeeper, salesman, and marketer in a traditional company. Certainly they will work hard for you, their client, but there is time set aside each day for these afore-mentioned “non-paying” tasks. You want to be able to call up your web professional to chat about your project and ask questions, don&#8217;t you? A good freelancer will be glad to assist you, while the underpaid one will be unable to break from their work to take your call (or worse yet they have farmed out the work to another country).</p>
<p>Hiring a web designer freelance (instead of employing an agency) can also be a great savings to you because the threshold for entry-level projects tends to be lower. <strong>Remember “No job too small”</strong>? Many agencies start their web pricing at $3,000 and up with no accommodations for smaller jobs. Your freelancer should be able to custom-fit their quote to your exact project needs, not the other way around.</p>
<h3>Custom Packages to Suit Your Needs</h3>
<p>Freelancers work with a variety of industries and types of clients. We know that one size rarely fits all, and a good webdesigner won&#8217;t try to force fit your project into a standard package that is over your budget or misses your needs. Most freelancers are happy to draft a quote uniquely tailored to your project and are more likely to make this-for-that substitutions so that the website you purchase is exactly the website you need.</p>
<p>Flexibility in general is greater with freelance web designers than with agencies, since you will be dealing with a person. One professional, knowledgeable, and pleasant person whose main objective is to bring your ideas to life. They know that all the success and prosperity they bring your way is a direct reflection on their expertise and abilities, and so they work hard for your success – not just your signature on the check.</p>
<h3>Freelancers Have Many Friends</h3>
<p>Since your freelance web designer has to wear many hats – <strong>sales, marketing, bookkeeping, courier, copywriter, proofreader, developer, photographer, consultant, to name a few of the possible man</strong>y – they have to network with the graphic, creative, and technological communities in their area. They come to know professionals in different areas and with skillsets outside their own. When you need to find a professional in another field, ask your freelancer if they have contacts. If they do, you can review the pro&#8217;s they refer you to and enjoy the same benefits of a freelancer and promoting your local economy all over again.</p>
<p>By choosing a freelance designer or website professional you will save money and gain favorable terms and flexibility for your website project. You will be promoting the creative community and local business within your area, and can get access to a host of other types of freelance-rate service providers that you may need down the line. Your freelancer and their professional friends can save you money on this project and the next!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sprisemedia.com/blog/hiring-a-freelance-web-designer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Design Conventions</title>
		<link>http://www.sprisemedia.com/blog/website-design-conventions-to-know/</link>
		<comments>http://www.sprisemedia.com/blog/website-design-conventions-to-know/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 21:41:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.sprisemedia.com/?p=113</guid>
		<description><![CDATA[What are web design conventions and why do they apply to my website? Web design has evolved greatly from its early days, and in that time, a few patterns have solidified into convention. To follow these patterns is to give the user an easy experience, with the website&#8217;s elements roughly in the places they expect [...]]]></description>
				<content:encoded><![CDATA[<h2>What are web design conventions and why do they apply to my website?</h2>
<p>Web design has evolved greatly from its early days, and in that time, a few patterns have solidified into convention. To follow these patterns is to give the user an easy experience, with the website&#8217;s elements roughly in the places they expect them to be. Breaking from these website conventions will make browsing and interacting with your site more difficult and – at worst case – turn away your customers.</p>
<h2>Don&#8217;t make your website difficult.</h2>
<p><img class="alignright size-full wp-image-118" title="design_signage" src="http://www.sprisemedia.com/wordpress/wp-content/uploads/2011/02/design_signage.jpg" alt="" width="300" height="225" />For artistic or personal preference reasons, some website owners elect to ignore web convention and make their users think hard when they are on their site. Certainly there is a little bit of artistic license lost by following the norm, but the gains far outweigh the loss. Consider how the following tasks would be more arduous if conventions were not established:</p>
<ul>
<li>Getting around in a foreign airport</li>
<li>Driving a rental car off the lot, of a model you have never sat in</li>
<li>Taking a photograph for a stranger</li>
</ul>
<p>In each example there are patterns established by builders and manufacturers that allow us to do the above tasks while hardly giving a second thought. Universal pictorial signage, standardization of car features, and a large button on the right side of the camera body have decreased the amount of thinking and guesswork that goes into our everyday life. Why wouldn&#8217;t we design our site to give users the same level of convenience?</p>
<h2>Website Logo Position</h2>
<p>The logo should go on the <strong>web page&#8217;s top left corner</strong> and when clicked, link back to the home page. Your company&#8217;s (or entitity&#8217;s) logo should always be among the first visual items on every page. This convention is perhaps the most important and when compared to traditional media (print), it is different because the logo-on-top web design rule really cannot be broken. Unlike the cover of a book, you will never be able to control what size your page is shown at. Did they see the whole page, or just the first 700 pixels? Occasionally there is a design where the logo is top center or top right – these are much less common but can be acceptable so long as the identity of the site is clear.</p>
<h2>Navigation on your Website</h2>
<p>The website&#8217;s main navigation should be clearly visible without scrolling down the page. The navigation typically occurs as a horizontal bar across the top or a vertical column of links on the left or right side of the webpage. It can be of whatever color and styling the designer likes, but it needs to be legible and in one of these places – visible immediately when the site loads.</p>
<p>A secondary navigation area of lesser-used links can occur away from the top of the site. This additional navigation could be placed in the footer, on a sidebar, or in another strategic place. It should be clear by the site design that this block of links plays a “supporting role” rather than the “lead role” in the page&#8217;s design.</p>
<h2>Design Consistency Across the Site</h2>
<p><strong>Aim for consistency in design across the site, </strong>with deviations occurring as necessary for clarity. At no point should your user question if they&#8217;ve clicked off your site! Unlike multi-page printed materials (such as a booklet or annual report), your website should have a set of elements that remain constant throughout all pages. A common header, content layout, navigtation, and styling of text can be employed to make your site experience clear and memorable.</p>
<p>Designing a new site in accordance with these design conventions is just one more way you can <strong>provide an easy and enjoyable web experience</strong> for your users. You will give them the information they need,  in the way that they are accustomed to receiving it. By sticking with the conventions of the web, your website will do its job more effectively and communicate more clearly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sprisemedia.com/blog/website-design-conventions-to-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
