<?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>studio&#124;chris · Greenwood, SC &#187; Web Design</title>
	<atom:link href="http://www.studiochris.us/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.studiochris.us</link>
	<description></description>
	<lastBuildDate>Thu, 02 Feb 2012 16:58:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<atom:link rel='hub' href='http://www.studiochris.us/?pushpress=hub'/>
<cloud domain='www.studiochris.us' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>CSS3 Metallic and Glossy Buttons Without Images</title>
		<link>http://www.studiochris.us/2009/css3-metallic-and-glossy-buttons-without-images-hello-future/</link>
		<comments>http://www.studiochris.us/2009/css3-metallic-and-glossy-buttons-without-images-hello-future/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 13:23:41 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[buttons]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/?p=735</guid>
		<description><![CDATA[CSS3 support in browsers is bringing some exciting changes to web design and what is possible without jumping into Photoshop to make images and gradient backgrounds. Here's how I tackled making most of the buttons during the recent redesign of studio&#124;chris.]]></description>
			<content:encoded><![CDATA[<p>CSS3 support in browsers is bringing some exciting changes to web design and what is possible without jumping into Photoshop to make images and gradient backgrounds. During the redesign of studio|chris, I decided to take advantage of some of the new techniques for some of the buttons around the site.</p>
<p>The most prominent examples in the visual design for regular readers are the drop and inset shadows in the comment sections and also some of the buttons throughout the site. Of the buttons, the most complex are the glass (in Firefox) or metallic (in WebKit-based browsers) buttons in the mini-editor used while posting a comment or over in the support forum.</p>
<p><img class="photoframe" style="padding: 10px" title="glass_buttons" border="0" alt="glass_buttons" src="http://www.studiochris.us/site/wp-content/uploads/2009/12/glass_buttons_thumb.jpg" width="560" height="441" /></p>
<p>These little beauties use progressive enhancement with CSS3 for rounded corners, gradient backgrounds and stacked shadows to create their background effects – no images! Well, almost no images, CSS isn’t magic and can’t draw icons easily.</p>
<p><span id="more-735"></span></p>
<h3>Here’s the CSS</h3>
<pre class="brush: css">a.glassbutton, .glassbuttons a{
	padding: 4px 10px;
	position: relative;
	background: #f6f6f6;
	background: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(#fafafa), color-stop(0.5, #fff), color-stop(0.6, #ddd), color-stop(0.95, #FFF));
	border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px;
	border: 1px solid #BBB;
	border-top-color: #CCC;
	border-bottom-color: #999;
	border-right-color: #AAA;
	color:#333;
	text-decoration:none !important;
	-moz-box-shadow: 0 4px 4px rgba(255,255,255,.6) inset, 0px -9px 10px -4px rgba(255, 255, 255,1) inset, 0 -20px 1px -6px rgba(0, 0, 0, 0.125) inset;
	outline: none !important;
	}

a.glassbutton:hover, a.glassbutton:focus, .glassbuttons a:hover, .glassbuttons a:focus{
	background: rgba(0,0,0,.05);
	background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#fafafa), color-stop(0.5, #fff), color-stop(0.6, #eee), color-stop(0.95, #FFF));
	border: 1px solid #999;
	border-top-color: #AAA;
	border-bottom-color: #777;
	border-right-color: #999;
	color: #222;
	}

a.glassbutton:active, .glassbuttons a:active{
	-moz-box-shadow: 0 2px 2px rgba(0,0,0,.25) inset;
	background: -webkit-gradient(linear, left top, left bottom, from(#bbb), to(#f0f0f0), color-stop(0.5, #eee), color-stop(0.6, #ddd), color-stop(0.95, #eee));
	border: 1px solid #BBB;
	border-top-color: #999;
	border-bottom-color: #EEE;
	border-right-color: #999;
	color: #111;
	}</pre>
<h3>… and the Explanation</h3>
<h4>Firefox 3.5</h4>
<ul>
<li>Uses a combination of multiple inset box shadows [<a href="https://developer.mozilla.org/En/CSS/-moz-box-shadow" title="-moz-box-shadow @ Mozilla Developer Center"><code>-moz-box-shadow</code></a>] and RGBA color [<code>rgba(r,g,b,a)</code>] to create glossy transparent buttons.</li>
<li>Multiple shadows are achieved by adding a comma and simply typing in a new shadow, simple (don’t forget the <code>inset</code> property). </li>
<li>The offset property of <code>–moz-box-shadow</code> is used to position the shadow inside the button, allowing for the illusion gradient effect, but with the added benefit of the gradient following the contours of the box. </li>
<li>The use of RGBA color for the shadows makes the shadows partially transparent, leading to a much richer rendering. </li>
<li>Changing the main color in the <code>background</code> CSS property will change the color of the buttons without having to recolor the shadows. </li>
<li>An RGBA color for the main background color will make true transparent glass, but won&#8217;t be supported in IE. </li>
<li>The same technique may work with XUL and Firefox theming.</li>
</ul>
<h4>WebKit – Safari &amp; Chrome</h4>
<ul>
<li>Since WebKit doesn&#8217;t support the inset property for box shadows, yet, I opted to use <a href="http://developer.apple.com/safari/library/documentation/InternetWeb/Conceptual/SafariVisualEffectsProgGuide/Gradients/Gradients.html" title="Safari Dev Center: -webkit-gradient"><code>-webkit-gradient</code></a> for the background for WebKit browsers. </li>
<li>The final look isn&#8217;t as rich as the Firefox rendering, which follows the shape of the buttons, but it is a reasonable substitute. </li>
<li>I didn&#8217;t use RGBA color for the gradient, so the background color can&#8217;t be changed easily; however, the color stops in the gradient can be changed easily. </li>
<li>I haven’t dug too far into the AIR-embedded WebKit, but this may also work for HTML AIR applications.</li>
</ul>
<h4>Internet Explorer</h4>
<ul>
<li>Without CSS3 support for gradients, shadows or RGBA, IE renders plain gray buttons. </li>
</ul>
<h3>Final Thoughts</h3>
<p>As the web continues to move forward and CSS3 support becomes more widely available these techniques will begin to show up in more places, and I’m really looking forward to it!</p>
<p>Of course, there is always the opportunity for the these properties to be misused, just like Photoshop filters. But I like to look to the brighter side, used thoughtfully and in the right places, they add just the right amount of decoration for a more beautiful web browsing experience for the end user and quicker development time for designers. I&#8217;ll certainly be using a lot more in client projects.</p>
<p>What are you looking forward to most in CSS3, and what are your favorite techniques that can be used now? Please, share in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2009/css3-metallic-and-glossy-buttons-without-images-hello-future/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delivering Advertising to Adobe AIR Apps with OpenX AdServer</title>
		<link>http://www.studiochris.us/2009/delivering-advertising-to-adobe-air-apps-with-openx/</link>
		<comments>http://www.studiochris.us/2009/delivering-advertising-to-adobe-air-apps-with-openx/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 00:25:27 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[adobe air]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[openx]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/archive/2009/delivering-advertising-to-adobe-air-apps-with-openx/</guid>
		<description><![CDATA[For AIR applications that have access to an internet connections, delivering ads via OpenX is very easy with just a little code. 12 lines to be exact, and here it is...]]></description>
			<content:encoded><![CDATA[<p><img style="padding: 10px;" class="photoframe" title="OpenX + Adobe AIR" src="http://www.studiochris.us/site/wp-content/uploads/2009/12/openx_air_thumb.jpg" border="0" alt="OpenX + Adobe AIR" width="560" height="143" /></p>
<p>For AIR applications that have access to an internet connections, delivering ads via OpenX is very easy with just a little code. For this basic implementation, we’ll use AIR’s built-in WebKit browser, which accepts JavaScript delivery perfectly, by using an instance of the HTMLLoader class. This is the same approach I’ve taken with my own AIR application, <a href="http://www.studiochris.us/software/brush-manager">Brush Manager</a>, which is authored in Flash CS4 Professional. Being completely ActionScript based, the same code should be able to be used in the Flex environment (maybe with very few modifications for public and private identifiers). HTML/JavaScript based applications should be able to use a similar approach, if the ads aren’t already integrated completely into the code base for the app.</p>
<p><span id="more-718"></span></p>
<p class="notice">As a follow up to this post, I&#8217;ve turned this into an ActionScript 3 class for easy use in both Flash and Flex. Here&#8217;s the <a href="http://www.studiochris.us/archive/2010/openx-loader-actionscript-3-class-for-adobe-air/">new post and download link</a>.</p>
<p>Just a note that this WILL NOT work for Flash applications targeted to the Flash Player plugin – ONLY AIR applications.</p>
<pre class="brush: as3">
//Import the HTMLLoader and related classes
import flash.html.*;
import flash.net.*;

//Create a new HTMLLoader instance to hold the ad(s)
var html:HTMLLoader = new HTMLLoader();

//URL of the OpenX delivery page
//this is a regular HTML document on your server with the OpenX invocation code
var urlReq:URLRequest = new URLRequest('http://domain.com/ad_page.html');

//Set parameters for the HTML component before adding it to the display list

//Width &amp; Height of the HTML component
html.width = 125;
html.height = 125;

//X &amp; Y positioning coordinates (relative to the parent movie clip/sprite/object)
html.x = 0;
html.y = 0;

//We want links in this component to open in the default system web browser
// If you don't do this, the link will open in the HTML component instead.
html.navigateInSystemBrowser = true;

//Give the HTML component a transparent background so it blends into the application background
html.paintsDefaultBackground = false;

//Add the HTML component to the display list
parentMovieClip.addChild(html);

//Load the OpenX delivery page
html.load(urlReq);</pre>
<h3>Additional Tips &amp; Tricks</h3>
<ul>
<li>CSS in the head of the delivery page can be used to style and position ad blocks.</li>
<li>CSS should be used to clear any margin or padding of the default browser window. This makes positioning easier.</li>
<li>Overflow may need to be hidden as well to hide scrollbars.</li>
<li>JavaScript is always enabled in AIR (it is one of the base components), so normal JavaScript invocation methods work perfectly.</li>
<li>Ad clicks may not work properly in the AIR debug player, but work perfectly in published and installed AIR files. Both impressions and clicks are tracked as they should be.</li>
<li>For banner/ad rotation, either use JavaScript in the head of the delivery page or write a refresh script using a timer in ActionScript in your Flash document. Use the <code>html.relaod();</code> method to refresh the HTML Loader instance in ActionScript.</li>
<li>If there is any chance your application may not have access to an internet connection, use the air.net library to create a URLMonitor to test for connectivity and only attempt to load your ads if a connection is available. If your application is offline, trying to load the URLRequest will throw an ActionScript error.</li>
<li>This method, extended a little, could be used to create an ad loader much like the one seen in YouTube’s video player with text-based ads.</li>
</ul>
<h3>Have anything to add?</h3>
<p>Have any of you used any other or similar methods to integrate ads into an AIR app? What discoveries have you made?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2009/delivering-advertising-to-adobe-air-apps-with-openx/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Farewell IE6 &#8211; It was (not) fun while it lasted</title>
		<link>http://www.studiochris.us/2008/farewell-ie6-it-was-not-fun-while-it-lasted/</link>
		<comments>http://www.studiochris.us/2008/farewell-ie6-it-was-not-fun-while-it-lasted/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 12:00:00 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Site]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[internet explorer 6]]></category>
		<category><![CDATA[web browser]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/archive/2008/farewell-ie6-it-was-not-fun-while-it-lasted/</guid>
		<description><![CDATA[I’m officially dropping support for Internet Explorer 6 for this site, except for problems that affect usability. The same policy will carry forward for future client sites, though IE6 support may be added for an additional fee.]]></description>
			<content:encoded><![CDATA[<p><img style="padding: 12px" class="photoframe" title="Goodbye IE6" border="0" alt="Goodbye IE6" src="http://www.studiochris.us/blog/wp-content/uploads/2008/10/goodbyeie6.jpg" width="404" height="108" /> </p>
<p>It has been 7 long years (and a couple months) since the release of Internet Explorer 6, along with its many <a href="http://css-tricks.com/ie-css-bugs-thatll-get-you-every-time/">rendering</a> <a href="http://www.positioniseverything.net/explorer.html">bugs</a>. Some of these were <a href="http://blogs.msdn.com/ie/archive/2006/08/22/712830.aspx">fixed in IE7</a>, and even more are fixed with the forthcoming IE8. With that said, watching the stats of visitors to this site, over 90% of you have upgraded to IE7 or other, newer browsers. At this point, I’m <strong>officially dropping support for IE6</strong> for this site, except for problems that affect usability. This doesn’t change much for the current design, which I’m planning on sticking with for a while because I love it, but future designs and improvements to this design may not display perfectly in IE6.</p>
<p>Unlike some sites taking a stand against IE6, I will not block IE6 from viewing the site, but just be aware that some parts may not display perfectly if you’re using IE6. All the different pages and content will be available – the drop of support is completely aesthetic in nature. Hacks will no longer be used to make sure everything is displays perfectly in IE6.</p>
<p>To be sure you’re seeing this site (and others) as intended, please consider upgrading your browser. Here are some recommendations:</p>
<table border="0" cellspacing="10" width="570">
<tbody>
<tr>
<td valign="top" width="190">
<p align="center"><strong><a href="http://www.microsoft.com/windows/downloads/ie/getitnow.mspx">Internet Explorer 7</a></strong>&#160;</p>
<p>         <a href="http://www.microsoft.com/windows/downloads/ie/getitnow.mspx"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Internet Explorer 7" border="0" alt="Internet Explorer 7" src="http://www.studiochris.us/blog/wp-content/uploads/2008/10/internet-explorer-7-logo.png" width="150" height="150" /></a></td>
<td valign="top" width="190">
<p align="center"><strong><a href="http://www.getfirefox.com">Firefox 3</a></strong>&#160;</p>
<p>         <a href="http://www.getfirefox.com"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Firefox" border="0" alt="Firefox" src="http://www.studiochris.us/blog/wp-content/uploads/2008/10/firefox-logo.jpg" width="150" height="142" /></a></td>
<td valign="top" width="190">
<p align="center"><strong><a href="http://www.apple.com/safari/download/">Safari 3</a></strong>&#160;</p>
<p>         <a href="http://www.apple.com/safari/download/"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Safari" border="0" alt="Safari" src="http://www.studiochris.us/blog/wp-content/uploads/2008/10/safari-logo.jpg" width="150" height="150" /></a></td>
</tr>
<tr>
<td valign="top" width="190">
<p align="center"><strong><a href="http://www.google.com/chrome">Google Chrome</a></strong></p>
<p>         <a href="http://www.google.com/chrome"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Google Chrome" border="0" alt="Google Chrome" src="http://www.studiochris.us/blog/wp-content/uploads/2008/10/google-chrome-logo.jpg" width="150" height="146" /></a> </td>
<td valign="top" width="190">
<p align="center"><strong><a href="http://www.flock.com">Flock</a></strong></p>
<p>         <a href="http://www.flock.com"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Flock" border="0" alt="Flock" src="http://www.studiochris.us/blog/wp-content/uploads/2008/10/flock-logo.jpg" width="150" height="149" /></a> </td>
<td valign="top" width="190">
<p align="center"><strong><a href="http://www.opera.com/">Opera</a></strong></p>
<p>         <a href="http://www.opera.com/"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Opera" border="0" alt="Opera" src="http://www.studiochris.us/blog/wp-content/uploads/2008/10/operalogoapr08.jpg" width="150" height="132" /></a> </td>
</tr>
</tbody>
</table>
<h3>&#160;</h3>
<h3>What Does This Mean For Clients?</h3>
<p>With dropping support for IE6 on the Studio|chris site, I will also be dropping out of the box support for IE6 on any future or yet to launch client projects. IE6 display support may be added on for an additional fee, if needed. Once again, sites WILL display and be usable for IE6 users, they just may not display 100% as they do in a more standards compliant browser, like Firefox, due to the rendering engine bugs. Ultimately, this decision was made instead of raising prices across the board due to the growing amount of extra time (sometimes measured in days) spent to “fix” sites for IE6.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2008/farewell-ie6-it-was-not-fun-while-it-lasted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client Website Launch: Photography by Bonnie</title>
		<link>http://www.studiochris.us/2008/client-website-launch-photography-by-bonnie/</link>
		<comments>http://www.studiochris.us/2008/client-website-launch-photography-by-bonnie/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 19:00:00 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Commercial Art]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[logo design]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/archive/2008/client-website-launch-photography-by-bonnie/</guid>
		<description><![CDATA[Bonnie McCann of Photography by Bonnie chose me to pull together a brand new website for photography and fine art business. After winning a major competition, she needed something classy and elegant to match the quality of her art.]]></description>
			<content:encoded><![CDATA[<p align="center"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="bonnie_mccann_launch" src="http://www.studiochris.us/blog/wp-content/uploads/2008/09/bonnie-mccann-launch1.jpg" border="0" alt="bonnie_mccann_launch" width="595" height="390" /></p>
<p>I met Bonnie McCann of Photography by Bonnie a long time ago through the <a href="http://www.digitalpaintingforum.com">Digital Painting Forum</a>. She lives in paradise in Kaneohe, HI which is literally a hop, skip and a jump from Honolulu. Given her location, Bonnie does a lot of tropical themed art and her photography ranges through nautical, aquatic, tropical and cultural themes. Stunning work – in fact, so stunning that she recently won the Grand Prize in the <a href="http://www.bonniemccann.com/archive/2008/07/the-artful-home-announces-the-winners/">Artful Home’s 2008 Portfolio Competition</a>!</p>
<p>In conjunction with her accomplishments, Bonnie decided it was time to toss out the old Flash template website she had been using in favor of a more classy and elegant interface that she could update quickly and easily and also included a blog and shopping cart system to sell her products online. In her list of requests for the new look was the light cyan that makes an appearance as the main content background color, a slight tropical feel (but remaining elegant) and to keep things as open as possible.</p>
<p><span id="more-395"></span></p>
<h3>The Color Choices</h3>
<p>The first step in the process was to pick a color scheme that would flow well with the light cyan. In the end, I chose a lime green as an accent color and a dark, rich brown reminiscent of coconuts, coffee, cocoa and a dark, rich wood to anchor the header and footer of the site amidst all the cyan and aquas. To continue with the tropical color scheme, I chose one of Bonnie’s portrait paintings taken on the beach to draw some color inspiration for the background. The result brings in hints of the color of sunshine hitting the waves and also of waves washing over the beach.</p>
<h3>A Little More Tropical</h3>
<p>To add just a little more tropical flair, but still staying elegant, Bonnie needed a new logo, which comes in one form for her site and two alternate, but very similar forms for her product packaging and printed materials. I added a small flower motif for the final touch. Here is the main logo:</p>
<p align="center"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="bonnie_logo_1" src="http://www.studiochris.us/blog/wp-content/uploads/2008/09/bonnie-logo-1.jpg" border="0" alt="bonnie_logo_1" width="424" height="282" /></p>
<h3>Pulling It All Together</h3>
<p>With the new colors, logo and website layout in hand I created two matching templates for the two pieces of software that make up Bonnie’s site – the main content management system and the shopping cart. While the two parts of the site are separate, they flow like one single piece and the end result accomplishes all of the goals Bonnie had set for her new site.</p>
<p>She has been a joy to work with and I look forward to continuing to work with her and watching her art grow and evolve as time passes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2008/client-website-launch-photography-by-bonnie/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Client Website Launch: Keane Studios, LLC</title>
		<link>http://www.studiochris.us/2008/client-website-launch-keane-studios-llc/</link>
		<comments>http://www.studiochris.us/2008/client-website-launch-keane-studios-llc/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 16:01:00 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[clients]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/archive/2008/client-website-launch-keane-studios-llc/</guid>
		<description><![CDATA[Bill Keane, owner of Keane Studios, LCC, heard me speak at WPPI back in March of this year. Shortly after, he contacted me to do a complete redesign of his studio's online presence.]]></description>
			<content:encoded><![CDATA[<p align="center"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" title="keane_studios_launch" src="http://www.studiochris.us/blog/wp-content/uploads/2008/09/keane-studios-launch1.jpg" border="0" alt="keane_studios_launch" width="595" height="390" /></p>
<p>Bill Keane, owner of <a href="http://www.keanestudios.com">Keane Studios, LCC</a>, heard me speak at WPPI back in March of this year when Marilyn called me up on stage during her program in the Silver Ballroom at Bally’s (I should really write about that sometime – it was an awesome experience!). After the conference, Bill contacted me to totally revamp his online presence. Bill’s old site was very simple, and according to him, didn’t really suit  the “look” he’d like to put forward for his studio. He also wanted to be able to take advantage of blogging, which he wasn’t able to on his old site.</p>
<p>Bill’s requirements were for customers to be able to order portrait sessions on the site and we were to make use of his “signature green” and current logo. Along with the signature green, we also introduced a brand new green – the lighter green that serves as the background (I believe it was called Wasabi). Bill was great during the design process, providing color swatches, paper design patterns and samples of other websites he liked. Combining this all together, the final look combines the colors, logo, textures, and all of the other provided suggestions into a designed based on layered arcs, stripes and slightly textured backgrounds.</p>
<p><span id="more-390"></span></p>
<h3>The Shopping Cart</h3>
<p>Not evident in the final design, there was actually an intermediate version of the Keane Studios website that took the old design and updated it slightly for a session of emergency ordering for prom portraits. The intermediate version was built over a weekend and orders were ready to be taken in just a few days. During this time, the groundwork for Bill’s final shopping cart was laid down and everything performed beautifully. After the success of the custom coding solution to collect session information from clients during the shopping process, the final version of the shopping cart involved tweaking forms for different types of photo sessions and print pre-ordering.</p>
<p>Over the life of the new shopping cart system, Bill has successfully been able to take orders online and coordinate photo sessions for the senior proms, graduations and senior portraits for four area high schools. Each of the past events is still registered in the cart system, so next year, Bill only has to “flip a switch” and he’ll be ready for Round 2!</p>
<h3>The Rest of the Site</h3>
<p>Of course, like all of my recent web design projects, Bill can easily maintain his entire site, which is very important. In a dynamic photo studio, forms and products change and evolve over time. The site is coordinated through a content management system complete with galleries, his blog, and as many pages of content as he can throw at it. Included with the galleries, he also has the option to show Flash slideshows. He can do it all without writing one single line of HTML code – which makes everything super easy.</p>
<p>Coincidentally, Bill and his wife will be attending the <a href="http://www.studiochris.us/archive/2008/fall-blogging-workshop-registration-open/">Blogging Workshop in Asheville</a> on October 3 &amp; 4. I can’t wait to meet them both face to face and really show them how to take the new blog to the next level!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2008/client-website-launch-keane-studios-llc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Client Website Launch: Splash Designs</title>
		<link>http://www.studiochris.us/2008/client-website-launch-splash-designs/</link>
		<comments>http://www.studiochris.us/2008/client-website-launch-splash-designs/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 12:00:00 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[clients]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/archive/2008/client-website-launch-splash-designs/</guid>
		<description><![CDATA[I recently had the pleasure of working with local artist Alice Rambo on the starter site for her new venture, Splash Designs. This is my third project with Alice.]]></description>
			<content:encoded><![CDATA[<p align="left">I recently had the pleasure of working with local artist Alice Rambo on the starter site for her new venture, <a href="http://www.splashdesigns.net">Splash Designs</a>. This is my third project with Alice. Previously, I’ve helped her create her logo, business cards and and an identifying flyer. All of them, if I say so myself, have turned out great, and Alice has been thrilled.</p>
<p align="left">For her beginning website, Alice didn’t need anything very complex. She basically wanted something that introduced her to the community along with a few samples of her paintings. With her love of color and spontaneity, we started with a vibrant background taken from one of Alice’s abstract paintings, which matches the styling of one of the accent walls in her studio. On top of it, we’ve added various design elements taken directly from her business cards and other marketing materials along with her splashy logo and several paintings chosen by Alice.</p>
<p align="center"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="splash-designs-single" src="http://www.studiochris.us/blog/wp-content/uploads/2008/09/splashdesignssingle.jpg" border="0" alt="splash-designs-single" width="595" height="362" /></p>
<p align="center"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="splash-designs-single" src="http://www.studiochris.us/blog/wp-content/uploads/2008/09/splashdesignssingle1.jpg" border="0" alt="splash-designs-single" width="595" height="534" /></p>
<h3>Business Cards</h3>
<p>Before the website, as mentioned above, Alice commissioned her business cards with the idea that they should be “fun” and have some representation of a splash to accompany her business’ name. Sure, we could have done a traditional paint splat, but that wouldn’t fit Alice’s larger than life personality. During an in-person consultation, we came up with a conceptual “splash” that does bring in some specks of a normal paint splash, but adds so much more with swirls and modern flourishes.</p>
<p>The end result is a card designed in Adobe InDesign CS3 for traditional one-color printing. For her first round, Alice chose to use a lively aqua-cyan ink (which ties into the color of her website background), and they look fabulous printed on a double-sided glossy card! She really likes the fact that as the blue cards begin to run out, or if she’s ready for a quick change, she can just have another batch printed in another color to keep things nice and fresh.</p>
<p align="center"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" title="splashdesigns_card1" src="http://www.studiochris.us/blog/wp-content/uploads/2008/09/splashdesigns-card1.jpg" border="0" alt="splashdesigns_card1" width="387" height="222" /></p>
<p align="center">&uarr; Logo Side | Information Side &darr;</p>
<p align="center"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" title="splashdesigns_card2" src="http://www.studiochris.us/blog/wp-content/uploads/2008/09/splashdesigns-card2.jpg" border="0" alt="splashdesigns_card2" width="387" height="222" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2008/client-website-launch-splash-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client Website Launch: MarilynSholin.com</title>
		<link>http://www.studiochris.us/2008/client-website-launch-marilynsholincom/</link>
		<comments>http://www.studiochris.us/2008/client-website-launch-marilynsholincom/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 12:00:00 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[clients]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/archive/2008/client-website-launch-marilynsholincom/</guid>
		<description><![CDATA[Marilyn Sholin, one of the Corel Painter Masters, has a new look and a new web presence at <a href="http://www.marilynsholin.com">MarilynSholin.com</a>. My first instinct was pink all over the place because Marilyn loves pink, but what did we come up with in the end?]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.marilynsholin.com"><img class="aligncenter" style="border: 0px none;" title="MarilynSholin.com" src="http://www.studiochris.us/blog/wp-content/uploads/2008/06/marilynsholin-com.jpg" border="0" alt="MarilynSholin.com" width="605" height="394" /></a></p>
<p>As all of you know by now, <a href="http://www.marilynsholin.com">Marilyn</a> and I work exceptionally well together, and as a result, we work together often. When Marilyn was ready to update her branding with a wonderful logo created by Charmaine Check at <a href="http://www.checkartstudio.com">Check Studio</a>, she came to me. The goal was for something refreshing, new and “Marilyn.” My first instinct was pink all over the place because Marilyn loves pink. It is a color that’s in all of her paintings, in every piece of marketing material I’ve seen from her, and of course the color she chooses to use as her daily skin color over at the <a href="http://www.digitalpaintingforum.com">Digital Painting Forum</a>.</p>
<p>The first concept for her site is the same as above, but only in a rich set of pink and burgundy. She loved it, but always having had pink as a central color, decided it was time for a little change, something fresh. We played around with color palettes from a paint catalog (color inspiration is everywhere) and chose to keep pink as a strong accent, but opted for the blue and teal for the base design’s background. To make it more “Marilyn,” we used one of her most popular paintings [Bourbon Balcony] for a splash of color in the header.</p>
<p>The result is a contemporary, layered design that meets all of the goals we set out to accomplish. Now if only she could slow down enough so we can sit down and finish filling in all the content! Not to worry though, we have it on our to-do lists [along with plans for more expansion]. An artist’s work is never done!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2008/client-website-launch-marilynsholincom/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Client Website Launch: Suzanne Clem-Wheeler</title>
		<link>http://www.studiochris.us/2008/client-website-launch-suzanne-clem-wheeler/</link>
		<comments>http://www.studiochris.us/2008/client-website-launch-suzanne-clem-wheeler/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 16:31:05 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[clients]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/blog/client-website-launch-suzanne-clem-wheeler/</guid>
		<description><![CDATA[Suzanne is a portrait artist from the Atlanta, GA area who uses modern digital tools to create one of a kind portraits for clients. I met Suzanne for the first time a few years ago at DigitalPaintingForum.com and over that bit of time, we&#8217;ve built an online friendship as well As a little bit of &#8230; <a href="http://www.studiochris.us/2008/client-website-launch-suzanne-clem-wheeler/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" border="0" alt="suzanneclemwheeler" src="http://www.studiochris.us/blog/wp-content/uploads/2008/04/suzanneclemwheeler.jpg" width="594" height="400" /></p>
<p><a href="http://www.suzanneclemwheeler.com">Suzanne</a> is a portrait artist from the Atlanta, GA area who uses modern digital tools to create one of a kind portraits for clients. I met Suzanne for the first time a few years ago at <a href="http://www.digitalpaintingforum.com">DigitalPaintingForum.com</a> and over that bit of time, we&#8217;ve built an online friendship as well </p>
<p>As a little bit of history for Suzanne&#8217;s site, a little over a year ago, Suzanne was one of Studio|chris&#8217; first clients. For the first iteration of her site, we worked together to create a static HTML site that effectively represented her brand; however, since it was all HTML updates were a little complicated.</p>
<p>Her host at that time offered a blog engine, so she did maintain a blog as well, but due to limitations set by the host, the look could not match her site. This wasn&#8217;t good from a branding standpoint because as her site visitors navigated around, if they clicked on her blog, they went from the richly colored, jewel-toned site to her blog which was tan and white. The blog, though on the same domain name, was like an entirely different planet from her main site. This can be confusing to users as they wonder if they&#8217;ve left the site they were viewing or not.</p>
<p>As a solution to those two problems, the new <a href="http://www.suzanneclemwheeler.com">SuzanneClemWheeler.com</a> now uses a customized WordPress-based system to manage her entire site, which makes her content simple to update and brings her blog into her site with a consistent look and feel. She decided to maintain the same look as her old site with a few minor changes, and it still works beautifully. With her new site in place, Suzanne is ready to take the world by storm with her portraits.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2008/client-website-launch-suzanne-clem-wheeler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ten Reader Submitted Questions About Blogging</title>
		<link>http://www.studiochris.us/2008/ten-reader-submitted-questions-about-blogging/</link>
		<comments>http://www.studiochris.us/2008/ten-reader-submitted-questions-about-blogging/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 23:48:20 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/blog/ten-reader-submitted-questions-about-blogging/</guid>
		<description><![CDATA[The following ten questions have been asked by Studio&#124;chris readers over the past few months. Blogger, Blogsome, Blogspot or WordPress.com? What is the difference in them? As professionals, the differences in the above do not matter because they all impose limitations on the type of content you can post without fear of your blog being &#8230; <a href="http://www.studiochris.us/2008/ten-reader-submitted-questions-about-blogging/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The following ten questions have been asked by Studio|chris readers over the past few months.
<p><b>Blogger, Blogsome, Blogspot or WordPress.com? What is the difference in them?</b>
<p>As professionals, the differences in the above do not matter because they all impose limitations on the type of content you can post without fear of your blog being deleted for misuse. As free blog hosts, the terms of all of these do not allow for selling work directly on your blog. The alternative is to use WordPress or any other blogging software installed on your own web server. This removes all the limitations, and you can use the software for absolutely anything you want to, including all of the features of the free blog hosts and adding in the ability to add plugins for more functionality, sell your work, and customize to your heart’s content!
<p><b>If I have a website, why do I need a blog too?</b>
<p>Blogs are constantly growing as a way to get the word out about your art and what you do. Businesses are taking advantage of this wave of popularity and are using blogs for a number of reasons. To name just a few: a blog can help add a personal side to your business which can help build customer relationships, improve the customer experience, help establish you as an expert in your field, open your site to new search engines, tap into a user base of billions of people, make regular search engines visit your site more often for updates, and give you an easy platform to publish content (even outside of the blog area!). Even with those few, having a blog is worth more than its virtual weight in gold!
<p><b>No one ever comments on my blog. Am I wasting my time?</b>
<p>Comments are only one part of a blog. Just because no one is commenting doesn’t mean people aren’t reading and taking notice. Regardless of comments, having a blog also opens up a whole new world of search engines – blog searches which may bring more visitors to your site and may help increase sales! As an artist, you should give as many people as possible the chance to see your work, even if they don’t make comments in the blog. </p>
<p><span id="more-217"></span></p>
<p><b>What is &#8220;hosting&#8221;?</b>
<p>Hosting is simply access to a web server that connects your website to the world wide web. A host will hold all of your website’s files, website software, images, email and more and make them accessible to users of the web. Without some sort of hosting, it is impossible to have a website or a blog. Some hosts are free, but generally place ads on your site, may not allow you to have your own domain name (both of which does not look very professional). Free hosts may also have extreme limits on the type of content that may be published. Look for a paid host that will allow you the flexibility to use your website to the highest potential in your marketing efforts.&nbsp;&nbsp;
<p><b>What is Windows Live Writer and why do I need it?</b>
<p>Windows Live Writer is a fully featured, free, blog publishing tool offered by Microsoft that allows offline blogging! If you’re ever in a situation where the internet isn’t available, but have a great idea for a blog post, fire up Windows Live Writer and write your blog post completely (or partially) and save a draft to your computer. When the internet becomes available, open the post and click one button to publish it to your blog instantly! Offline blogging isn’t the only plus though, it makes content publishing super easy! You can keep an unlimited number of drafts, add media, and more! Adobe Contribute CS3 is an alternative, though is not free software.
<p><b>Can I sell things from my blog?</b>
<p>As long as your blog isn’t hosted by one of the free blog providers that prohibit selling through its User Agreement, you can do absolutely anything you want with your blog. Selling can be accomplished through links to your own e-commerce site, PayPal buttons, or any method you choose.
<p><b>What are links and why do I need them on my blog?</b>
<p>Links are clickable hotspots on a website that transfer the user to a different website. You need them on your website because search engines, like human users, will follow links to help categorize your site, and as a result, your site may show up in search results. Links to your site on other sites are also important. They can help build credibility and give different users another opportunity to find your work.
<p><b>I have tons and tons of pictures on my blog and Google never lists me, why is that?</b>
<p>Search engine spiders are programmed to read text, not images. Make sure your blog includes text so that the search engines can actually read through your blog just as people would. Of course, do not stop posting your images along with the text. While search engines can’t see them, your human readers will still appreciate them!
<p><b>Does it matter if I have a MAC or PC to blog? Is one easier than the other?</b>
<p>MAC or PC, it doesn’t matter.&nbsp; Blogs are controlled through web interfaces, so they are exactly the same on both platforms!
<p><b>It would be so much easier if someone could set up my blog for me in person and teach me how to use it. I can&#8217;t understand all the information on the internet and need to shown. Are there any blogging classes I can take?</b>
<p><b></b>
<p>You’re in luck! Studio|chris offers complete blog setup and customization for your business needs using the WordPress platform all year round, taking away all of the frustration of having to learn how to do the technical setup and customization. From there, the platform is easy to use to control your entire website, even outside of the blog if you wish. Contact Chris for more details.</p>
<p>Also, later this year, Chris will be teaming up with Marilyn Sholin to give a wonderful blogging and online marketing workshops in Asheville, NC. If you&#8217;re interested in attending, contact Chris or Marilyn to be placed on the waiting list for the next one to be announced.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2008/ten-reader-submitted-questions-about-blogging/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Coming Soon: A Whole New Studio&#124;chris</title>
		<link>http://www.studiochris.us/2008/coming-soon-a-whole-new-studiochris/</link>
		<comments>http://www.studiochris.us/2008/coming-soon-a-whole-new-studiochris/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 23:22:26 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Site]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/blog/coming-soon-a-whole-new-studiochris/</guid>
		<description><![CDATA[After the last redesign, I never imagined yet another redesign so soon, but with a few comments from visitors, I have to agree that it is that time again. The new design is a huge update and puts the focus where it should be &#8212; the content! Here&#8217;s a sneak peek of the new design: &#8230; <a href="http://www.studiochris.us/2008/coming-soon-a-whole-new-studiochris/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After the last redesign, I never imagined  yet another redesign so soon, but with a few comments from visitors, I have to agree that it is that time again. The new design is a huge update and  puts the focus where it should be &#8212; the content! Here&#8217;s a sneak peek of the new design:</p>
<p align="center"><img src="http://www.studiochris.us/blog/wp-content/uploads/2008/01/studiochris-5panel.jpg" style="border: 0px none " alt="studiochris_5panel" border="0" height="358" width="470" /><br />
<font color="#c0c0c0">© 2008 · Studio|chris</font></p>
<p align="left">I don&#8217;t have a release date set, and likely won&#8217;t set one, so it&#8217;ll be a surprise when the new look pops up! This is a very exciting update here, and my thanks go out to those who have watched through the progress of and commented on the initial design on the <a href="http://www.digitalpaintingforum.com/">Digital Painting Forum</a> and <a href="http://www.paintertalk.net">Painter Talk</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2008/coming-soon-a-whole-new-studiochris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>


<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Database Caching 1/74 queries in 0.038 seconds using disk: basic
Object Caching 862/1036 objects using disk: basic

Served from: www.studiochris.us @ 2012-02-04 17:00:41 -->
