<?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>a blog by heather goff &#187; Web Design Resource</title>
	<atom:link href="http://goffgrafix.com/blog/index.php/category/web-design-resources/feed/" rel="self" type="application/rss+xml" />
	<link>http://goffgrafix.com/blog</link>
	<description>excerpts from my journey in website development and social media</description>
	<lastBuildDate>Wed, 01 Sep 2010 21:04:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>If your server sets the allow_url_fopen and allow_url_include PHP directives OFF</title>
		<link>http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/</link>
		<comments>http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 15:44:39 +0000</pubDate>
		<dc:creator>Heather Goff</dc:creator>
				<category><![CDATA[Web Design Resource]]></category>
		<category><![CDATA[useful info]]></category>

		<guid isPermaLink="false">http://goffgrafix.com/blog/?p=451</guid>
		<description><![CDATA[Here is some great geeky information given by network solutions customer service to one of my clients, who passed it on to me. Since my servers have similar security standards, I frequently refer to the code examples and solutions illustrated below.
For security reasons (to prevent “PHP include” hacker attacks),  some servers set the allow_url_fopen and [...]]]></description>
			<content:encoded><![CDATA[<p><em>Here is some great geeky information given by network solutions customer service to one of my clients, who passed it on to me. Since my servers have similar security standards, I frequently refer to the code examples and solutions illustrated below.</em></p>
<p>For security reasons (to prevent “PHP include” hacker attacks),  some servers set the allow_url_fopen and allow_url_include PHP directives to off. If you see errors similar to the following on your website, then your website (or software you have installed on your website) uses insecure PHP calls.</p>
<p><strong>Common Errors</strong></p>
<p>Warning: fopen() [function.fopen]: URL file-access is disabled in the server configuration in /……../ on line (..)</p>
<p>Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration in in /……../ on line (..)</p>
<p>Warning: include() [function.include]: URL file-access is disabled in the server configuration in /……../ on line (..)</p>
<p>Warning: getimagesize() [function.getimagesize]: URL file-access is disabled in the server configuration in in /……../ on line (..)</p>
<p>Warning: readfile() [function.readfile]: URL file-access is disabled in the server configuration in in /……../ on line (..)</p>
<p><strong>Solution</strong></p>
<p>WordPress / Joomla / Drupal Software: These applications do not use functions that require allow_url_fopen or allow_url_include to be turned on. However, certain third party plugins may require changes. If you see any of the errors above, try to isolate which plugin is causing the issue and replace it with an alternative plugin. You should also consider reporting the issue to the plugin developer so that they may fix it in an upcoming release. Alternatively, you can check out some of the examples below and attempt to fix the errors yourself.</p>
<p>Note: Do not attempt to fix issues yourself if you do not have prior software development experience. If the below does not make sense, you should consult with your web professional.</p>
<p>The errors above manifest themselves when your website is attempting to retrieve outside web URLs. The solution is to use the PHP Curl library to do so instead, which is more secure. How you use PHP ‘s Curl library to circumvent this issue depends on which warning you’ve received.</p>
<p><strong>Example 1: Warning: fopen() [function.fopen]:<br />
</strong><br />
$file = “http://news.google.com/news?ned=us&amp;topic=h&amp;output=rss”;</p>
<p>$xml_parser = xml_parser_create();<br />
xml_set_element_handler($xml_parser, &#8220;startElement&#8221;, &#8220;endElement&#8221;);<br />
xml_set_character_data_handler($xml_parser, &#8220;characterData&#8221;);</p>
<p>if (!($fp = fopen($file, &#8220;r&#8221;))) {<br />
die(&#8220;could not open XML input&#8221;);<br />
}</p>
<p>while ($data = fread($fp, 4096)) {<br />
if (!xml_parse($xml_parser, $data, feof($fp))) {<br />
die(sprintf(&#8220;XML error: %s at line %d&#8221;,<br />
xml_error_string(xml_get_error_code($xml_parser)),<br />
xml_get_current_line_number($xml_parser)));<br />
}<br />
}</p>
<p>In the above example, an attempt to open a Google RSS feed is being made. The fopen() call will fail because $file is an outside web site, and the rest of the code will not be executed. To properly load the RSS feed and parse, this snipit of code would need to be rewritten as follows:</p>
<p>$xml_parser = xml_parser_create();<br />
xml_set_element_handler($xml_parser, &#8220;startElement&#8221;, &#8220;endElement&#8221;);<br />
xml_set_character_data_handler($xml_parser, &#8220;characterData&#8221;);</p>
<p>$file = “http://news.google.com/news?ned=us&amp;topic=h&amp;output=rss”;</p>
<p>$ch = curl_init();<br />
curl_setopt($ch, CURLOPT_URL, $file);<br />
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);<br />
$xmldata = curl_exec($ch);<br />
curl_close($ch);</p>
<p>$xmldata = split(&#8220;\n&#8221;,$xmldata);</p>
<p>foreach ($xmldata as $data) {<br />
if (!xml_parse($xml_parser, $data)) {<br />
die(sprintf(&#8220;XML error: %s at line %d&#8221;,<br />
xml_error_string(xml_get_error_code($xml_parser)),<br />
xml_get_current_line_number($xml_parser)));<br />
}<br />
}</p>
<p><strong>Example 2: Warning: file_get_contents() [function.file-get-contents]:</strong></p>
<p>&lt;?php</p>
<p>$contents = file_get_contents(&#8216;http://www.cnn.com/&#8217;);</p>
<p>echo $contents;</p>
<p>?&gt;</p>
<p>In the above example, the file_get_contents function is used to retrieve the content of the CNN website. You can accomplish the same thing safely using CURL as follows:</p>
<p>&lt;?php</p>
<p>$ch = curl_init();<br />
curl_setopt ($ch, CURLOPT_URL, &#8216;http://www.cnn.com&#8217;);<br />
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);<br />
$contents = curl_exec($ch);<br />
curl_close($ch);</p>
<p>// display file<br />
echo $contents;<br />
?&gt;</p>
<p><strong>Example 3: Warning: include() [function.include]:</strong></p>
<p>Including files from web hosts is not allowed.</p>
<p>&lt;? php include(“http://www.example.com/new.php”); ?&gt;</p>
<p>If the file that you are trying to include is local, use relative paths instead , not the web URL. Otherwise, use the following:</p>
<p>&lt;?php</p>
<p>$ch = curl_init();<br />
curl_setopt ($ch, CURLOPT_URL, &#8216;http://www.example.com/mew.php&#8217;);<br />
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);<br />
$contents = curl_exec($ch);<br />
curl_close($ch);</p>
<p>// display file<br />
echo $file_contents;<br />
?&gt;</p>
<p><strong>Example 4: Warning: getimagesize() [function.getimagesize]:</strong></p>
<p>getimagesize() allows you to get the height, width and size of an image file. To use getimagesize() safely, CURL can be used to get the remote file, the data can be saved to a local temporary image file and getimagesize() can be used on the local version.</p>
<p>&lt;php</p>
<p>$filename = “http://www.example.com/example.jpg”;</p>
<p>$ch = curl_init();<br />
curl_setopt ($ch, CURLOPT_URL, $filename);<br />
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);</p>
<p>$contents = curl_exec($ch);<br />
curl_close($ch);</p>
<p>$new_image = ImageCreateFromString($contents);<br />
imagejpeg($new_image, &#8220;temp.jpg&#8221;,100);</p>
<p>$size = getimagesize(&#8220;temp.jpg&#8221;);</p>
<p>// width and height</p>
<p>$width = $size[0];<br />
$height = $size[1];</p>
<p><strong>Example 5: Warning: readfile() [function.readfile]:</strong></p>
<p>&lt;?php</p>
<p>$contents = readfile(&#8216;http://www.example.com/some.txt&#8217;);</p>
<p>echo $contents;</p>
<p>?&gt;</p>
<p>In the above example, the readfile function is used to retrieve the content of a remote text file. You can accomplish the same thing safely using CURL as follows:</p>
<p>&lt;?php</p>
<p>$ch = curl_init();<br />
curl_setopt ($ch, CURLOPT_URL, &#8216;http://www.example.com/some.txt&#8217;);<br />
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);<br />
$contents = curl_exec($ch);<br />
curl_close($ch);</p>
<p>// display file<br />
echo $contents;<br />
?&gt;</p>
<p>The above examples are not guaranteed to run without changes, they are strictly guidance to illustrate how to safely retrieve off-site content.</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;title=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;title=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;title=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF&amp;desc=Here%20is%20some%20great%20geeky%20information%20given%20by%20network%20solutions%20customer%20service%20to%20one%20of%20my%20clients%2C%20who%20passed%20it%20on%20to%20me.%20Since%20my%20servers%20have%20similar%20security%20standards%2C%20I%20frequently%20refer%20to%20the%20code%20examples%20and%20solutions%20illustrated%20below.%0D%0A%0D%0AFor%20security%20reasons%20%28to%20prevent%20%E2%80%9CPHP%20include" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;title=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;title=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;title=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF%5B..%5D+-+http://b2l.me/ubnb2+(via+@goffgrafix)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;bm_description=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;submitHeadline=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF&amp;submitSummary=Here%20is%20some%20great%20geeky%20information%20given%20by%20network%20solutions%20customer%20service%20to%20one%20of%20my%20clients%2C%20who%20passed%20it%20on%20to%20me.%20Since%20my%20servers%20have%20similar%20security%20standards%2C%20I%20frequently%20refer%20to%20the%20code%20examples%20and%20solutions%20illustrated%20below.%0D%0A%0D%0AFor%20security%20reasons%20%28to%20prevent%20%E2%80%9CPHP%20include&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;t=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;t=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22If%20your%20server%20sets%20the%20allow_url_fopen%20and%20allow_url_include%20PHP%20directives%20OFF%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22Here%20is%20some%20great%20geeky%20information%20given%20by%20network%20solutions%20customer%20service%20to%20one%20of%20my%20clients%2C%20who%20passed%20it%20on%20to%20me.%20Since%20my%20servers%20have%20similar%20security%20standards%2C%20I%20frequently%20refer%20to%20the%20code%20examples%20and%20solutions%20illustrated%20below.%0D%0A%0D%0AFor%20security%20reasons%20%28to%20prevent%20%E2%80%9CPHP%20include%22%0A%0AYou+can+read+the+full+article+here%3A%20http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF&amp;link=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;title=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF&amp;body=Here%20is%20some%20great%20geeky%20information%20given%20by%20network%20solutions%20customer%20service%20to%20one%20of%20my%20clients%2C%20who%20passed%20it%20on%20to%20me.%20Since%20my%20servers%20have%20similar%20security%20standards%2C%20I%20frequently%20refer%20to%20the%20code%20examples%20and%20solutions%20illustrated%20below.%0D%0A%0D%0AFor%20security%20reasons%20%28to%20prevent%20%E2%80%9CPHP%20include" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>four things to think about before you start your web design</title>
		<link>http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/</link>
		<comments>http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 16:16:13 +0000</pubDate>
		<dc:creator>Heather Goff</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Web Design Resource]]></category>

		<guid isPermaLink="false">http://goffgrafix.com/blog/?p=169</guid>
		<description><![CDATA[There are some important things to think about BEFORE you start the web design process. If you work these out before you begin, you might save yourself a lot of time and money.
1. FUNCTION
The first step to developing a web site is to figure out exactly what the function of that web site is going [...]]]></description>
			<content:encoded><![CDATA[<p>There are some important things to think about<strong> BEFORE </strong>you start the web design process. If you work these out before you begin, you might save yourself a lot of time and money.</p>
<p><strong>1. FUNCTION</strong><br />
The first step to developing a web site is to figure out exactly what the function of that web site is going to be. By function, I mean what do you want your website to do for you, and how effortlessly or intuitively will it do it. <strong>You need to have thought out what role you want your web site to play in your business in order to have a good design developed. </strong></p>
<p><em>For example: Is it to sell a product? Is it an on-line catalog? Does it tell a story? Is it an educational tool? Are you using it to support a cause? Is it entertainment? Do you just want it to answer a bunch of those questions that people are calling and pestering you with: hours you&#8217;re open, contact info etc.</em></p>
<p>A web site can have more than one function, however it&#8217;s critical to have a clear idea of what those are before you meet with your web designer.</p>
<p><strong>2. WHO IS YOUR TARGET AUDIENCE?</strong><br />
It is important to start researching <strong>who your target audience is</strong>, <strong>how they are going to find your site</strong>, <strong>what will make them stay on your site</strong>, and <strong>what you want them to do</strong> when they arrive at your site. The answers to these questions effect every step of the web design process.</p>
<p><strong>3. SEO and INFRASTRUCTURE</strong><br />
<a href="http://goffgrafix.com/resource-links.php?cat=30&amp;id2=11" target="_blank">Search engine optimization</a> plays a critical role in how the website will be designed and programmed. The names of files, the type of coding, the directory structure all add to that mysterious algorithm of how well your site will be indexed by the search engines.</p>
<p>Before programming a website, some research needs to be done on the keywords you would optimize with to attract your target audience.</p>
<p><em>I always design my content management systems so that my clients can update their content and meta tags, but beyond this, I can name the very files and directories that make up the site with keywords.</em></p>
<p>There are different options in how to code a website, and these will need to be discussed in relationship to search engine traffic (css, flash, html). Even if you opt to use a blog platform for your website,  the research you do on keywords will help you when you create your categories, tags and name your posts.</p>
<p><strong>4. USABILITY<br />
</strong>Marketing and usability should play a role in the website design and structure.</p>
<p><strong>The graphic design isn&#8217;t just pretty, it&#8217;s usability</strong>. It is important to be clear about what you want visitors to do when they get to your site. There is lots of research on what parts of a web page people look at the most, how colors effect behavior, how to write effective content for your target audience. The graphic design and layout of content is a balance between visual branding and persuasion. <a href=" great resources for usability in website design: http://www.useit.com/alertbox/" target="_blank">Here are some good resources on usability.</a></p>
<p><em>If you plan on working with an SEO specialist and/or marketing specialist, my advise is to have them meet with you and the website programmer/development team so that everyone is on the same page.</em></p>
<p><em>The last thing you want to do is build a website and <strong>after</strong> it is built, have an SEO person or marketing person tell you it <strong>needs to be redone</strong> in order to attract and keep visitors.</em></p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/&amp;title=four+things+to+think+about+before+you+start+your+web+design" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/&amp;title=four+things+to+think+about+before+you+start+your+web+design" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/&amp;title=four+things+to+think+about+before+you+start+your+web+design&amp;desc=There%20are%20some%20important%20things%20to%20think%20about%20BEFORE%20you%20start%20the%20web%20design%20process.%20If%20you%20work%20these%20out%20before%20you%20begin%2C%20you%20might%20save%20yourself%20a%20lot%20of%20time%20and%20money.%0D%0A%0D%0A1.%20FUNCTION%0D%0AThe%20first%20step%20to%20developing%20a%20web%20site%20is%20to%20figure%20out%20exactly%20what%20the%20function%20of%20that%20web%20site%20is%20goin" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/&amp;title=four+things+to+think+about+before+you+start+your+web+design" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/&amp;title=four+things+to+think+about+before+you+start+your+web+design" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/&amp;title=four+things+to+think+about+before+you+start+your+web+design" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=four+things+to+think+about+before+you+start+your+web+design+-+http://b2l.me/uc5ha+(via+@goffgrafix)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/&amp;bm_description=four+things+to+think+about+before+you+start+your+web+design&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/&amp;submitHeadline=four+things+to+think+about+before+you+start+your+web+design&amp;submitSummary=There%20are%20some%20important%20things%20to%20think%20about%20BEFORE%20you%20start%20the%20web%20design%20process.%20If%20you%20work%20these%20out%20before%20you%20begin%2C%20you%20might%20save%20yourself%20a%20lot%20of%20time%20and%20money.%0D%0A%0D%0A1.%20FUNCTION%0D%0AThe%20first%20step%20to%20developing%20a%20web%20site%20is%20to%20figure%20out%20exactly%20what%20the%20function%20of%20that%20web%20site%20is%20goin&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/&amp;t=four+things+to+think+about+before+you+start+your+web+design" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/&amp;t=four+things+to+think+about+before+you+start+your+web+design" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22four%20things%20to%20think%20about%20before%20you%20start%20your%20web%20design%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22There%20are%20some%20important%20things%20to%20think%20about%20BEFORE%20you%20start%20the%20web%20design%20process.%20If%20you%20work%20these%20out%20before%20you%20begin%2C%20you%20might%20save%20yourself%20a%20lot%20of%20time%20and%20money.%0D%0A%0D%0A1.%20FUNCTION%0D%0AThe%20first%20step%20to%20developing%20a%20web%20site%20is%20to%20figure%20out%20exactly%20what%20the%20function%20of%20that%20web%20site%20is%20goin%22%0A%0AYou+can+read+the+full+article+here%3A%20http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=four+things+to+think+about+before+you+start+your+web+design&amp;link=http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/&amp;title=four+things+to+think+about+before+you+start+your+web+design&amp;body=There%20are%20some%20important%20things%20to%20think%20about%20BEFORE%20you%20start%20the%20web%20design%20process.%20If%20you%20work%20these%20out%20before%20you%20begin%2C%20you%20might%20save%20yourself%20a%20lot%20of%20time%20and%20money.%0D%0A%0D%0A1.%20FUNCTION%0D%0AThe%20first%20step%20to%20developing%20a%20web%20site%20is%20to%20figure%20out%20exactly%20what%20the%20function%20of%20that%20web%20site%20is%20goin" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://goffgrafix.com/blog/index.php/2009/02/things-to-think-about-before-you-start-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>google analytics and referring sites &#8211; where to place your advertising dollars</title>
		<link>http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/</link>
		<comments>http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 03:22:19 +0000</pubDate>
		<dc:creator>Heather Goff</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Web Design Resource]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google analytics]]></category>

		<guid isPermaLink="false">http://goffgrafix.com/blog/?p=160</guid>
		<description><![CDATA[I encourage all of my clients to sign up for google analytics. It is free. It is easy to install on your website or blog, and it gives incredibly useful information about your website traffic.
Everybody is tightening their budgets right now, and where to place your online advertising dollars is a big question. Not only [...]]]></description>
			<content:encoded><![CDATA[<p>I encourage all of my clients to sign up for google analytics. It is free. It is easy to install on your website or blog, and it gives incredibly useful information about your website traffic.</p>
<p>Everybody is tightening their budgets right now, and where to place your online advertising dollars is a big question. Not only does google analytics let you see which websites are sending traffic to your website, it lets you search those statistics.</p>
<p>Today one of my online advertising links was up for renewal. I thought to myself, before I spend this money, I want to see if this site is actually directing visitors to me. I logged into google analytics. I clicked on the date range and set it from January 1st, 2008 until the present. I clicked on &#8220;Traffic Source&#8221; then clicked on &#8220;Referring Sites&#8221;, and it pulled up a graph with the site usage starting with the sites that refer the most traffic &#8211; but here is the secret weapon &#8211; at the bottom of that graph is a search field.</p>
<p><img class="alignnone size-full wp-image-161" title="google_analytics1" src="http://goffgrafix.com/blog/wp-content/uploads/2009/02/google_analytics1.jpg" alt="google_analytics1" width="374" height="35" /></p>
<p>I typed in the name of the website that was selling me the link to see exactly how much traffic they had sent me last year. I found out the exact number of visits to my website in one year resulted from that advertising. What a powerful tool this is! Now, with the help of google analytics, I can make really informed decisions, very easily, about what sites are sending me clients and which aren&#8217;t. Being able to search the data for the specific website address is an incredible feature. It saved me so much time. With just two clicks, I could see exactly how much traffic a given site was sending me within a specific date range.</p>
<p>If you don&#8217;t have a google analytics account, and you run a blog or website, I encourage you to sign up for one today. Being able to view referring sites is the tiniest fraction of the useful information that it will supply to you concerning the visitors to your website, where they come from, how they navigate your site, which pages they land on and how long they stay. Even if you&#8217;re not going to look at the data right now &#8211; sign up and start compiling the data. Just go to <a href="http://google.com/analytics" target="_blank">http://google.com/analytics</a></p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/&amp;title=google+analytics+and+referring+sites+-+where+to+place+your+advertising+dollars" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/&amp;title=google+analytics+and+referring+sites+-+where+to+place+your+advertising+dollars" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/&amp;title=google+analytics+and+referring+sites+-+where+to+place+your+advertising+dollars&amp;desc=I%20encourage%20all%20of%20my%20clients%20to%20sign%20up%20for%20google%20analytics.%20It%20is%20free.%20It%20is%20easy%20to%20install%20on%20your%20website%20or%20blog%2C%20and%20it%20gives%20incredibly%20useful%20information%20about%20your%20website%20traffic.%0D%0A%0D%0AEverybody%20is%20tightening%20their%20budgets%20right%20now%2C%20and%20where%20to%20place%20your%20online%20advertising%20dollars%20is%20a" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/&amp;title=google+analytics+and+referring+sites+-+where+to+place+your+advertising+dollars" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/&amp;title=google+analytics+and+referring+sites+-+where+to+place+your+advertising+dollars" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/&amp;title=google+analytics+and+referring+sites+-+where+to+place+your+advertising+dollars" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=google+analytics+and+referring+sites+-+where+to+place+your+advertising+dollars+-+http://b2l.me/uc5gf+(via+@goffgrafix)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/&amp;bm_description=google+analytics+and+referring+sites+-+where+to+place+your+advertising+dollars&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/&amp;submitHeadline=google+analytics+and+referring+sites+-+where+to+place+your+advertising+dollars&amp;submitSummary=I%20encourage%20all%20of%20my%20clients%20to%20sign%20up%20for%20google%20analytics.%20It%20is%20free.%20It%20is%20easy%20to%20install%20on%20your%20website%20or%20blog%2C%20and%20it%20gives%20incredibly%20useful%20information%20about%20your%20website%20traffic.%0D%0A%0D%0AEverybody%20is%20tightening%20their%20budgets%20right%20now%2C%20and%20where%20to%20place%20your%20online%20advertising%20dollars%20is%20a&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/&amp;t=google+analytics+and+referring+sites+-+where+to+place+your+advertising+dollars" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/&amp;t=google+analytics+and+referring+sites+-+where+to+place+your+advertising+dollars" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22google%20analytics%20and%20referring%20sites%20-%20where%20to%20place%20your%20advertising%20dollars%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22I%20encourage%20all%20of%20my%20clients%20to%20sign%20up%20for%20google%20analytics.%20It%20is%20free.%20It%20is%20easy%20to%20install%20on%20your%20website%20or%20blog%2C%20and%20it%20gives%20incredibly%20useful%20information%20about%20your%20website%20traffic.%0D%0A%0D%0AEverybody%20is%20tightening%20their%20budgets%20right%20now%2C%20and%20where%20to%20place%20your%20online%20advertising%20dollars%20is%20a%22%0A%0AYou+can+read+the+full+article+here%3A%20http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=google+analytics+and+referring+sites+-+where+to+place+your+advertising+dollars&amp;link=http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/&amp;title=google+analytics+and+referring+sites+-+where+to+place+your+advertising+dollars&amp;body=I%20encourage%20all%20of%20my%20clients%20to%20sign%20up%20for%20google%20analytics.%20It%20is%20free.%20It%20is%20easy%20to%20install%20on%20your%20website%20or%20blog%2C%20and%20it%20gives%20incredibly%20useful%20information%20about%20your%20website%20traffic.%0D%0A%0D%0AEverybody%20is%20tightening%20their%20budgets%20right%20now%2C%20and%20where%20to%20place%20your%20online%20advertising%20dollars%20is%20a" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://goffgrafix.com/blog/index.php/2009/02/google-analytics-and-referring-sites-where-to-place-your-advertising-dollars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>preparing images for the web using photoshop elements.</title>
		<link>http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/</link>
		<comments>http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 01:48:54 +0000</pubDate>
		<dc:creator>Heather Goff</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design Resource]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://goffgrafix.com/blog/?p=85</guid>
		<description><![CDATA[Now that you have the ability to upload images to your website, do you have questions on how to prepare them for the web? I have put together some tutorials using adobe photoshop elements which show the how to of resizing, cropping and some quick color correction. I have chosen adobe photoshop elements because it [...]]]></description>
			<content:encoded><![CDATA[<p>Now that you have the ability to upload images to your website, do you have questions on how to prepare them for the web? I have put together some tutorials using adobe photoshop elements which show the how to of resizing, cropping and some quick color correction. I have chosen adobe photoshop elements because it is a relatively inexpensive software ($80) and it is cross platform.</p>
<ul class="list1">
<li><a href="http://www.adobe.com/products/photoshopelwin/" target="blank"><strong>Adobe Photoshop Elements for Windows</strong></a> &#8211; My image editing tutorial use adobe photoshop elements. This is a relatively inexpensive software that allows you to prepare images for the web. It is a paired down version of Adobe Photoshop (which costs over $600) adobe photoshop elements runs around $80 depending where you purchase it.</li>
<li><a href="http://www.adobe.com/products/photoshopelmac/" target="blank"><strong>Adobe Photoshop Elements for Mac</strong></a> &#8211; My image editing tutorial use adobe photoshop elements. This is a relatively inexpensive software that allows you to prepare images for the web. It is a paired down version of Adobe Photoshop (which costs over $600) adobe photoshop elements runs arounc $80 depending where you purchase it, and is cross platform.</li>
<li><a href="http://www.goffgrafix.com/resource-links.php?cat=39&amp;id2=15#" target="blank"><strong>Resizing and Cropping Images</strong></a> &#8211; This tutorial walks you through how to resize and crop images in adobe photoshop elements &#8211; to prepare them for your content management interface.<br />
<a href="http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/"><em>Click here to view the embedded video.</em></a></li>
<li><a href="http://www.goffgrafix.com/resource-links.php?cat=39&amp;id2=15#" target="blank"><strong>Selecting and changing line images</strong></a> &#8211; This tutorial shows you how to remove a line image from its background in Photoshop Elements. This is useful if you have a line drawing or signature that you want to upload to your website and have it match your website&#8217;s color.<br />
<a href="http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/"><em>Click here to view the embedded video.</em></a></li>
<li><a href="http://www.goffgrafix.com/graphictips.php" target="blank"><strong>Preparing Graphics for the web</strong></a> &#8211; An article with tips on preparing your graphics for the web. It addresses the issue of why photographs uploaded to the web might appear less vibrant than on your computer, how to compose portraits and tips on taking product shots.</li>
<li><a href="http://www.goffgrafix.com/resource-links.php?cat=39&amp;id2=15#" target="blank"><strong>Quick color correction using levels</strong></a> &#8211; Do your photos need a little color enhancement before you post them to the web? Here is a quick tutorial on how to easily polish up those images, bringing up or down the lights, the darks and adjusting colors.<br />
<a href="http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/"><em>Click here to view the embedded video.</em></a></li>
<li><a href="http://www.goffgrafix.com/resource-links.php?cat=39&amp;id2=15#" target="blank"><strong>Cutting the background away from an image</strong></a> &#8211; This Tutorial takes you through removing the background from an image in photoshop elements, leaving you with the object in the image surrounded by a transparent field.<br />
<a href="http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/"><em>Click here to view the embedded video.</em></a></li>
</ul>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/&amp;title=preparing+images+for+the+web+using+photoshop+elements." rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/&amp;title=preparing+images+for+the+web+using+photoshop+elements." rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/&amp;title=preparing+images+for+the+web+using+photoshop+elements.&amp;desc=Now%20that%20you%20have%20the%20ability%20to%20upload%20images%20to%20your%20website%2C%20do%20you%20have%20questions%20on%20how%20to%20prepare%20them%20for%20the%20web%3F%20I%20have%20put%20together%20some%20tutorials%20using%20adobe%20photoshop%20elements%20which%20show%20the%20how%20to%20of%20resizing%2C%20cropping%20and%20some%20quick%20color%20correction.%20I%20have%20chosen%20adobe%20photoshop%20eleme" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/&amp;title=preparing+images+for+the+web+using+photoshop+elements." rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/&amp;title=preparing+images+for+the+web+using+photoshop+elements." rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/&amp;title=preparing+images+for+the+web+using+photoshop+elements." rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=preparing+images+for+the+web+using+photoshop+elements.+-+http://b2l.me/uc6un+(via+@goffgrafix)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/&amp;bm_description=preparing+images+for+the+web+using+photoshop+elements.&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/&amp;submitHeadline=preparing+images+for+the+web+using+photoshop+elements.&amp;submitSummary=Now%20that%20you%20have%20the%20ability%20to%20upload%20images%20to%20your%20website%2C%20do%20you%20have%20questions%20on%20how%20to%20prepare%20them%20for%20the%20web%3F%20I%20have%20put%20together%20some%20tutorials%20using%20adobe%20photoshop%20elements%20which%20show%20the%20how%20to%20of%20resizing%2C%20cropping%20and%20some%20quick%20color%20correction.%20I%20have%20chosen%20adobe%20photoshop%20eleme&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/&amp;t=preparing+images+for+the+web+using+photoshop+elements." rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/&amp;t=preparing+images+for+the+web+using+photoshop+elements." rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22preparing%20images%20for%20the%20web%20using%20photoshop%20elements.%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22Now%20that%20you%20have%20the%20ability%20to%20upload%20images%20to%20your%20website%2C%20do%20you%20have%20questions%20on%20how%20to%20prepare%20them%20for%20the%20web%3F%20I%20have%20put%20together%20some%20tutorials%20using%20adobe%20photoshop%20elements%20which%20show%20the%20how%20to%20of%20resizing%2C%20cropping%20and%20some%20quick%20color%20correction.%20I%20have%20chosen%20adobe%20photoshop%20eleme%22%0A%0AYou+can+read+the+full+article+here%3A%20http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=preparing+images+for+the+web+using+photoshop+elements.&amp;link=http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/&amp;title=preparing+images+for+the+web+using+photoshop+elements.&amp;body=Now%20that%20you%20have%20the%20ability%20to%20upload%20images%20to%20your%20website%2C%20do%20you%20have%20questions%20on%20how%20to%20prepare%20them%20for%20the%20web%3F%20I%20have%20put%20together%20some%20tutorials%20using%20adobe%20photoshop%20elements%20which%20show%20the%20how%20to%20of%20resizing%2C%20cropping%20and%20some%20quick%20color%20correction.%20I%20have%20chosen%20adobe%20photoshop%20eleme" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://goffgrafix.com/blog/index.php/2009/01/preparing-images-for-the-web-using-photoshop-elements/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Protected: password protecting blog posts (password is password)</title>
		<link>http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/</link>
		<comments>http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 14:38:35 +0000</pubDate>
		<dc:creator>Heather Goff</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design Resource]]></category>

		<guid isPermaLink="false">http://goffgrafix.com/blog/?p=66</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://goffgrafix.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-66">Password:<br />
<input name="post_password" id="pwbox-66" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/&amp;title=password+protecting+blog+posts+%28password+is+password%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/&amp;title=password+protecting+blog+posts+%28password+is+password%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/&amp;title=password+protecting+blog+posts+%28password+is+password%29&amp;desc=%0A%09This%20post%20is%20password%20protected.%20To%20view%20it%20please%20enter%20your%20password%20below%3A%0A%09Password%3A%20%20%0A%09%0A%09" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/&amp;title=password+protecting+blog+posts+%28password+is+password%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/&amp;title=password+protecting+blog+posts+%28password+is+password%29" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/&amp;title=password+protecting+blog+posts+%28password+is+password%29" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=password+protecting+blog+posts+%28password+is+password%29+-+http://b2l.me/uc6up+(via+@goffgrafix)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/&amp;bm_description=password+protecting+blog+posts+%28password+is+password%29&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/&amp;submitHeadline=password+protecting+blog+posts+%28password+is+password%29&amp;submitSummary=%0A%09This%20post%20is%20password%20protected.%20To%20view%20it%20please%20enter%20your%20password%20below%3A%0A%09Password%3A%20%20%0A%09%0A%09&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/&amp;t=password+protecting+blog+posts+%28password+is+password%29" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/&amp;t=password+protecting+blog+posts+%28password+is+password%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22password%20protecting%20blog%20posts%20%28password%20is%20password%29%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22%0A%09This%20post%20is%20password%20protected.%20To%20view%20it%20please%20enter%20your%20password%20below%3A%0A%09Password%3A%20%20%0A%09%0A%09%22%0A%0AYou+can+read+the+full+article+here%3A%20http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=password+protecting+blog+posts+%28password+is+password%29&amp;link=http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/&amp;title=password+protecting+blog+posts+%28password+is+password%29&amp;body=%0A%09This%20post%20is%20password%20protected.%20To%20view%20it%20please%20enter%20your%20password%20below%3A%0A%09Password%3A%20%20%0A%09%0A%09" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://goffgrafix.com/blog/index.php/2009/01/password-protecting-blog-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with slideshowpro in wordpress.</title>
		<link>http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/</link>
		<comments>http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 02:19:30 +0000</pubDate>
		<dc:creator>Heather Goff</dc:creator>
				<category><![CDATA[Adding slideshows to blogs]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design Resource]]></category>
		<category><![CDATA[slideshowpro]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://goffgrafix.com/blog/?p=14</guid>
		<description><![CDATA[Today I had the good fortune of speaking with a new designer/photographer/videographer  that I will be collaborating on a website with. I mean &#8220;new&#8221; in that this will be the first time I have worked with them. They introduced me to slideshowpro, and we want to create a wordpress website that embeds slideshowpro photo and [...]]]></description>
			<content:encoded><![CDATA[<p>Today I had the good fortune of speaking with a new designer/photographer/videographer  that I will be collaborating on a website with. I mean &#8220;new&#8221; in that this will be the first time I have worked with them. They introduced me to slideshowpro, and we want to create a wordpress website that embeds <a href="http://slideshowpro.net/" target="_blank">slideshowpro</a> photo and video slide shows.</p>
<p>I am always fired up when I learn about a new tool, and slideshowpro is really exciting. I immediately purchased it so that I could play with it.</p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_slideshowprotest_97188065"
			class="flashmovie"
			width="550"
			height="400">
	<param name="movie" value="http://goffgrafix.com/slideshowprotest.swf" />
	<param name="base" value="." />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://goffgrafix.com/slideshowprotest.swf"
			name="fm_slideshowprotest_97188065"
			width="550"
			height="400">
		<param name="base" value="." />
	<!--<![endif]-->
		<a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>I purchased the slideshowpro for flash ($39), and the CMS slideshowpro director ($39). My server will work with slideshowpro director, if any of my clients are interested, however, if you are going to be making tons of video slide shows, I recommend the <a href="http://slideshowpro.net/products/slideshowpro_director/slideshowpro_director_hosting" target="_blank">slideshowpro hosting for the CMS</a>, because you won&#8217;t have to worry about bandwidth, and it is really reasonable.</p>
<ol>
<li>Step one in getting slideshowpro up and running on my wordpress blog was to install the director on my website server. This was pretty straight forward.  You ftp the files to the server, and then browse to them. The installation process through the web browser walks  you through any permissions that you need to update. It will prompt you to manually create a .xml file called crossdomain.xml, it will tell you exactly what to copy and paste into that file,  and upload that to your root directory, which I did with bbedit.</li>
<li>Step two was to create an album in the director and upload photos to it. I uploaded pictures from a walk I took on a landbank trail in Chilmark, just two days ago. I then copied the path generated to that albums .xml file to paste into the flash file parameters.</li>
<li>Step three was to install the slideshowpro extension into my flash cs3 and then create a new flash file.</li>
<li>Step four was to plug in the path to the album&#8217;s .xml file generated by the album, and also to choose that the .xml file is a director generated file, publish the .swf file and ftp it to my server.</li>
<li>Step five was to install the plug-in <a href="http://kimili.com/journal/kimili-flash-embed-20-preview-the-wordpress-edition" target="_blank">Kimili flash embed tag generator</a> into my wordpress blog, and click on its icon to add the new .swf files path, size etc.   I made sure to add the base=&#8221;.&#8221; parameter to the embed tag. I found the instructions <a href="http://forums.slideshowpro.net/viewtopic.php?pid=44093#p44093" target="_blank">here</a>.</li>
<li>The results of my efforts are at the top of the page.</li>
</ol>
<p>I am pretty excited to learn more about the slideshowpro customization and parameters.</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/&amp;title=Working+with+slideshowpro+in+wordpress." rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/&amp;title=Working+with+slideshowpro+in+wordpress." rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/&amp;title=Working+with+slideshowpro+in+wordpress.&amp;desc=Today%20I%20had%20the%20good%20fortune%20of%20speaking%20with%20a%20new%20designer%2Fphotographer%2Fvideographer%C2%A0%20that%20I%20will%20be%20collaborating%20on%20a%20website%20with.%20I%20mean%20%22new%22%20in%20that%20this%20will%20be%20the%20first%20time%20I%20have%20worked%20with%20them.%20They%20introduced%20me%20to%20slideshowpro%2C%20and%20we%20want%20to%20create%20a%20wordpress%20website%20that%20embeds" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/&amp;title=Working+with+slideshowpro+in+wordpress." rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/&amp;title=Working+with+slideshowpro+in+wordpress." rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/&amp;title=Working+with+slideshowpro+in+wordpress." rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Working+with+slideshowpro+in+wordpress.+-+http://b2l.me/uc6uq+(via+@goffgrafix)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/&amp;bm_description=Working+with+slideshowpro+in+wordpress.&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/&amp;submitHeadline=Working+with+slideshowpro+in+wordpress.&amp;submitSummary=Today%20I%20had%20the%20good%20fortune%20of%20speaking%20with%20a%20new%20designer%2Fphotographer%2Fvideographer%C2%A0%20that%20I%20will%20be%20collaborating%20on%20a%20website%20with.%20I%20mean%20%22new%22%20in%20that%20this%20will%20be%20the%20first%20time%20I%20have%20worked%20with%20them.%20They%20introduced%20me%20to%20slideshowpro%2C%20and%20we%20want%20to%20create%20a%20wordpress%20website%20that%20embeds&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/&amp;t=Working+with+slideshowpro+in+wordpress." rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/&amp;t=Working+with+slideshowpro+in+wordpress." rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Working%20with%20slideshowpro%20in%20wordpress.%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22Today%20I%20had%20the%20good%20fortune%20of%20speaking%20with%20a%20new%20designer%2Fphotographer%2Fvideographer%C2%A0%20that%20I%20will%20be%20collaborating%20on%20a%20website%20with.%20I%20mean%20%22new%22%20in%20that%20this%20will%20be%20the%20first%20time%20I%20have%20worked%20with%20them.%20They%20introduced%20me%20to%20slideshowpro%2C%20and%20we%20want%20to%20create%20a%20wordpress%20website%20that%20embeds%22%0A%0AYou+can+read+the+full+article+here%3A%20http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Working+with+slideshowpro+in+wordpress.&amp;link=http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/&amp;title=Working+with+slideshowpro+in+wordpress.&amp;body=Today%20I%20had%20the%20good%20fortune%20of%20speaking%20with%20a%20new%20designer%2Fphotographer%2Fvideographer%C2%A0%20that%20I%20will%20be%20collaborating%20on%20a%20website%20with.%20I%20mean%20%22new%22%20in%20that%20this%20will%20be%20the%20first%20time%20I%20have%20worked%20with%20them.%20They%20introduced%20me%20to%20slideshowpro%2C%20and%20we%20want%20to%20create%20a%20wordpress%20website%20that%20embeds" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://goffgrafix.com/blog/index.php/2009/01/working-with-slideshowpro-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Social Media Telesummit day 3 &#8211; Andy Wibbels Venn Diagram for marketing</title>
		<link>http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/</link>
		<comments>http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 20:51:02 +0000</pubDate>
		<dc:creator>Heather Goff</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media for Marketing]]></category>
		<category><![CDATA[Web Design Resource]]></category>
		<category><![CDATA[Andy Wibbels]]></category>
		<category><![CDATA[smt2008]]></category>
		<category><![CDATA[social media for business]]></category>
		<category><![CDATA[social media telesummit]]></category>
		<category><![CDATA[social media training]]></category>
		<category><![CDATA[why people buy]]></category>
		<category><![CDATA[Wibbels VENN Diagram]]></category>

		<guid isPermaLink="false">http://goffgrafix.com/blog/?p=8</guid>
		<description><![CDATA[I want to share with you, my clients, some fantastic marketing tips  from Andy Wibbels&#8217; presentation Friday night at day 3 of the Social Media Telesummit hosted by Leesa Barnes. The hour presentation was titled:
Time, Money, Sex (and Salvation): How to Turbo Charge Your Blog Posts, Podcasts and Sales Copy for Maximum Traffic &#38; [...]]]></description>
			<content:encoded><![CDATA[<p>I want to share with you, my clients, some fantastic marketing tips  from Andy Wibbels&#8217; presentation Friday night at day 3 of the <a href="http://www.socialmediatelesummit.com/blog/" target="_blank" title="Social Media Telesummit hosted by Leesa Barnes">Social Media Telesummit hosted by Leesa Barnes</a>. The hour presentation was titled:</p>
<p><b>Time, Money, Sex (and Salvation): How to Turbo Charge Your Blog Posts, Podcasts and Sales Copy for Maximum Traffic &amp; Greater Impact with <a href="http://andywibbels.com" title="Andy Wibbels" target="_blank">Andy Wibbels</a></b></p>
<p>(On a side note, Andy Wibbels is a very entertaining speaker, so if you ever have a change to listen to him &#8211; to a podcast, or to attend a teleseminar that he is participating in &#8211; I encourage you to do so.)</p>
<p>Andy Wibbels has a background in theater, and because of this he sees the world from a narrative perspective. He sees the act of shopping as a giant screen play, and has spent years studying the characters involved and analyzing what motivates them.</p>
<p>Wibbels started by saying that we tend to focus on &#8220;why should people buy from me&#8221; from the perspective of ourselves &#8211; because they like me, because I&#8217;m credible, because of my reputation. That may be true, but in order to successfully market, he says that we need to understand the underlying motivation behind their purchases &#8211; we need to see into the DNA of their psyche.  Shoppers won&#8217;t  buy from us <i>only</i> because they like us, they will buy from us because something in their emotional psyche is urging them to buy our product, and that that underlying urge is wrapped up in self preservation.</p>
<p>Andy Wibbels pointed out that we buy things (and he is not talking about essentials, like eggs and milk and toilet paper, he is talking about the extras) &#8211;  <b>we buy based on emotions and then justify it.  </b></p>
<p>Andy asks us to look at the stories around us,  and at how things come out in a narrative structure. In every a story, movie, play or poem, he points out that  characters act when their self preservation is threatened. &#8220;Every movie, play, story or product is about the end of the world. &#8221;</p>
<p>According to Wibbels, you can translate that to the marketing world. If we have a perceived threat to the trajectory of our lives or our livelihood, if we, as consumers, feel threatened, then we act &#8211; AND to do so we must see the product or the service that we a compelled to buy  as the savior, the grail, the salvation. The product must be perceived as the life raft.</p>
<p>To better illustrate his philosophy, <a href="http://andywibbels.com" title="Andy Wibbels" target="_blank">Andy Wibbels</a> had us draw a Venn diagram.</p>
<div style="text-align:center;"><img src="http://goffgrafix.wordpress.com/files/2008/02/andy_wibbel_venn.jpg" alt="WHY WE BUY - VENN DIAGRAM BY ANDY WIBBEL" /></div>
<p align="left">Andy specifies that these are the main reasons why we buy things beyond our daily needs &#8211; (not toilet paper, oatmeal, cat litter).</p>
<p align="left"><b>TIME</b><br />
We want to save time &#8211; to use our time more wisely. Everybody is so busy, no one has time to do anything.</p>
<p align="left"> How does your product or service help people use their time more wisely? Does it free up time for them to do what they would rather do?</p>
<p align="left"><b>MONEY</b><br />
Everybody is broke.</p>
<p align="left">How can your product, service, ebook, teleseminar, phone call, magazine help people make money, make more money, or have them use their money more wisely</p>
<p align="left"><b>SEX</b><br />
Wibbels points out that our advertising is &#8220;soaked in sex, wreathed in sensuality and bathed in lust&#8221;.  He said that (and I paraphrase some of this) &#8220;Sex is one of the main reasons why we buy things &#8230; not talking about getting on &#8211; rather how does your product or service make people more attractive so that they can have more sex? How does it help people have more sex, better sex, more partners, better performance, more offers for sex.  The idea not just of sex as &#8216;get it on&#8217;, &#8216;get it together&#8217;, but performance and yourself as an attractive person&#8221;&#8230;<br />
&#8220;<b>to a business this translates to: search engine ranking, brand, visibility, how your business is perceived &#8211; your means, your products,  &#8211; the best description of social software is software that gets you laid.</b>&#8221;</p>
<p align="left">Andy Wibbels&#8217;s VENN diagram  maps out an easy way to talk about your products and services. This is a quick way to cook down what you do, and put your job description to 3 points.</p>
<ol>
<li>How do your products/services save time</li>
<li>How do your products/services save money</li>
<li>How do your products/services increase sex appeal, the attractiveness of your brand and visibility</li>
</ol>
<p align="left">According to Wibbels,  people are driven by emotional needs which are tied to our self preservation &#8211; &#8220;our need to spread our genes and our means.&#8221;  You can  answer their emotional reaction, justifying this NEED to buy with data: (your products saves time, money and increase a business&#8217;s sex appeal).</p>
<p><b>CONTROL</b><br />
At the center of Wibbels diagram is control.</p>
<p align="left"> &#8220;Who wants to be out of control?&#8221;, he asks, &#8221; Nobody! We all want control &#8230; every theme in every movie, song or play is about control&#8221;.</p>
<p>Ask yourself, how do your products and services help people take that control.<br />
YOUR MARKETING SCRIPT</p>
<p align="left">We must write our marketing material as if we were writing a screen play, (or a one act skit). We have analyzed why our hero is in pain and in need of help. We have scripted how our products and services can save the day!</p>
<p align="left">In writing this marketing script, Wibbels advises us to make sure we illustrate tangible benefits of the product or service that we are selling.  We need to be direct and exacting, to point out  specific benefits that people (our hero) can latch on to. Do not talk generalities, he says,  we are talking about the pain/discomfort that people are experiencing in their lives, and how our services can help.</p>
<p align="left">SALVATION</p>
<p align="left">Wibbels has an addition to his diagram. Off to the side, there is another reason why people do things &#8211; a dotted line not connected to the main circles. And that reason is salvation &#8211; some people do do what they do for salvation, divinity, to connect with a divine inside themselves&#8230;<br />
Salvation, he said,  is less about control and more about connection.</p>
<p align="left">TO SUM IT UP<br />
That is why we buy: time, money, sex, control, salvation</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/&amp;title=Social+Media+Telesummit+day+3+-+Andy+Wibbels+Venn+Diagram+for+marketing" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/&amp;title=Social+Media+Telesummit+day+3+-+Andy+Wibbels+Venn+Diagram+for+marketing" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/&amp;title=Social+Media+Telesummit+day+3+-+Andy+Wibbels+Venn+Diagram+for+marketing&amp;desc=I%20want%20to%20share%20with%20you%2C%20my%20clients%2C%20some%20fantastic%20marketing%20tips%20%20from%20Andy%20Wibbels%27%20presentation%20Friday%20night%20at%20day%203%20of%20the%20Social%20Media%20Telesummit%20hosted%20by%20Leesa%20Barnes.%20The%20hour%20presentation%20was%20titled%3A%0D%0A%0D%0ATime%2C%20Money%2C%20Sex%20%28and%20Salvation%29%3A%20How%20to%20Turbo%20Charge%20Your%20Blog%20Posts%2C%20Podcasts%20and%20S" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/&amp;title=Social+Media+Telesummit+day+3+-+Andy+Wibbels+Venn+Diagram+for+marketing" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/&amp;title=Social+Media+Telesummit+day+3+-+Andy+Wibbels+Venn+Diagram+for+marketing" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/&amp;title=Social+Media+Telesummit+day+3+-+Andy+Wibbels+Venn+Diagram+for+marketing" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Social+Media+Telesummit+day+3+-+Andy+Wibbels+Venn+Diagram+for+marketing+-+http://b2l.me/uc6ur+(via+@goffgrafix)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/&amp;bm_description=Social+Media+Telesummit+day+3+-+Andy+Wibbels+Venn+Diagram+for+marketing&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/&amp;submitHeadline=Social+Media+Telesummit+day+3+-+Andy+Wibbels+Venn+Diagram+for+marketing&amp;submitSummary=I%20want%20to%20share%20with%20you%2C%20my%20clients%2C%20some%20fantastic%20marketing%20tips%20%20from%20Andy%20Wibbels%27%20presentation%20Friday%20night%20at%20day%203%20of%20the%20Social%20Media%20Telesummit%20hosted%20by%20Leesa%20Barnes.%20The%20hour%20presentation%20was%20titled%3A%0D%0A%0D%0ATime%2C%20Money%2C%20Sex%20%28and%20Salvation%29%3A%20How%20to%20Turbo%20Charge%20Your%20Blog%20Posts%2C%20Podcasts%20and%20S&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/&amp;t=Social+Media+Telesummit+day+3+-+Andy+Wibbels+Venn+Diagram+for+marketing" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/&amp;t=Social+Media+Telesummit+day+3+-+Andy+Wibbels+Venn+Diagram+for+marketing" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Social%20Media%20Telesummit%20day%203%20-%20Andy%20Wibbels%20Venn%20Diagram%20for%20marketing%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22I%20want%20to%20share%20with%20you%2C%20my%20clients%2C%20some%20fantastic%20marketing%20tips%20%20from%20Andy%20Wibbels%27%20presentation%20Friday%20night%20at%20day%203%20of%20the%20Social%20Media%20Telesummit%20hosted%20by%20Leesa%20Barnes.%20The%20hour%20presentation%20was%20titled%3A%0D%0A%0D%0ATime%2C%20Money%2C%20Sex%20%28and%20Salvation%29%3A%20How%20to%20Turbo%20Charge%20Your%20Blog%20Posts%2C%20Podcasts%20and%20S%22%0A%0AYou+can+read+the+full+article+here%3A%20http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Social+Media+Telesummit+day+3+-+Andy+Wibbels+Venn+Diagram+for+marketing&amp;link=http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/&amp;title=Social+Media+Telesummit+day+3+-+Andy+Wibbels+Venn+Diagram+for+marketing&amp;body=I%20want%20to%20share%20with%20you%2C%20my%20clients%2C%20some%20fantastic%20marketing%20tips%20%20from%20Andy%20Wibbels%27%20presentation%20Friday%20night%20at%20day%203%20of%20the%20Social%20Media%20Telesummit%20hosted%20by%20Leesa%20Barnes.%20The%20hour%20presentation%20was%20titled%3A%0D%0A%0D%0ATime%2C%20Money%2C%20Sex%20%28and%20Salvation%29%3A%20How%20to%20Turbo%20Charge%20Your%20Blog%20Posts%2C%20Podcasts%20and%20S" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://goffgrafix.com/blog/index.php/2008/03/social-media-telesummit-day-3-andy-wibbels-venn-diagram-for-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webcams: an easy and inexpensive way to get a webcast up on your intuitive-website</title>
		<link>http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/</link>
		<comments>http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 20:16:11 +0000</pubDate>
		<dc:creator>Heather Goff</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design Resource]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://goffgrafix.com/blog/?p=3</guid>
		<description><![CDATA[These days many of us telecommute &#8211; we work from a home office, or we work from a location that is far, far away from our clients. Our clients and colleagues may know us as a voice on the phone, and an e-mail correspondent. A number of you, my goffgrafix.com and intuitive-websites.com clients, I have [...]]]></description>
			<content:encoded><![CDATA[<p>These days many of us telecommute &#8211; we work from a home office, or we work from a location that is far, far away from our clients. Our clients and colleagues may know us as a voice on the phone, and an e-mail correspondent. A number of you, my goffgrafix.com and intuitive-websites.com clients, I have never met face to face.</p>
<p>Putting a video on your website is a great way to form a personal connection with your website&#8217;s visitors and with your clients. And so, to practice what I preach, I have decided to experiment with different media so that I can teach you what I learn. With the content management systems that I have programmed for you all, adding a video to your website can be very easy and inexpensive &#8211; even free, if you already have a webcam.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="id" value="VideoPlayback" /><param name="src" value="http://video.google.com/googleplayer.swf?docid=-4656580617053465610&amp;hl=en&amp;fs=true" /><embed id="VideoPlayback" type="application/x-shockwave-flash" width="400" height="300" src="http://video.google.com/googleplayer.swf?docid=-4656580617053465610&amp;hl=en&amp;fs=true"></embed></object></p>
<p>For my first adventure into video recording, I purchased an inexpensive webcam from &lt;a href=&#8221;http://logitech.com&#8221; title=&#8221;Logitech.com&#8221; target=&#8221;_blank&#8221;&gt;http://logitech.com&lt;/a&gt;. This is a devise that plugs into the USB port of my computer. Now, when I launch my ichat program (I am on a mac), there is a little camera icon as opposed to a phone icon, and if I click on that camera icon,  on my computer screen, I can view what the camera is pointing to. You can use a webcam with skype and &lt;a href=&#8221;http://dashboard.aim.com/aim&#8221;&gt;aim&lt;/a&gt; as well. This logitech cam does not integrate with my iMovie software, however, it probably would integrate with movie editing software on a windows machine.</p>
<p>My webcam is perched on the top of my computer and is pointing at me. This was a bit of a shock at first, to tell you the truth. Working from a home office, I had become accustomed to being hidden, reclusive. How many of us who work at home, stumble from bed to our computers and check our email before even brushing our teeth in the morning? and before you know it, you are busy working away in your pajamas.  Using a webcam invites people into your private space. Now, all of you can see through this window on my computer, that my home office  is  cluttered, and that I work in an environment of creative chaos.</p>
<p>If you want a more formal and professional video presentation for your webpage, I suggest that you put some sort of screen or blank wall behind yourself.  However, a webcam is an informal tool at best.</p>
<p>I purchased a software from &lt;a href=&#8221;http://ecamm.com&#8221; target=&#8221;_blank&#8221;&gt;http://ecamm.com&lt;/a&gt; that records video conferencing, and I used that to record myself talking. I also experimented with using &lt;a href=&#8221;http://www.ambrosiasw.com/utilities/snapzprox/&#8221; target=&#8221;_blank&#8221;&gt;SnapZ Pro X software&lt;/a&gt; which can record my desktop. On a windows machine, I could use &lt;a href=&#8221;http://www.techsmith.com/camtasia.asp&#8221; target=&#8221;_blank&#8221;&gt;Camtasia Studio&lt;/a&gt; to record the video conference.</p>
<p>I did some quick editing of the recording in iMovie HD, and then uploaded it to google. If you are on a windows machine, you can edit with windows movie maker, a free software. Once uploaded, google generated the code that I needed to embed the video into my website.</p>
<p>This is a really easy way to make an informal video to put on your website.</p>
<p>Keep in mind that any video that you upload to google or youtube.com is going to be distributed throughout the internet &#8211; so use that to your advantage. Put your website address on your video. Introduce yourself and your services. Having your videos in the public domain can be a form of grass roots marketing, if done correctly.</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/&amp;title=Webcams%3A+an+easy+and+inexpensive+way+to+get+a+webcast+up+on+your+intuitive-website" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/&amp;title=Webcams%3A+an+easy+and+inexpensive+way+to+get+a+webcast+up+on+your+intuitive-website" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/&amp;title=Webcams%3A+an+easy+and+inexpensive+way+to+get+a+webcast+up+on+your+intuitive-website&amp;desc=These%20days%20many%20of%20us%20telecommute%20-%20we%20work%20from%20a%20home%20office%2C%20or%20we%20work%20from%20a%20location%20that%20is%20far%2C%20far%20away%20from%20our%20clients.%20Our%20clients%20and%20colleagues%20may%20know%20us%20as%20a%20voice%20on%20the%20phone%2C%20and%20an%20e-mail%20correspondent.%20A%20number%20of%20you%2C%20my%20goffgrafix.com%20and%20intuitive-websites.com%20clients%2C%20I%20hav" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/&amp;title=Webcams%3A+an+easy+and+inexpensive+way+to+get+a+webcast+up+on+your+intuitive-website" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/&amp;title=Webcams%3A+an+easy+and+inexpensive+way+to+get+a+webcast+up+on+your+intuitive-website" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/&amp;title=Webcams%3A+an+easy+and+inexpensive+way+to+get+a+webcast+up+on+your+intuitive-website" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Webcams%3A+an+easy+and+inexpensive+way+to+get+a+webcast+up+on+your+intuitive-websi%5B..%5D+-+http://b2l.me/uc6us+(via+@goffgrafix)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/&amp;bm_description=Webcams%3A+an+easy+and+inexpensive+way+to+get+a+webcast+up+on+your+intuitive-website&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/&amp;submitHeadline=Webcams%3A+an+easy+and+inexpensive+way+to+get+a+webcast+up+on+your+intuitive-website&amp;submitSummary=These%20days%20many%20of%20us%20telecommute%20-%20we%20work%20from%20a%20home%20office%2C%20or%20we%20work%20from%20a%20location%20that%20is%20far%2C%20far%20away%20from%20our%20clients.%20Our%20clients%20and%20colleagues%20may%20know%20us%20as%20a%20voice%20on%20the%20phone%2C%20and%20an%20e-mail%20correspondent.%20A%20number%20of%20you%2C%20my%20goffgrafix.com%20and%20intuitive-websites.com%20clients%2C%20I%20hav&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/&amp;t=Webcams%3A+an+easy+and+inexpensive+way+to+get+a+webcast+up+on+your+intuitive-website" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/&amp;t=Webcams%3A+an+easy+and+inexpensive+way+to+get+a+webcast+up+on+your+intuitive-website" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Webcams%3A%20an%20easy%20and%20inexpensive%20way%20to%20get%20a%20webcast%20up%20on%20your%20intuitive-website%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22These%20days%20many%20of%20us%20telecommute%20-%20we%20work%20from%20a%20home%20office%2C%20or%20we%20work%20from%20a%20location%20that%20is%20far%2C%20far%20away%20from%20our%20clients.%20Our%20clients%20and%20colleagues%20may%20know%20us%20as%20a%20voice%20on%20the%20phone%2C%20and%20an%20e-mail%20correspondent.%20A%20number%20of%20you%2C%20my%20goffgrafix.com%20and%20intuitive-websites.com%20clients%2C%20I%20hav%22%0A%0AYou+can+read+the+full+article+here%3A%20http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Webcams%3A+an+easy+and+inexpensive+way+to+get+a+webcast+up+on+your+intuitive-website&amp;link=http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/&amp;title=Webcams%3A+an+easy+and+inexpensive+way+to+get+a+webcast+up+on+your+intuitive-website&amp;body=These%20days%20many%20of%20us%20telecommute%20-%20we%20work%20from%20a%20home%20office%2C%20or%20we%20work%20from%20a%20location%20that%20is%20far%2C%20far%20away%20from%20our%20clients.%20Our%20clients%20and%20colleagues%20may%20know%20us%20as%20a%20voice%20on%20the%20phone%2C%20and%20an%20e-mail%20correspondent.%20A%20number%20of%20you%2C%20my%20goffgrafix.com%20and%20intuitive-websites.com%20clients%2C%20I%20hav" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://goffgrafix.com/blog/index.php/2008/03/webcams-an-easy-and-inexpensive-way-to-get-a-webcast-up-on-your-intuitive-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Media</title>
		<link>http://goffgrafix.com/blog/index.php/2008/02/social-media/</link>
		<comments>http://goffgrafix.com/blog/index.php/2008/02/social-media/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 20:28:39 +0000</pubDate>
		<dc:creator>Heather Goff</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media for Marketing]]></category>
		<category><![CDATA[Web Design Resource]]></category>

		<guid isPermaLink="false">http://goffgrafix.com/blog/?p=5</guid>
		<description><![CDATA[Social Media is the new buzz word hitting the internet, though it has been around for years. It includes blogging, facebook, myspace, podcasts &#8211; all the ways that people reach out and connect with each other through the web.
Social Media is a great tool for promoting your brand, products and services. However, there is such [...]]]></description>
			<content:encoded><![CDATA[<p>Social Media is the new buzz word hitting the internet, though it has been around for years. It includes blogging, facebook, myspace, podcasts &#8211; all the ways that people reach out and connect with each other through the web.</p>
<p><b>Social Media</b> is a great tool for promoting your brand, products and services. However, there is such a barrage of options available, and sometimes learning the ins and outs of how to utilize all the different tools to your advantage, (or even which social media tools are best for your business)  seems an incredible amount of work and time. THEN finding the time to write those blogs and create and post those videos and podcasts &#8211; it could appear an insurmountable challenge.</p>
<p>That is why I have signed up for the <b><a href="http://intuitive-websites.com/recommendations.php?id=295">THE 2008 SOCIAL MEDIA TELESUMMIT</a> </b>where I will be listening to and asking questions of Leesa Barnes and over 2 dozen other guest speakers for the first 2008 Social Media Telesummit.</p>
<p>I am really looking forward to learning Cutting Edge Social Media Tactics From Bestselling Authors, Millionaire Coaches, World Class Speakers, Success Gurus and Social Media Experts<br />
I will bring what I learn back to my clients and my blog, however, if you would like to attend as well, <a href="http://intuitive-websites.com/recommendations.php?id=295">sign up today</a>!<a href="http://intuitive-websites.com/recommendations.php?id=295" target="_blank" rel="nofollow"><span><br />
</span></a></p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://goffgrafix.com/blog/index.php/2008/02/social-media/&amp;title=Social+Media" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://goffgrafix.com/blog/index.php/2008/02/social-media/&amp;title=Social+Media" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://goffgrafix.com/blog/index.php/2008/02/social-media/&amp;title=Social+Media&amp;desc=Social%20Media%20is%20the%20new%20buzz%20word%20hitting%20the%20internet%2C%20though%20it%20has%20been%20around%20for%20years.%20It%20includes%20blogging%2C%20facebook%2C%20myspace%2C%20podcasts%20-%20all%20the%20ways%20that%20people%20reach%20out%20and%20connect%20with%20each%20other%20through%20the%20web.%0D%0A%0D%0ASocial%20Media%20is%20a%20great%20tool%20for%20promoting%20your%20brand%2C%20products%20and%20serv" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://goffgrafix.com/blog/index.php/2008/02/social-media/&amp;title=Social+Media" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://goffgrafix.com/blog/index.php/2008/02/social-media/&amp;title=Social+Media" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://goffgrafix.com/blog/index.php/2008/02/social-media/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://goffgrafix.com/blog/index.php/2008/02/social-media/&amp;title=Social+Media" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Social+Media+-+http://b2l.me/uc6ut+(via+@goffgrafix)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://goffgrafix.com/blog/index.php/2008/02/social-media/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://goffgrafix.com/blog/index.php/2008/02/social-media/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://goffgrafix.com/blog/index.php/2008/02/social-media/&amp;bm_description=Social+Media&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://goffgrafix.com/blog/index.php/2008/02/social-media/&amp;submitHeadline=Social+Media&amp;submitSummary=Social%20Media%20is%20the%20new%20buzz%20word%20hitting%20the%20internet%2C%20though%20it%20has%20been%20around%20for%20years.%20It%20includes%20blogging%2C%20facebook%2C%20myspace%2C%20podcasts%20-%20all%20the%20ways%20that%20people%20reach%20out%20and%20connect%20with%20each%20other%20through%20the%20web.%0D%0A%0D%0ASocial%20Media%20is%20a%20great%20tool%20for%20promoting%20your%20brand%2C%20products%20and%20serv&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://goffgrafix.com/blog/index.php/2008/02/social-media/&amp;t=Social+Media" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://goffgrafix.com/blog/index.php/2008/02/social-media/&amp;t=Social+Media" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Social%20Media%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22Social%20Media%20is%20the%20new%20buzz%20word%20hitting%20the%20internet%2C%20though%20it%20has%20been%20around%20for%20years.%20It%20includes%20blogging%2C%20facebook%2C%20myspace%2C%20podcasts%20-%20all%20the%20ways%20that%20people%20reach%20out%20and%20connect%20with%20each%20other%20through%20the%20web.%0D%0A%0D%0ASocial%20Media%20is%20a%20great%20tool%20for%20promoting%20your%20brand%2C%20products%20and%20serv%22%0A%0AYou+can+read+the+full+article+here%3A%20http://goffgrafix.com/blog/index.php/2008/02/social-media/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Social+Media&amp;link=http://goffgrafix.com/blog/index.php/2008/02/social-media/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://goffgrafix.com/blog/index.php/2008/02/social-media/&amp;title=Social+Media&amp;body=Social%20Media%20is%20the%20new%20buzz%20word%20hitting%20the%20internet%2C%20though%20it%20has%20been%20around%20for%20years.%20It%20includes%20blogging%2C%20facebook%2C%20myspace%2C%20podcasts%20-%20all%20the%20ways%20that%20people%20reach%20out%20and%20connect%20with%20each%20other%20through%20the%20web.%0D%0A%0D%0ASocial%20Media%20is%20a%20great%20tool%20for%20promoting%20your%20brand%2C%20products%20and%20serv" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://goffgrafix.com/blog/index.php/2008/02/social-media/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://goffgrafix.com/blog/index.php/2008/02/social-media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Questions to Ask Your Web Design Company</title>
		<link>http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/</link>
		<comments>http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/#comments</comments>
		<pubDate>Tue, 09 Jan 2007 20:27:17 +0000</pubDate>
		<dc:creator>Heather Goff</dc:creator>
				<category><![CDATA[Web Design Resource]]></category>

		<guid isPermaLink="false">http://goffgrafix.com/blog/?p=4</guid>
		<description><![CDATA[Before you hire a web design company, here are some important questions to ask:

Who is going to be designing and programming my site?
If you are approaching a large design firm, you may very well be paying top dollar for an entry level designer, or, if it is a small company that you are researching, they [...]]]></description>
			<content:encoded><![CDATA[<p>Before you hire a web design company, here are some important questions to ask:</p>
<ol>
<li><b>Who is going to be designing and programming my site?</b><br />
If you are approaching a large design firm, you may very well be paying top dollar for an entry level designer, or, if it is a small company that you are researching, they may outsource parts of the site. You have a right to know exactly who is going to be working on your project, and what their credentials are.</li>
<li><b>Ask to see examples of work done by current staff.</b><br />
A web design company may have a very impressive portfolio to show you, but are the designers who contributed to that portfolio still working for that company? Sometimes they aren&#8217;t. Ask to see examples of work done by the current staff, so that you can make an informed decision about who will be designing your site.</li>
</ol>
<p>When you work with goffgrafix.com, you are hiring Heather Goff to program and design your site. Heather brings years of experience in programming and visual design to your project. If there is a piece of the site that needs to be outsourced, Heather will put you in direct contact with a selection of qualified professionals, and you will choose the best fit for your company and work directly with them. Plus, Heather specializes in sites with content management systems. What does that mean? It means that once the site is built, you can manage all of the content on it through an easy browser interface. <a href="http://www.goffgrafix.com/webdesign-custom.php" title="Web Design by goffgrafix.com">See examples of web sites designed by Heather Goff. </a></p>
<p><a href="http://www.goffgrafix.com/resource-links.php?cat=27&amp;id2=8" title="Resources for Designing Web sites">Here are a list of important resources for before you start designing your web site. These resources answer many initial questions.</a></p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/&amp;title=Questions+to+Ask+Your+Web+Design+Company" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/&amp;title=Questions+to+Ask+Your+Web+Design+Company" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/&amp;title=Questions+to+Ask+Your+Web+Design+Company&amp;desc=Before%20you%20hire%20a%20web%20design%20company%2C%20here%20are%20some%20important%20questions%20to%20ask%3A%0D%0A%0D%0A%09Who%20is%20going%20to%20be%20designing%20and%20programming%20my%20site%3F%0D%0AIf%20you%20are%20approaching%20a%20large%20design%20firm%2C%20you%20may%20very%20well%20be%20paying%20top%20dollar%20for%20an%20entry%20level%20designer%2C%20or%2C%20if%20it%20is%20a%20small%20company%20that%20you%20are%20researc" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/&amp;title=Questions+to+Ask+Your+Web+Design+Company" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/&amp;title=Questions+to+Ask+Your+Web+Design+Company" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/&amp;title=Questions+to+Ask+Your+Web+Design+Company" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Questions+to+Ask+Your+Web+Design+Company+-+http://b2l.me/uc6uu+(via+@goffgrafix)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/&amp;bm_description=Questions+to+Ask+Your+Web+Design+Company&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/&amp;submitHeadline=Questions+to+Ask+Your+Web+Design+Company&amp;submitSummary=Before%20you%20hire%20a%20web%20design%20company%2C%20here%20are%20some%20important%20questions%20to%20ask%3A%0D%0A%0D%0A%09Who%20is%20going%20to%20be%20designing%20and%20programming%20my%20site%3F%0D%0AIf%20you%20are%20approaching%20a%20large%20design%20firm%2C%20you%20may%20very%20well%20be%20paying%20top%20dollar%20for%20an%20entry%20level%20designer%2C%20or%2C%20if%20it%20is%20a%20small%20company%20that%20you%20are%20researc&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/&amp;t=Questions+to+Ask+Your+Web+Design+Company" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/&amp;t=Questions+to+Ask+Your+Web+Design+Company" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Questions%20to%20Ask%20Your%20Web%20Design%20Company%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22Before%20you%20hire%20a%20web%20design%20company%2C%20here%20are%20some%20important%20questions%20to%20ask%3A%0D%0A%0D%0A%09Who%20is%20going%20to%20be%20designing%20and%20programming%20my%20site%3F%0D%0AIf%20you%20are%20approaching%20a%20large%20design%20firm%2C%20you%20may%20very%20well%20be%20paying%20top%20dollar%20for%20an%20entry%20level%20designer%2C%20or%2C%20if%20it%20is%20a%20small%20company%20that%20you%20are%20researc%22%0A%0AYou+can+read+the+full+article+here%3A%20http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Questions+to+Ask+Your+Web+Design+Company&amp;link=http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/&amp;title=Questions+to+Ask+Your+Web+Design+Company&amp;body=Before%20you%20hire%20a%20web%20design%20company%2C%20here%20are%20some%20important%20questions%20to%20ask%3A%0D%0A%0D%0A%09Who%20is%20going%20to%20be%20designing%20and%20programming%20my%20site%3F%0D%0AIf%20you%20are%20approaching%20a%20large%20design%20firm%2C%20you%20may%20very%20well%20be%20paying%20top%20dollar%20for%20an%20entry%20level%20designer%2C%20or%2C%20if%20it%20is%20a%20small%20company%20that%20you%20are%20researc" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://goffgrafix.com/blog/index.php/2007/01/questions-to-ask-your-web-design-company/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
