<?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>Crazy Tree Media</title>
	<atom:link href="http://crazytreemedia.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://crazytreemedia.com</link>
	<description>Premium Web Hosting &#38; WordPress Design</description>
	<lastBuildDate>Thu, 14 Mar 2013 18:04:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Using CSS Inline to Create an Accent Box</title>
		<link>http://crazytreemedia.com/using-css-inline-to-create-an-accent-box/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-css-inline-to-create-an-accent-box</link>
		<comments>http://crazytreemedia.com/using-css-inline-to-create-an-accent-box/#comments</comments>
		<pubDate>Thu, 20 Sep 2012 19:37:36 +0000</pubDate>
		<dc:creator>Tim Layton</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://crazytreemedia.com/?p=760</guid>
		<description><![CDATA[<p>This post will teach you to use inline CSS in your WordPress posts and pages.

The first thing I learned when teaching myself web design was how to do basic HTML, the next thing was CSS.
CSS is the coding language that determines the &#8220;look and feel&#8221; of pretty much everything you see on the web today.
The ...</p><p>The post <a href="http://crazytreemedia.com/using-css-inline-to-create-an-accent-box/">Using CSS Inline to Create an Accent Box</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>This post will teach you to use inline CSS in your WordPress posts and pages.</p>
<p><img src="http://crazytreemedia.com/wp-content/uploads/2012/09/css-300x300.png" alt="CSS Inline Rules to Create Accent Box" title="css" width="300" height="300" class="alignright size-medium wp-image-789" /></p>
<p>The first thing I learned when teaching myself web design was how to do basic HTML, the next thing was CSS.</p>
<p>CSS is the coding language that determines the &#8220;look and feel&#8221; of pretty much everything you see on the web today.</p>
<p>The letters you&#8217;re reading right this second are affected in many ways by css.  Including:</p>
<ul>
<li>The <span style="color:red;">color</span> of the letters</li>
<li>The <span style="font-family:cursive;">font</span> used for the letters</li>
<li>Whether they are <strong>bold</strong> or <em>italic</em> or <span style="text-decoration:underline;">underlined</span></li>
<li>The space between lines (not shown)</li>
<li>What happens when you hover your mouse over a word <span class="hoverexample">{see}</span></li>
</ul>
<p>And so much more.  CSS is very versitile and worth learning even for a part-time blogger because of the flexibility you gain by understanding what&#8217;s going on.</p>
<p>For example, say I want to create a box inside my post area with additional content, much like you would see in a magazine article. Like you see to the right here.</p>
<div style="width:250px;margin:20px;padding:10px;background:#efefef;border:4px solid #e9e9e9;float:right;">
<h3>What&#8217;s a DIV?</h3>
<p>A DIV is an HTML element that us essentially used as a container to break-up and usually name components within a larger whole.  To put it in terms my sons would understand, try thinking of it this way:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="html" style="font-family:monospace;">&lt;div id=&quot;refrigerator&quot;&gt;
  &lt;div class=&quot;top shelf&quot;&gt;
     Lunch Meat
  &lt;/div&gt;
&nbsp;
  &lt;div class=&quot;door&quot;&gt;
    Drinks!
  &lt;/div&gt;
&nbsp;
  &lt;div class=&quot;bottom shelf&quot;&gt;
    Leftovers!
  &lt;/div&gt;
&lt;/div&gt;</pre></td></tr></table></div>

<p>As you can see, a DIV tag is used to open or start the container and then one with a / at the beginning &#8220;closes&#8221; or ends it.  You must be careful to always close your HTML tags or your site might get really confused or break.</p>
<p>In the demonstration above I used ID&#8217;s and Classes just so you could visualize the way DIV&#8217;s are individual items within your content, one inside of the other.  You don&#8217;t always have to name them.  In fact, the only reason you normally would name a DIV is so you can refer to it later.</p>
<p>A stylesheet such as style.css might, for example say &#8220;make the refrigerator red and the lunchmeat bold then underline the leftovers&#8221;, using CSS code of course.</p>
</div>
<p>This can be done very quickly right in the body of your post.  No editing of your theme&#8217;s style.css sheet is required.  Just use inline css.</p>
<p><strong>Start with a DIV Container</strong></p>
<p>The little box to the right both demonstrates what we&#8217;re learning to do and teaches you what a DIV is and how it works.</p>
<h3>Just Add Inline CSS Styles To The DIV</h3>
<p>The code below is what created the box to the right.</p>
<div style="width:450px;margin:20px;padding:10px;background:#efefef;border:4px solid #e9e9e9;">

<div class="wp_syntax"><table><tr><td class="code"><pre class="html" style="font-family:monospace;">&lt;div style=&quot;width:250px;margin:20px;padding:10px;background:#efefef;border:4px solid #e9e9e9;float:right;&quot;&gt;
... your content...
&lt;/div&gt;</pre></td></tr></table></div>

</div>
<p>Here are the elements one-by-one:</p>
<ul>
<li><strong>Width</strong> &#8211; kind of obvious right, it&#8217;s how wide the box is.</li>
<li><strong>Margin</strong> &#8211; margin is the area outside of the div where nothing should be&#8230; think of it as the space you want everyone to stay away from your iPad.</li>
<li><strong>Padding</strong> &#8211; This is the area around the peremiter of the inside of your DIV that should have no content, think of it as the solid black bar around the screen on your iPad.</li>
<li><strong>Background</strong> &#8211; Here we&#8217;re adding a color.  There is much <a href="http://www.w3schools.com/css/css_background.asp" target="_blank">more to learn</a> about the background element.  It can be an image, a pattern, transparent, and more.</li>
<li><strong>Border</strong> &#8211; The solid line around the edge of your DIV &#8211; first I tell it how wide to make the border, then what style such as solid, dashed, or dotted, then I tell it what color using a <a href="http://www.december.com/html/spec/colorhex.html" target="_blank">hexadecimal color code</a>.</li>
<li><strong>Float</strong> &#8211; This tells the browser that we want this whole containter (the DIV) to be on the right side of the container it is within (the WordPress post) and that we want other content to wrap around it on the left.</li>
</ul>
<p>So now anything we put within that DIV will be part of that section on the page.  So if we center a picture or text it will be centered within that section only.</p>
<p><strong>Use For One-Off Styling</strong></p>
<p>You can style anything in this manner, but for things that will happen over and over again, or for pages with large amounts of custom css work, you should identify ID&#8217;s and classes and then use a stylesheet for defining css rules for those items.</p>
<p>The reason for this is that CSS on a stylesheet can be edited in one place and tools such as Firebug describe exactly where to find the code if you want to change it.  Inline CSS can be much harder to find.</p>
<p>It&#8217;s best used for one-shot design work.</p>
<p>Like boxes just like this one!</p>
<p>The post <a href="http://crazytreemedia.com/using-css-inline-to-create-an-accent-box/">Using CSS Inline to Create an Accent Box</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://crazytreemedia.com/using-css-inline-to-create-an-accent-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Etsylink Comments WordPress Plugin (Beta)</title>
		<link>http://crazytreemedia.com/etsylink-comments-wordpress-plugin-beta/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=etsylink-comments-wordpress-plugin-beta</link>
		<comments>http://crazytreemedia.com/etsylink-comments-wordpress-plugin-beta/#comments</comments>
		<pubDate>Sat, 15 Sep 2012 20:17:06 +0000</pubDate>
		<dc:creator>Tim Layton</dc:creator>
				<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://crazytreemedia.com/?p=755</guid>
		<description><![CDATA[<p>Etsylink Comments is a plugin for WordPress sites that creates an additional field in the Response Area of the comments section for the user to input their Etsy username (Shop Name).  The plugin then adds a link to the user&#8217;s comment that points to their Etsy shop.
Images


See the plugin live at our sites EverythingEtsy.com ...</p><p>The post <a href="http://crazytreemedia.com/etsylink-comments-wordpress-plugin-beta/">Etsylink Comments WordPress Plugin (Beta)</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Etsylink Comments is a plugin for WordPress sites that creates an additional field in the Response Area of the comments section for the user to input their Etsy username (Shop Name).  The plugin then adds a link to the user&#8217;s comment that points to their Etsy shop.</p>
<p><strong>Images</strong></p>
<p align="center"><img hspace="10" alt="EtsylinkCommentsImage1" vspace="10" src="http://crazytreemedia.com/wp-content/uploads/2012/09/etsylinkcommentsimage1-1.jpg" width="513" height="391" /></p>
<p align="center"><img hspace="10" alt="EtsylinkCommentsImage2" vspace="10" src="http://crazytreemedia.com/wp-content/uploads/2012/09/etsylinkcommentsimage2-1.jpg" width="500" height="600" /></p>
<p>See the plugin live at our sites <a href="http://EverythingEtsy.com" target="_blank">EverythingEtsy.com</a> and <a href="http://Etsypreneur.com" target="_blank">Etsypreneur.com</a></p>
<p><strong>Getting The Plugin</strong></p>
<p>This plugin is still in the testing phase and isn&#8217;t totally complete/ready for distribution.  Once its complete we wil submit it to the WordPress Repository where it will be available for download and automatic installation on all self-hosted WordPress sites.</p>
<p>That process may take some time.  If you would like to be notified as soon as the plugin is ready for public beta testing, please complete the form below and we will email you.</p>

                <div class='gform_wrapper' id='gform_wrapper_7' ><form method='post' enctype='multipart/form-data'  id='gform_7' class='' action=''>
                        <div class='gform_heading'>
                            <h3 class='gform_title'>Etsylink Comments Plugin - Beta</h3>
                            <span class='gform_description'>Please enter your contact info...</span>
                        </div>
                        <div class='gform_body'>
                            <input type='hidden' class='gform_hidden' name='is_submit_7' value='1'/>
                            <ul id='gform_fields_7' class='gform_fields top_label'><li id='field_7_1' class='gfield' ><label class='gfield_label' for='input_7_1'>Name</label><div class='ginput_complex ginput_container' id='input_7_1'><span id='input_7_1_3_container' class='ginput_left'><input type='text' name='input_1.3' id='input_7_1.3' value='' tabindex='1' /><label for='input_7_1.3'>First</label></span><span id='input_7_1_6_container' class='ginput_right'><input type='text' name='input_1.6' id='input_7_1.6' value='' tabindex='2' /><label for='input_7_1.6'>Last</label></span></div></li><li id='field_7_2' class='gfield' ><label class='gfield_label' for='input_7_2'>Email</label><div class='ginput_container'><input name='input_2' id='input_7_2' type='email' value='' class='medium'  tabindex='3'  /></div></li><li id='field_7_3' class='gfield' ><label class='gfield_label' for='input_7_3'>Website</label><div class='ginput_container'><input name='input_3' id='input_7_3' type='url' value='' class='medium'  tabindex='4' placeholder='http://' /></div></li>
                            </ul>
                        </div>
                        <div class='gform_footer top_label'><input type='submit' id='gform_submit_button_7' class='button' value='Submit' tabindex='5'/>
                        </div>
                </form>
                </div>
<p>Crazy Tree Media customers&#8230; you can have the plugin now. Just contact us and we&#8217;ll install it to your site and configure it for you.</p>
<p><strong>Credit to Twitterlink Comments and CommentLuv</strong></p>
<p>This plugin is based on and derived from the <a href="http://wordpress.org/extend/plugins/twitterlink-comments/" target="_blank">Twitterlink Comments</a> plugin by <a href="http://comluv.com/" target="_blank">CommentLuv</a>.  Without the work they put into the creation of that plugin, my job would have been much harder and the result probably wouldn&#8217;t have been as good.</p>
<p><strong>Any Suggestions?</strong></p>
<p>Head over to <a href="http://EverythingEtsy.com" target="_blank">EverythingEtsy.com</a> or <a href="http://Etsypreneur.com" target="_blank">Etsypreneur.com</a> and give the plugin a try!  Let us know if you see anywhere from the user&#8217;s perspective that the plugin could be improved.</p>
<p>Thanks!</p>
<p>- Tim</p>
<p>The post <a href="http://crazytreemedia.com/etsylink-comments-wordpress-plugin-beta/">Etsylink Comments WordPress Plugin (Beta)</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://crazytreemedia.com/etsylink-comments-wordpress-plugin-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improve Category Archive Pages in Genesis {Video}</title>
		<link>http://crazytreemedia.com/improve-category-archive-pages-in-genesis-video/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=improve-category-archive-pages-in-genesis-video</link>
		<comments>http://crazytreemedia.com/improve-category-archive-pages-in-genesis-video/#comments</comments>
		<pubDate>Thu, 06 Sep 2012 23:07:15 +0000</pubDate>
		<dc:creator>Tim Layton</dc:creator>
				<category><![CDATA[Genesis]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://crazytreemedia.com/?p=689</guid>
		<description><![CDATA[<p>If you don&#8217;t know what the Genesis Themes are, you should really check them out.  They rock.
For a limited time, Genesis Themes are included at no extra cost in our Blogger and above packages.  See plans and pricing.
</p><p>The post <a href="http://crazytreemedia.com/improve-category-archive-pages-in-genesis-video/">Improve Category Archive Pages in Genesis {Video}</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><iframe width="770" height="433" src="http://www.youtube.com/embed/09feOS2Vm_U?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>If you don&#8217;t know what the Genesis Themes are, <a href="http://www.shareasale.com/r.cfm?u=402885&#038;b=241709&#038;m=28169&#038;afftrack=CTMSalesPage&#038;urllink=www%2Estudiopress%2Ecom%2Fchoose%2Dtheme">you should really check them out</a>.  They rock.</p>
<p>For a limited time, Genesis Themes are included at no extra cost in our Blogger and above packages.  <a href="http://crazytreemedia.com/pricing/" title="Plans &#038; Pricing">See plans and pricing</a>.</p>
<p>The post <a href="http://crazytreemedia.com/improve-category-archive-pages-in-genesis-video/">Improve Category Archive Pages in Genesis {Video}</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://crazytreemedia.com/improve-category-archive-pages-in-genesis-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keeping WordPress Up To Date</title>
		<link>http://crazytreemedia.com/keeping-wordpress-up-to-date/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=keeping-wordpress-up-to-date</link>
		<comments>http://crazytreemedia.com/keeping-wordpress-up-to-date/#comments</comments>
		<pubDate>Sat, 01 Sep 2012 17:07:23 +0000</pubDate>
		<dc:creator>Tim Layton</dc:creator>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Using WordPress]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Backups]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://crazytreemedia.com/?p=678</guid>
		<description><![CDATA[<p>Software updates can be a bit of a pain in the neck if you ask me.  I really do get tired of constantly getting popups on my computer screen telling me this software or that has a new update that needs to be installed.  Usually the implied price of non-compliance is a serious ...</p><p>The post <a href="http://crazytreemedia.com/keeping-wordpress-up-to-date/">Keeping WordPress Up To Date</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Software updates can be a bit of a pain in the neck if you ask me.  I really do get tired of constantly getting popups on my computer screen telling me this software or that has a new update that needs to be installed.  Usually the implied price of non-compliance is a serious life-altering security breach that would leave me homeless, destititute, and essentially without a glimmer of hope.</p>
<p><em>So I usually go ahead and update.</em></p>
<p>WordPress is no different.  WordPress has released probably a dozen new versions or patches since I started using it a few years ago.  Back in the day, it was kind of a chore to update. Nowadays it&#8217;s as easy as clicking a button or two. (usually)</p>
<p><strong>WordPress One Click Update</strong></p>
<p>When an update is available, you&#8217;ll see this at the top of your <a href="http://crazytreemedia.com/2012/08/getting-to-know-the-wordpress-dashboard-part-1-posts-pages-and-settings/" title="Getting to Know The WordPress Dashboard – Part 1 — Posts, Pages, and Settings">admin dashboard</a>:</p>
<p align="center"><img hspace="10" alt="Image" vspace="10" src="http://crazytreemedia.com/wp-content/uploads/2012/09/image-317.jpg" width="351" height="79" /></p>
<p>The starting point is obvious&#8230; click the link and you&#8217;re taken to a page that explains the potential dangers of updating and suggests you should have a full backup of your site before proceeding.</p>
<p>Unless I&#8217;ve just made major changes to a site that involved tons of work that I don&#8217;t have a copy of, I usually run wild with this and just go for it.</p>
<p>All of my sites back-up automatically at least once a week at a minimum so I know I won&#8217;t have to go back too far if there is some sort of catastrophy.</p>
<p align="center"><img hspace="10" alt="Image" vspace="10" src="http://crazytreemedia.com/wp-content/uploads/2012/09/image-318.jpg" width="475" height="322" /></p>
<p>The page also shows the plugins that I have installed which are ready for an update.  If I&#8217;m in a big hurry I update them all at once, but I usually update the plugins one at a time and check the site after each one.  Plugins are more likely to cause problems than the core WordPress code.</p>
<p>Hit the &#8220;update now&#8221; button and sit back for a few seconds&#8230;</p>
<p align="center"><img hspace="10" alt="Image" vspace="10" src="http://crazytreemedia.com/wp-content/uploads/2012/09/image-319.jpg" width="460" height="308" /></p>
<p>Update done.  New features are sometimes displayed as shown above.</p>
<p>Usually it&#8217;s as simple as that and life can go on.</p>
<p><strong>Keeping Up To Date is a Best Practice</strong></p>
<p>There are dangers with websites.  Sites get hacked all the time and the damage can range from annoying to the aforementioned total annihaliation.</p>
<p>Updating your site won&#8217;t ensure your total safety, but it is one of the things you can do to at least improve your position.</p>
<p>And it&#8217;s easy. So do it now.</p>
<p>Crazy Tree customers on plan Blogger and above have this service included at no extra charge.  But it&#8217;s not automatic, you have to let us know you need the update.</p>
<p>The post <a href="http://crazytreemedia.com/keeping-wordpress-up-to-date/">Keeping WordPress Up To Date</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://crazytreemedia.com/keeping-wordpress-up-to-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting to Know The WordPress Dashboard &#8211; Part 1 &#8212; Posts, Pages, and Settings</title>
		<link>http://crazytreemedia.com/getting-to-know-the-wordpress-dashboard-part-1-posts-pages-and-settings/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=getting-to-know-the-wordpress-dashboard-part-1-posts-pages-and-settings</link>
		<comments>http://crazytreemedia.com/getting-to-know-the-wordpress-dashboard-part-1-posts-pages-and-settings/#comments</comments>
		<pubDate>Mon, 06 Aug 2012 21:48:56 +0000</pubDate>
		<dc:creator>Tim Layton</dc:creator>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Using WordPress]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Categories]]></category>
		<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Livewriter]]></category>
		<category><![CDATA[Pages]]></category>
		<category><![CDATA[Permalinks]]></category>
		<category><![CDATA[Posts]]></category>
		<category><![CDATA[Settings]]></category>
		<category><![CDATA[Tags]]></category>

		<guid isPermaLink="false">http://crazytreemedia.com/?p=684</guid>
		<description><![CDATA[<p>I come from a non-tech background so I still get a kick out of the things &#8220;tech natives&#8221; take for granted as obvious.  For me when I first started, nothing much was obvious&#8230;other than my total ineptidude that is.
The first thing I tried to do was to establish a hosting account and get a ...</p><p>The post <a href="http://crazytreemedia.com/getting-to-know-the-wordpress-dashboard-part-1-posts-pages-and-settings/">Getting to Know The WordPress Dashboard &#8211; Part 1 &#8212; Posts, Pages, and Settings</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I come from a non-tech background so I still get a kick out of the things &#8220;tech natives&#8221; take for granted as obvious.  For me when I first started, nothing much was obvious&#8230;other than my total ineptidude that is.</p>
<p>The first thing I tried to do was to establish a hosting account and get a domain.  Then I manually downloaded, uploaded, unzipped, and installed WordPress.  That was all pretty intense for a guy who a few days before had litterally uttered the words &#8220;what&#8217;s a blog?&#8221;.</p>
<p>So when I finally got WordPress installed (it&#8217;s much easier now), I figured I was home free.  Then I found the WordPress dashboard.  No instructions were provided because, duh, it&#8217;s obvious. Well, it wasn&#8217;t for me. (in fairness to WordPress, there were instructions via the WordPress Codex, I just didn&#8217;t know where or what that was at the time)</p>
<p>If it&#8217;s not so obvious for you, here&#8217;s a quick little rundown.  The first picture below shows the overall screen of a typical WordPress admin area.  Below, I&#8217;ll go through each of the major options and help you know what&#8217;s behind doors #1 through 412.</p>
<p><strong>The Typical WordPress Dashboard</strong></p>
<p align="center"><img hspace="10" alt="Image" vspace="10" src="http://crazytreemedia.com/wp-content/uploads/2012/09/image-320.jpg" width="650" height="416" /></p>
<p>Rather than go through this visually based on what you see, I think I&#8217;ll go in a more experiental order, based on what you&#8217;ll end up using the most.</p>
<p>It all starts with posts.</p>
<p><strong>The Posts and Pages Menu Items</strong></p>
<p><img hspace="10" alt="Image" vspace="10" align="right" src="http://crazytreemedia.com/wp-content/uploads/2012/09/image-321.jpg" width="168" height="137" />Posts are the most common form of content generation on most WordPress site.  Pages are very similar, but posts are the ones that get sent out to RSS and email subscribers and they are the articles you&#8217;ll see in your blog &#8220;loop&#8221; which generally appears in reverse chronological order.</p>
<p>Posts</p>
<ul>
<li><strong>All Posts</strong> &#8211; Takes you to your full list of posts, both published and un-published.  From here you can choose to edit something you&#8217;ve already started or even a post that you previously published.  You can also delete posts and use the &#8220;quick edit&#8221; tool to add or change categories, make a post sticky, and more.</li>
<li><strong>Add New</strong> &#8211; Takes you directly to the post creation screen, which will default to the visual editor.  The visual post editor works much like standard word processing software.  You&#8217;ll see familiar tools for bold text, italics, and changing colors.  You&#8217;ll also find tools for uploading media such as pictures and putting links in your content. Lots of links in your content is good.</li>
<li><strong>Categories</strong> &#8211; This is one of the places where you can go to add a new category.  Categories are very useful for organizing your WordPress site into understandable sections.  The better you think out your categories at the beginning the better your site will be down the road.  It&#8217;s a good practice to create your categories first and then start creating content to &#8220;populate&#8221; each category.</li>
<li><strong>Tags</strong> &#8211; Tags have fallen out of favor with me.  They seem redundant, but they do have some usefulness in increasing pageviews much later when your site is ginormous.  I find it much easier to create tags in the post creation screen, but for finding posts later that have a certain tag, this menu option can be useful.</li>
</ul>
<p><strong>Pages</strong></p>
<ul>
<li><img hspace="10" alt="Image" vspace="10" align="right" src="http://crazytreemedia.com/wp-content/uploads/2012/09/image-322.jpg" width="174" height="94" />Same as posts &#8211; The options on the pages menu do exactly the same things as the posts menu option, but there are no categories or tags.  Pages are usually not in a category (though you can make it so using a plugin, which is sometimes useful).  Pages are used for &#8220;static&#8221; content that you don&#8217;t want to appear in the blog loop.  Things like &#8220;About Us&#8221;, &#8220;Contact Us&#8221;, &#8220;Resources&#8221;, &#8220;Services&#8221;, etc. are often put on pages rather than in a post.</li>
</ul>
<p><strong>The Settings Menu</strong></p>
<p>As someone who sets up blogs all the time, I probably would go to settings first.  I listed posts and pages first because I remember the thrill of writing that first content and including those first pictures, then hitting publish and seeing it online right away.  That was cool.  Settings, not so much.  At least not to the untrained eye.</p>
<p>In reality the options under the settings menu are pretty awesome.  I&#8217;ll give you a little insight as to what&#8217;s behind each click, but I probably should write another post just about settings.</p>
<ul>
<li><strong><img hspace="10" alt="Image" vspace="10" align="right" src="http://crazytreemedia.com/wp-content/uploads/2012/09/image-324.jpg" width="167" height="197" />General</strong> &#8211; Things like time zones, date format, and what email address you want notifications to go to are here. (you can also set an email address for each &#8220;user&#8221; which is where the comments from their posts will be sent, that&#8217;s done under &#8220;users&#8221;)  The most important settings under &#8220;general&#8221; are Site Title and Tagline.
<ul>
<li><em>Site Title</em> &#8211; Your site title is probably obvious, but you might want to skip the &#8220;.com&#8221; part and you might want to break up the words into regular language.  The idea is all about SEO.  How will people type your site name into Google after you&#8217;re famous?  That&#8217;s what you want here.</li>
<li><em>Tag Line -</em> The tag line may not be as obvious, but it&#8217;s very important.  In terms of SEO this will be part of your &#8220;page title&#8221; for your homepage.  It should include keywords if possible.  If you hope to sell Jewelry made from silver and freshwater pearls it might say: Freshwater Pearl Jewelry &#8211; Handmade with care.  Most important keywords first as much as is possible while still making human sense.</li>
</ul>
</li>
<li><strong>Writing</strong> &#8211; I very rarely make many changes on to the writing options.  The &#8220;press this&#8221; bookmarklet looks cool, but I&#8217;ve never tried it so can&#8217;t comment.  The only setting I personally use here is to enable xml-rpc publishing so that I can write my blog posts in a desktop app, rather than within WordPress.  I use BlogDesk (which may no longer be available) and Kim uses Microsoft LiveWriter which is a very commonly used blogging software.  This setting allows thos apps to log-in and post on your blog.</li>
<li><strong>Reading</strong> &#8211; Reading, on the other hand, is an important group of options including how many posts you want to show on your blog page (will impact how &#8220;long&#8221; the page is) and whether or not you wish to show full text in your RSS feed. (not showing full text prevents content scaping but forces your RSS readers to click through to your blog, which ticks Google Reader lovers off big-time, you decide priorities)
<ul>
<li><em>Front Page Displays</em> &#8211; The most important setting under this option is deciding what will be shown on the &#8220;home&#8221; page of your site (yoursite.com).  You can choose for it to show your blog, as we do at EverythingEtsy.com, or you can choose to show a static page, as we do here at CrazyTreeMedia.com</li>
</ul>
</li>
<li><strong>Discussion</strong> &#8211; This is all about comments.  Comments can be the most wonderful thing about WordPress and the most frustrating too.  Comment spam is an issue so you should have an anti-spam plugin such as Akismet installed.  But you&#8217;ll still want to adjust your comment settings from time to time as you progress.  All the settings are here and are fairly self-explanatory.</li>
<li><strong>Media -</strong> Mostly advanced settings I rarely have to change.  You may want to play with the standard media sizes (small, medium, large) if you blog mostly from the WordPress built-in post editor.  That could save you some time in image sizing.  Other than that, default is usually fine.</li>
<li><strong>Privacy</strong> &#8211; This is important to check for SEO purposes.  For the most part you want search engines to access your site.  But if you want your site to be pretty much secret to you while you build it you might turn this off until your site is &#8220;ready to present&#8221;, but be sure to fix it when you actually want search traffic!  To turn off all access to your site to everyone you need a plugin such as WP-MembersOnly</li>
<li><strong>Permalinks -</strong> This is another important setting for SEO purposes.  By default, WordPress uses a number to identify your post and that number is appended to your site URL.  You can change this via permalinks to include the post title in the URL.  It looks like this when you&#8217;ve set it to show post title only: <a href="http://etsypreneur.com/etsy-as-your-door-to-a-connected-future/">http://etsypreneur.com/etsy-as-your-door-to-a-connected-future/</a>  (without setting permalinks, the same post URL would look like this: <a href="http://etsypreneur.com/?p=1068">http://etsypreneur.com/?p=1068</a> )</li>
</ul>
<p>More Dashboard Options Explained in Part 2 (coming soon)</p>
<p>Be sure to check out the next part of this post series for more explanation of the WordPress Dashboard.  You can also get in-depth details about anything WordPress at the <a href="http://codex.wordpress.org/Main_Page" target="_blank">WordPress Codex</a>.  The Dashboard section is <a href="http://codex.wordpress.org/Dashboard_Screen" target="_blank">here</a>.</p>
<p>The post <a href="http://crazytreemedia.com/getting-to-know-the-wordpress-dashboard-part-1-posts-pages-and-settings/">Getting to Know The WordPress Dashboard &#8211; Part 1 &#8212; Posts, Pages, and Settings</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://crazytreemedia.com/getting-to-know-the-wordpress-dashboard-part-1-posts-pages-and-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Caution With Email Personalization</title>
		<link>http://crazytreemedia.com/use-caution-with-email-personalization/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=use-caution-with-email-personalization</link>
		<comments>http://crazytreemedia.com/use-caution-with-email-personalization/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 13:15:15 +0000</pubDate>
		<dc:creator>Tim Layton</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://crazytreemedia.com/2011/04/use-caution-with-email-personalization/</guid>
		<description><![CDATA[<p>Email marketing is a great tool and one that businesses and organizations of all types should take advantage of on one level or another. However, just like every other form of customer communication, it&#8217;s not without a few danger zones.
One of the areas to watch out for is personalization of your emails. This is the ...</p><p>The post <a href="http://crazytreemedia.com/use-caution-with-email-personalization/">Use Caution With Email Personalization</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Email marketing is a great tool and one that businesses and organizations of all types should take advantage of on one level or another. However, just like every other form of customer communication, it&#8217;s not without a few danger zones.</p>
<p>One of the areas to watch out for is personalization of your emails. This is the process whereby the computer automatically inserts the first name or other personal info into an email where you say to. The problem is, the computer doesn&#8217;t apply common sense, that&#8217;s up to you.</p>
<p><strong>Danger Zone: Clearly Impersonal Emails Personalized</strong></p>
<p align="center"><img src="http://crazytreemedia.com/wp-content/uploads/2011/04/image-122.jpg" alt="Image" width="500" height="582" /></p>
<p>If you look closely enough, you&#8217;ll see that this email (which looks nothing like an email) says &#8220;Dear Tim&#8221; right before some words that sound nothing like an email.</p>
<p>Some people just like the sound of their own name and I&#8217;m right there with them, but other than some tiny potential endearment just because I see my name, using it in this email makes no sense at all.</p>
<p>There is no &#8220;personal&#8221; to this email. It looks like a web-page, it reads like a web-page, it essentially is a web-page that was delivered to my email inbox. Do they really think that I&#8217;m going to believe that they wrote this and arranged all these pictures and links, just for me?</p>
<p><strong>Danger Zone: Email list &#8220;name field&#8221; problems</strong></p>
<p>How does the system know what name to put in that spot anyway? It uses the information input into a form when the recipient signed-up to get the emails. The problem is that people don&#8217;t always follow instructions.</p>
<p>I, for example, might decide to use the name of my company, Crazy Tree Media, instead of my name in a form. I might not feel like giving out my name at the time. So, from then on, I will get emails from that company that say &#8220;Dear Crazy&#8221; at the beginning. Thus confusing me and making me think the email is from my wife.</p>
<p>If you have time to go through your entire list looking for things like this and fixing them, or at least being aware of them, then you can make the call. But sending out a personalized mass email to a list you haven&#8217;t looked through name by name is, IMHO, more trouble than it&#8217;s worth.</p>
<p><strong>Weigh The Benefit</strong></p>
<p>When writing an email to be sent to the masses, I often ask myself&#8230; what is the real benefit of personalization on this email. Sometimes it&#8217;s really a big deal. If you&#8217;re trying to make your email sound like it really is to just one person, it could be the way to go.</p>
<p>But at the same time, I think it&#8217;s possible to alienate people by using any form of automated &#8220;trickery&#8221;. If it&#8217;s clearly a mass email, give folks some credit for knowing the difference. If it really is personal, then you probably won&#8217;t be using a mass email system anyway, right?</p>
<p>The post <a href="http://crazytreemedia.com/use-caution-with-email-personalization/">Use Caution With Email Personalization</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://crazytreemedia.com/use-caution-with-email-personalization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Six Must-Haves For A Great Website</title>
		<link>http://crazytreemedia.com/six-must-haves-for-a-great-website/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=six-must-haves-for-a-great-website</link>
		<comments>http://crazytreemedia.com/six-must-haves-for-a-great-website/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 00:49:32 +0000</pubDate>
		<dc:creator>Tim Layton</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://crazytreemedia.com/2011/03/six-must-haves-for-a-great-website/</guid>
		<description><![CDATA[<p>1. The home page of the website should display current content.
This means that the home page should not be static (not changing) it should be dynamic.  Clients, prospects, vendors, whatever, should get used to seeing different information on the home page of the site when they visit.
By &#8220;content&#8221; I mean pictures, words, headings, titles, ...</p><p>The post <a href="http://crazytreemedia.com/six-must-haves-for-a-great-website/">Six Must-Haves For A Great Website</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3>1. The home page of the website should display current content.</h3>
<p>This means that the home page should not be static (not changing) it should be dynamic.  Clients, prospects, vendors, whatever, should get used to seeing different information on the home page of the site when they visit.</p>
<p>By &#8220;content&#8221; I mean pictures, words, headings, titles, links, announcements, and social media updates (that, ideally would be live on the home page). </p>
<p>An example would be site that has various items on the home page that would change when new content of the proper type was added. </p>
<p>Employee Spotlight, for example.  Write a new post in the Employee Spotlight blog category and it automatically goes to the home page of the site. </p>
<p>While this isn&#8217;t super-difficult to do manually, it&#8217;s much better for it to be automatic because inevitably, any manual work such as &#8220;I have to remember to put that new employee spotlight blog post on the home page&#8221; just doesn&#8217;t get done.  The home page becomes static.</p>
<p align="center"><a href="http://schellbrothers.com/" target="_blank"><img alt="Image" src="http://crazytreemedia.com/wp-content/uploads/2011/03/image-116.jpg" width="515" height="398" /></a></p>
<p align="center">(click photo to visit site)</p>
<h3>2. Hook visitors with useful, informative, and visually engaging information.</h3>
<p>A good blog is heavy with pictures. The bigger the better.  The more the better. </p>
<p>The site should be about design, inspiration, and ideas. It should create energy where there was none. </p>
<p>If the site is simply about passing on information, then it isn&#8217;t really getting the most value for you.  Lots of interactive (clickable) pictures engage users. </p>
<p>Current sites use a good bit of pictures on all pages and these pictures, often coupled with bold headlines, draw the visitor to click.  If you can get them to click around a few times they&#8217;ll start to build a feeling of &#8220;this website is cool&#8221; or &#8220;I love this website&#8221;&#8230; the SITE itself is what you want them to love, not your company.  That will come as an automatic result.</p>
<h3>3. The entire site should look current.</h3>
<p><img alt="Image" align="right" src="http://crazytreemedia.com/wp-content/uploads/2011/03/image-115.jpg" width="265" height="171" />This is much like new cars.  You can tell the difference between a brand new car built in 1990 style as compared to a brand new car built in 2010.  Both might have the same great key features, but you can tell which is the newer model, even if both are at zero miles. </p>
<p>How much that matters to your target market is something you know better than I do.  It matters a great deal to a young person who spends much time online.  They will think your site is old.  A person who doesn&#8217;t spend much time online won&#8217;t notice as much, but the site will be older faster if the look starts-off looking dated.</p>
<h3>4. The site should work in all browsers.</h3>
<p>I recently consulted on a site with a photographic background that worked (albeit stretched on my monitor) in IE and Firefox, but was a mess in Chrome and Safari (webkit browsers). </p>
<p>It&#8217;s pretty much impossible to make a photographic background work across the complete range of monitors and websites are constantly working in one browser and not another much to the endless frustration of web developers.</p>
<p>But for this reason, the photographic image background on the site should be either abandoned or set to a fixed size and location with a repeating texture or background color behind it.</p>
<p>In any case, a site has to look professional in all major browsers including mobile.</p>
<h3>5. Consider your online presence as one thing.</h3>
<p>It&#8217;s not good to think of your blog, website, facebook, twitter, and other online interactions as separate entities.  It&#8217;s much better to think of them as various spokes on one wheel. </p>
<p align="center"> <img alt="Image" src="http://crazytreemedia.com/wp-content/uploads/2011/03/image-114.jpg" width="515" height="230" /></p>
<p>The website is the hub but the whole thing is &#8220;your online presence&#8221; and each leg is important.  This isn&#8217;t my original concept, this is very widely adopted thinking as the image above demonstrates.  Check a Google Images search for &#8220;<a href="http://images.google.com/images?hl=en&amp;biw=1538&amp;bih=723&amp;gbv=2&amp;tbs=isch:1&amp;q=website+hub&amp;btnG=Search&amp;aq=f&amp;aqi=&amp;oq=&amp;uss=1" target="_blank">website hub</a>&#8220;.</p>
<p>As such, they all need to heavily integrate.  This means that as soon as your active on twitter, that we add a &#8220;twitter widget&#8221; to the home page of the website that shows latest tweets. </p>
<p>This means that the facebook widget that is on the blog, should also be on the home page.  It means that the facebook page should link to the blog and the home page and twitter, but not just with a simple link. </p>
<p>Doing this right involves active engagement such as doing a tweet about a facebook event and putting blog posts on facebook and all of it being on the home page of the website.</p>
<h3>6. Provide &#8220;right now&#8221; interaction through lots of forms.</h3>
<p>You really want a form on the home page of your website and as many of the other pages as possible.  The idea is to make it seem obvious to the visitor that they are choosing not to contact you.  Call to action. Call to action.  Call to action.  Just do it over and over again and you&#8217;ll get markedly increased feedback and that will result in conversions to sales.</p>
<p>For Example:</p>

                <div class='gform_wrapper' id='gform_wrapper_4' ><form method='post' enctype='multipart/form-data' target='gform_ajax_frame_4' id='gform_4' class='' action=''>
                        <div class='gform_heading'>
                            <h3 class='gform_title'>Blog Post Contact Form</h3>
                            <span class='gform_description'></span>
                        </div>
                        <div class='gform_body'>
                            <input type='hidden' class='gform_hidden' name='is_submit_4' value='1'/>
                            <ul id='gform_fields_4' class='gform_fields top_label'><li id='field_4_1' class='gfield' ><label class='gfield_label' for='input_4_1'>Name<span class='gfield_required'>*</span></label><div class='ginput_container'><input name='input_1' id='input_4_1' type='text' value='' class='medium' tabindex='1' /></div></li><li id='field_4_2' class='gfield    homeformemail' ><label class='gfield_label' for='input_4_2'>Email<span class='gfield_required'>*</span></label><div class='ginput_container'><input name='input_2' id='input_4_2' type='email' value='' class='medium'  tabindex='2'  /></div></li><li id='field_4_3' class='gfield    homeformphone' ><label class='gfield_label' for='input_4_3'>Phone</label><div class='ginput_container'><input name='input_3' id='input_4_3' type='tel' value='' class='medium' tabindex='3' /></div></li><li id='field_4_4' class='gfield' ><label class='gfield_label' for='input_4_4'>What kind of services are you interested in?</label><div class='ginput_container'><ul class='gfield_checkbox' id='input_4_4'><li class='gchoice_4_1'><input name='input_4.1' type='checkbox'  value='Web Design and Hosting'  id='choice_4_1' tabindex='4'  /><label for='choice_4_1'>Web Design and Hosting</label></li><li class='gchoice_4_2'><input name='input_4.2' type='checkbox'  value='BigCommerce Site Design'  id='choice_4_2' tabindex='5'  /><label for='choice_4_2'>BigCommerce Site Design</label></li><li class='gchoice_4_3'><input name='input_4.3' type='checkbox'  value='Blog Design'  id='choice_4_3' tabindex='6'  /><label for='choice_4_3'>Blog Design</label></li><li class='gchoice_4_4'><input name='input_4.4' type='checkbox'  value='Business Blog Management and Consulting'  id='choice_4_4' tabindex='7'  /><label for='choice_4_4'>Business Blog Management and Consulting</label></li><li class='gchoice_4_5'><input name='input_4.5' type='checkbox'  value='Internet Marketing / Advertising'  id='choice_4_5' tabindex='8'  /><label for='choice_4_5'>Internet Marketing / Advertising</label></li><li class='gchoice_4_6'><input name='input_4.6' type='checkbox'  value='SEO Consulting'  id='choice_4_6' tabindex='9'  /><label for='choice_4_6'>SEO Consulting</label></li><li class='gchoice_4_7'><input name='input_4.7' type='checkbox'  value='Other'  id='choice_4_7' tabindex='10'  /><label for='choice_4_7'>Other</label></li></ul></div></li><li id='field_4_5' class='gfield' ><label class='gfield_label' for='input_4_5'>Further comments or instructions for contacting you:</label><div class='ginput_container'><textarea name='input_5' id='input_4_5' class='textarea medium' tabindex='11'  rows='10' cols='50'></textarea></div></li>
                            </ul>
                        </div>
                        <div class='gform_footer top_label'><input type='submit' id='gform_submit_button_4' class='button' value='Submit' tabindex='12'/><iframe style='display:none; width:0px; height:0px;' src='about:blank' name='gform_ajax_frame_4' id='gform_ajax_frame_4'></iframe><script type='text/javascript'>jQuery(document).ready(function(){jQuery('#gform_4').submit(function(){jQuery('#gform_submit_button_4').attr('disabled', 'disabled').after('<img id="gform_ajax_spinner_4"  class="gform_ajax_spinner" src="http://crazytreemedia.com/wp-content/plugins/gravityforms/images/spinner.gif" />');jQuery('#gform_ajax_frame_4').load( function(){var form_content = jQuery(this).contents().find('#gform_wrapper_4');var confirmation_content = jQuery(this).contents().find('#gforms_confirmation_message');jQuery('#gform_submit_button_4').removeAttr('disabled');if(form_content.length > 0){jQuery('#gform_wrapper_4').html(form_content.html());gformInitDatepicker();}else if(confirmation_content.length > 0){setTimeout(function(){jQuery('#gform_wrapper_4').replaceWith('<' + 'div id=\'gforms_confirmation_message\'' + '>' + confirmation_content.html() + '<' + '/div' + '>');}, 50);}else{jQuery('#gform_wrapper_4').append(jQuery(this).contents().find('*').html());gformRedirect();}});});});</script><input type='hidden' name='gform_ajax' value='form_id=4&title=1&description=1' /><input type='hidden' name='gform_ajax_field_values' value='' />
                        </div>
                </form>
                </div>
<p>I recently changed a client&#8217;s site who offers flight training.  We went from a somewhat hard to find (but logically placed) form to having the same form on four or five of the flight school pages.  Responses increased ten-fold <em>immediately</em>.  Lots of ways to interact are critical.  Social media sharing buttons are great for this as well.</p>
<p align="center">&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>It requires a multi-faceted plan of attack to gain an advantage in today&#8217;s web.  The good news is that many industries are just getting going down these roads so leaders who get it right now will be in what my grandpa used to call &#8220;the catbird&#8217;s seat&#8221; a few years down the road when these things are no longer &#8220;optional&#8221; to success.</p>
<p>When we&#8217;re not busy with our growing portfolio of online publications, we help others accomplish these things with their online presence.  Use the form above (it&#8217;s real, not just for show!) to contact us today if we can help you.</p></p>
<p>The post <a href="http://crazytreemedia.com/six-must-haves-for-a-great-website/">Six Must-Haves For A Great Website</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://crazytreemedia.com/six-must-haves-for-a-great-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>$100 Free AdWords Advertising</title>
		<link>http://crazytreemedia.com/100-free-adwords-advertising/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=100-free-adwords-advertising</link>
		<comments>http://crazytreemedia.com/100-free-adwords-advertising/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 15:45:54 +0000</pubDate>
		<dc:creator>Tim Layton</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://crazytreemedia.com/?p=403</guid>
		<description><![CDATA[<p>You know, we weren&#8217;t always in the Internet Business.  I (Tim) used to be in the remodeling business, and Kim used to help me with that and spend the rest of her time homeschooling our two boys.
I mention that because I&#8217;m reminded this morning about a saying one of my remodeling clients put in ...</p><p>The post <a href="http://crazytreemedia.com/100-free-adwords-advertising/">$100 Free AdWords Advertising</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-411" title="google_adwords" src="http://crazytreemedia.com/wp-content/uploads/2011/02/google_adwords-300x165.png" alt="" width="300" height="165" />You know, we weren&#8217;t always in the Internet Business.  I (Tim) used to be in the remodeling business, and Kim used to help me with that and spend the rest of her time homeschooling our two boys.</p>
<p>I mention that because I&#8217;m reminded this morning about a saying one of my remodeling clients put in my head and it has never left. &#8220;The cobbler&#8217;s kids need new shoes (or never have shoes?&#8221;  She said that in response to my whining that my house was always half remodeled, never done, which is EXACTLY how I feel about my website here at CrazyTreeMedia.com&#8230; half remodeled, never done.</p>
<p>But, as was the case when I was a remodeling contractor, it&#8217;s because we&#8217;re busy doing other work and building our service offering.  Which brings me, at long last, to my point:</p>
<p><strong>We Can Now Offer $100 in Free Google AdWords Advertising to our clients!</strong></p>
<p>Google AdWords is a great opportunity for businesses to get the word out online.  Equally effective for both local businesses and fully online concerns, AdWords has options and tweaks that can be set to perfectly target your ad and make your ad spend optimally effective.</p>
<p>We&#8217;ve completed a Google training program that has opened up this opportunity for us to offer coupons, just like the big hosting companies do!  Except we don&#8217;t just give you a coupon code and say &#8220;have a nice day!&#8221; with a smile and a wave.  We actually help you set-up your account and consider your advertising.</p>
<p>We can also help with Facebook Advertising which has some incredible (albeit a little freaky) targeting options that allow you to only display your ad to very interested groups, such as those who &#8220;like&#8221; related industry pages.</p>
<p>Let us know how we can help!<br />

                <div class='gform_wrapper' id='gform_wrapper_4' ><form method='post' enctype='multipart/form-data' target='gform_ajax_frame_4' id='gform_4' class='' action=''>
                        <div class='gform_heading'>
                            <h3 class='gform_title'>Blog Post Contact Form</h3>
                            <span class='gform_description'></span>
                        </div>
                        <div class='gform_body'>
                            <input type='hidden' class='gform_hidden' name='is_submit_4' value='1'/>
                            <ul id='gform_fields_4' class='gform_fields top_label'><li id='field_4_1' class='gfield' ><label class='gfield_label' for='input_4_1'>Name<span class='gfield_required'>*</span></label><div class='ginput_container'><input name='input_1' id='input_4_1' type='text' value='' class='medium' tabindex='1' /></div></li><li id='field_4_2' class='gfield    homeformemail' ><label class='gfield_label' for='input_4_2'>Email<span class='gfield_required'>*</span></label><div class='ginput_container'><input name='input_2' id='input_4_2' type='email' value='' class='medium'  tabindex='2'  /></div></li><li id='field_4_3' class='gfield    homeformphone' ><label class='gfield_label' for='input_4_3'>Phone</label><div class='ginput_container'><input name='input_3' id='input_4_3' type='tel' value='' class='medium' tabindex='3' /></div></li><li id='field_4_4' class='gfield' ><label class='gfield_label' for='input_4_4'>What kind of services are you interested in?</label><div class='ginput_container'><ul class='gfield_checkbox' id='input_4_4'><li class='gchoice_4_1'><input name='input_4.1' type='checkbox'  value='Web Design and Hosting'  id='choice_4_1' tabindex='4'  /><label for='choice_4_1'>Web Design and Hosting</label></li><li class='gchoice_4_2'><input name='input_4.2' type='checkbox'  value='BigCommerce Site Design'  id='choice_4_2' tabindex='5'  /><label for='choice_4_2'>BigCommerce Site Design</label></li><li class='gchoice_4_3'><input name='input_4.3' type='checkbox'  value='Blog Design'  id='choice_4_3' tabindex='6'  /><label for='choice_4_3'>Blog Design</label></li><li class='gchoice_4_4'><input name='input_4.4' type='checkbox'  value='Business Blog Management and Consulting'  id='choice_4_4' tabindex='7'  /><label for='choice_4_4'>Business Blog Management and Consulting</label></li><li class='gchoice_4_5'><input name='input_4.5' type='checkbox'  value='Internet Marketing / Advertising'  id='choice_4_5' tabindex='8'  /><label for='choice_4_5'>Internet Marketing / Advertising</label></li><li class='gchoice_4_6'><input name='input_4.6' type='checkbox'  value='SEO Consulting'  id='choice_4_6' tabindex='9'  /><label for='choice_4_6'>SEO Consulting</label></li><li class='gchoice_4_7'><input name='input_4.7' type='checkbox'  value='Other'  id='choice_4_7' tabindex='10'  /><label for='choice_4_7'>Other</label></li></ul></div></li><li id='field_4_5' class='gfield' ><label class='gfield_label' for='input_4_5'>Further comments or instructions for contacting you:</label><div class='ginput_container'><textarea name='input_5' id='input_4_5' class='textarea medium' tabindex='11'  rows='10' cols='50'></textarea></div></li>
                            </ul>
                        </div>
                        <div class='gform_footer top_label'><input type='submit' id='gform_submit_button_4' class='button' value='Submit' tabindex='12'/><iframe style='display:none; width:0px; height:0px;' src='about:blank' name='gform_ajax_frame_4' id='gform_ajax_frame_4'></iframe><script type='text/javascript'>jQuery(document).ready(function(){jQuery('#gform_4').submit(function(){jQuery('#gform_submit_button_4').attr('disabled', 'disabled').after('<img id="gform_ajax_spinner_4"  class="gform_ajax_spinner" src="http://crazytreemedia.com/wp-content/plugins/gravityforms/images/spinner.gif" />');jQuery('#gform_ajax_frame_4').load( function(){var form_content = jQuery(this).contents().find('#gform_wrapper_4');var confirmation_content = jQuery(this).contents().find('#gforms_confirmation_message');jQuery('#gform_submit_button_4').removeAttr('disabled');if(form_content.length > 0){jQuery('#gform_wrapper_4').html(form_content.html());gformInitDatepicker();}else if(confirmation_content.length > 0){setTimeout(function(){jQuery('#gform_wrapper_4').replaceWith('<' + 'div id=\'gforms_confirmation_message\'' + '>' + confirmation_content.html() + '<' + '/div' + '>');}, 50);}else{jQuery('#gform_wrapper_4').append(jQuery(this).contents().find('*').html());gformRedirect();}});});});</script><input type='hidden' name='gform_ajax' value='form_id=4&title=1&description=1' /><input type='hidden' name='gform_ajax_field_values' value='' />
                        </div>
                </form>
                </div></p>
<p>The post <a href="http://crazytreemedia.com/100-free-adwords-advertising/">$100 Free AdWords Advertising</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://crazytreemedia.com/100-free-adwords-advertising/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Knowing How to Answer: What Do You Do?</title>
		<link>http://crazytreemedia.com/knowing-how-to-answer-what-do-you-do/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=knowing-how-to-answer-what-do-you-do</link>
		<comments>http://crazytreemedia.com/knowing-how-to-answer-what-do-you-do/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 14:51:51 +0000</pubDate>
		<dc:creator>Tim Layton</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://crazytreemedia.com/?p=370</guid>
		<description><![CDATA[<p>The following little imaginary interaction is something I would normally keep to myself.  Just a thought exercise.  Wouldn&#8217;t want people thinking I have a multiple personality disorder or anything&#8230;
But the truth is that many of our clients face this same process themselves and for some, coming up with the answer isn&#8217;t easy.  ...</p><p>The post <a href="http://crazytreemedia.com/knowing-how-to-answer-what-do-you-do/">Knowing How to Answer: What Do You Do?</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></description>
				<content:encoded><![CDATA[<div id="attachment_371" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-371" title="Man With Stick" src="http://crazytreemedia.com/wp-content/uploads/2011/01/Man-with-stick-300x198.jpg" alt="" width="300" height="198" /><p class="wp-caption-text">Again!</p></div>
<p>The following little imaginary interaction is something I would normally keep to myself.  Just a thought exercise.  Wouldn&#8217;t want people thinking I have a multiple personality disorder or anything&#8230;</p>
<p>But the truth is that many of our clients face this same process themselves and for some, coming up with the answer isn&#8217;t easy.  That&#8217;s the nature of new things.  If you sell on Etsy, it&#8217;s hard to say &#8220;I sell ___ on Etsy.&#8221; because so many people don&#8217;t know what Etsy is.</p>
<p>If you&#8217;re a professional blogger, it&#8217;s even harder because of the minority of people who know what a blog is, the vast majority of them think of it strictly as a hobby.  So, to them, you might as well be saying &#8220;I&#8217;m a professional scrapbooker&#8221;.</p>
<p>Yet the need is there, especially if your business is a full-time income, to be able to quickly explain what you do.  Below, I&#8217;ve copied and pasted a little written exercise I did this morning.  I think it&#8217;s a good exercise for all business-owners to work through every once in awhile:</p>
<h3>What Do You Do?</h3>
<p>(italics are my imaginary business guru &#8211; that&#8217;s him above &#8211; he&#8217;s mean and whacks me with a stick when I mess up)</p>
<p><em>Explain what you do for a living in thirty seconds&#8230;go:</em></p>
<p>I own a company called Crazy Tree Media.  We build eCommerce websites and business blogs.  We also publish a few websites of our own where we sell advertising and products.  (what about the felt and Etsy shops)</p>
<p><em>Okay, that was not so good&#8230; try again:</em></p>
<p>I&#8217;m in the media business&#8230; er. I&#8217;m in media&#8230;. er. Online Media.</p>
<p><em>{Whack!}&#8230; This is pathetic&#8230; you have to be able to succinctly state your work.  Even if it is far-reaching or widespread&#8230; <strong>again!</strong></em></p>
<p><em>What do you do?</em></p>
<p>My wife and I own a few websites that sell online.  We also build eCommerce websites and business blogs for others.</p>
<p><em><strong>Again!</strong></em></p>
<p><em>What do you do?</em></p>
<p>We&#8217;re professional bloggers. (I almost ended that with a question mark!)(insert quizzical look from other person here) Do you know what a blog is?  We write online, it&#8217;s much like a magazine, like a trade publication&#8230;</p>
<p><em>Stop! <strong>Again!</strong></em></p>
<p><em>What do you do?</em></p>
<p>(I used to be able to just say &#8220;I&#8217;m a remodeling contractor.&#8221; and that was it.  Next question was usually &#8216;What type of remodeling?&#8217; or &#8220;Really, we&#8217;ve been wanting to add-on&#8221;&#8230;)</p>
<p><em>{Double whack}&#8230;. Stop rambling!  <strong>Again!</strong></em></p>
<p><em>What do you do?</em></p>
<p>We build marketing machines online.</p>
<p>(quizzical look)</p>
<p>We help people build businesses by teaching them how to use their websites, blogs, and social media effectively.</p>
<p><em>Good.</em></p>
<h3>A New Outlook</h3>
<p>As a result of this exercise, I now have this new statement: We build business marketing machines online.  And that really sums it up.  That&#8217;s what we do.</p>
<p>okay then&#8230;</p>
<p>The post <a href="http://crazytreemedia.com/knowing-how-to-answer-what-do-you-do/">Knowing How to Answer: What Do You Do?</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://crazytreemedia.com/knowing-how-to-answer-what-do-you-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Truth About Good Websites</title>
		<link>http://crazytreemedia.com/the-truth-about-good-websites/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-truth-about-good-websites</link>
		<comments>http://crazytreemedia.com/the-truth-about-good-websites/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 01:04:11 +0000</pubDate>
		<dc:creator>Tim Layton</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://crazytreemedia.com/?p=308</guid>
		<description><![CDATA[<p>I&#8217;ve been working on the redesign for the CrazyTree Media website for a solid 48 hours with a precious few given to sleep.  As I&#8217;ve got so far yet to go it brings the truth of the matter to mind&#8230;

A good website is never done
A good website is more akin to a periodical than a ...</p><p>The post <a href="http://crazytreemedia.com/the-truth-about-good-websites/">The Truth About Good Websites</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been working on the redesign for the CrazyTree Media website for a solid 48 hours with a precious few given to sleep.  As I&#8217;ve got so far yet to go it brings the truth of the matter to mind&#8230;</p>
<ul>
<li>A good website is never done</li>
<li>A good website is more akin to a periodical than a brochure</li>
<li>A good website is FULL of useful information</li>
<li>A good website is an experience (preferably not a painful one!)</li>
<li>A good website is authentic, transparent, and sincere</li>
<li>A good website is encouraging and inspiring</li>
<li>A good website  treats each page with the same importance as the home page (working on it&#8230;)</li>
<li>A good website is current</li>
<li>A good website is interactive</li>
<li>A good website is&#8230; Worth it!</li>
</ul>
<p><img class="alignright size-full wp-image-309" title="bullseye" src="http://crazytreemedia.com/wp-content/uploads/2010/12/bullseye.jpg" alt="" width="275" height="183" />It&#8217;s true.  A good website in the modern web is so much more than just a few pages of pictures and words.  The list of things that can go into making a great website is endless and it changes every day.</p>
<p>We&#8217;re excited about being a part of those changes and hope you&#8217;ll forgive us for any points above where we&#8217;re yet to make the grade!</p>
<p>Like the first point so eloquently states&#8230; we ain&#8217;t done yet.</p>
<p>The post <a href="http://crazytreemedia.com/the-truth-about-good-websites/">The Truth About Good Websites</a> appeared first on <a href="http://crazytreemedia.com">Crazy Tree Media</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://crazytreemedia.com/the-truth-about-good-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
