<?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>Rainmaker Web Design</title>
	<atom:link href="http://rainmakerwebdesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rainmakerwebdesign.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 03 Feb 2010 03:57:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Internet Explorer 6&#8217;s last nail in the coffin: Google</title>
		<link>http://rainmakerwebdesign.com/html/internet-explorer-6s-last-nail-in-the-coffin-google/</link>
		<comments>http://rainmakerwebdesign.com/html/internet-explorer-6s-last-nail-in-the-coffin-google/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 03:55:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[IE6]]></category>

		<guid isPermaLink="false">http://rainmakerwebdesign.com/?p=422</guid>
		<description><![CDATA[What&#8217;s the #1 reason I enjoy doing back end programming instead of front end design? No, it&#8217;s not my lackluster aptitude at graphic design - it&#8217;s internet explorer version 6.
See, IE6 thinks it&#8217;s better than everybody else, and I&#8217;m thankful to the lord that even Big G is now backing up.  It ignores internet wide [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://rainmakerwebdesign.com/wp-content/uploads/2010/02/ie6-sucks-balls1.png"><img class="alignright size-full wp-image-427" title="ie6-sucks-balls" src="http://rainmakerwebdesign.com/wp-content/uploads/2010/02/ie6-sucks-balls1.png" alt="" width="280" height="280" /></a>What&#8217;s the #1 reason I enjoy doing back end programming instead of front end design? No, it&#8217;s not my lackluster aptitude at graphic design -<strong> it&#8217;s internet explorer version 6.</strong></p>
<p>See, IE6 thinks it&#8217;s better than everybody else, and I&#8217;m thankful to the lord that even Big G is now backing up.  It ignores internet wide standards like xhtml and css, and follows it&#8217;s own rules. Yesterday, Google announced that it is<a href="http://googleenterprise.blogspot.com/2010/01/modern-browsers-for-modern-applications.html"> ending it&#8217;s support for IE 6</a>!  The version 6 basher&#8217;s list is long and somewhat illustrious, even including it&#8217;s developer &#8211; Microsoft.</p>
<p>In short, I&#8217;ll save you guys the <a href="http://davidwalsh.name/6-reasons-why-ie6-must-die">techno explanation</a> of why IE6 is bain of all web designers&#8217; existence &#8211; and just say that over 20% of front-end development time goes into bug fixing and hacking custom scripts and styles for a program that was released before those bastards took out the twin towers.</p>
<p>At some point, we&#8217;re going to have to enact a surcharge for IE 6 compliance &#8211; and I wonder how many other firms are already doing this or forgetting IE 6 entirely?</p>
]]></content:encoded>
			<wfw:commentRss>http://rainmakerwebdesign.com/html/internet-explorer-6s-last-nail-in-the-coffin-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert an ALL CAPS string to first character capitalized onlyALL</title>
		<link>http://rainmakerwebdesign.com/php/convert-an-all-caps-string-to-first-character-capitalized-onlyall/</link>
		<comments>http://rainmakerwebdesign.com/php/convert-an-all-caps-string-to-first-character-capitalized-onlyall/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 02:07:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://rainmakerwebdesign.com/?p=416</guid>
		<description><![CDATA[Nothing new to you php gurus, but hope this can help somebody looking for a quick fix &#8211; great to filter user inputs in things like addresses, company names, and yes  regular ole names. It utilizes PHP&#8217;s ucwords() and strtolower():

&#60;?
$userInput1 = &#8220;MR. CAPITAL LETTERS&#8221;;
$userInput2 = &#8220;mrs. lowercase letters&#8221;;
ucwords(strtolower($userInput1));  //outputs &#8220;Mr. Capital Letters&#8221;
ucwords(strtolower($userInput2));  [...]]]></description>
			<content:encoded><![CDATA[<p>Nothing new to you php gurus, but hope this can help somebody looking for a quick fix &#8211; great to filter user inputs in things like addresses, company names, and yes  regular ole names. It utilizes PHP&#8217;s ucwords() and strtolower():</p>
<div class="code">
<p>&lt;?</p>
<p>$userInput1 = &#8220;MR. CAPITAL LETTERS&#8221;;<br />
$userInput2 = &#8220;mrs. lowercase letters&#8221;;</p>
<p>ucwords(strtolower($userInput1));  //outputs &#8220;Mr. Capital Letters&#8221;<br />
ucwords(strtolower($userInput2));  //outputs &#8220;Mrs. Lowercase Letters&#8221;</p>
<p>?&gt;</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://rainmakerwebdesign.com/php/convert-an-all-caps-string-to-first-character-capitalized-onlyall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>States HTML Select List w/ PHP Selected Value</title>
		<link>http://rainmakerwebdesign.com/php/states-html-select-list-w-php-selected-value/</link>
		<comments>http://rainmakerwebdesign.com/php/states-html-select-list-w-php-selected-value/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 21:39:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://rainmakerwebdesign.com/?p=405</guid>
		<description><![CDATA[I always have trouble finding this, so here it is.  The if statement in the checkState() function can be replaced with anything you like to select the option by default&#8230;
&#60;?
function checkState($state) {
  if ($row['state'] == $state) {
    echo ' selected="selected"';
  }
}
?&#62;
&#60;select name="state" id="state"&#62;
 &#60;option value="--"&#60;? checkState('') ?&#62;&#62;Select...&#60;/option&#62;
 &#60;option value="AL"&#60;? checkState('AL'); [...]]]></description>
			<content:encoded><![CDATA[<p>I always have trouble finding this, so here it is.  The <em>if statement</em> in the checkState() function can be replaced with anything you like to select the option by default&#8230;</p>
<pre class="code">&lt;?
function checkState($state) {
  if ($row['state'] == $state) {
    echo ' selected="selected"';
  }
}
?&gt;
<pre>&lt;select name="state" id="state"&gt;</pre>
<pre> &lt;option value="--"&lt;? checkState('') ?&gt;&gt;Select...&lt;/option&gt;</pre>
<pre> &lt;option value="AL"&lt;? checkState('AL'); ?&gt;&gt;Alabama&lt;/option&gt;</pre>
<pre> &lt;option value="AK"&lt;? checkState('AK'); ?&gt;&gt;Alaska&lt;/option&gt;</pre>
<pre> &lt;option value="AZ"&lt;? checkState('AZ'); ?&gt;&gt;Arizona&lt;/option&gt;</pre>
<pre> &lt;option value="AR"&lt;? checkState('AR'); ?&gt;&gt;Arkansas&lt;/option&gt;</pre>
<pre> &lt;option value="CA"&lt;? checkState('CA'); ?&gt;&gt;California&lt;/option&gt;</pre>
<pre> &lt;option value="CO"&lt;? checkState('CO'); ?&gt;&gt;Colorado&lt;/option&gt;</pre>
<pre> &lt;option value="CT"&lt;? checkState('CT'); ?&gt;&gt;Connecticut&lt;/option&gt;</pre>
<pre> &lt;option value="DE"&lt;? checkState('DE'); ?&gt;&gt;Delaware&lt;/option&gt;</pre>
<pre> &lt;option value="DC"&lt;? checkState('DC'); ?&gt;&gt;District Of Columbia&lt;/option&gt;</pre>
<pre> &lt;option value="FL"&lt;? checkState('FL'); ?&gt;&gt;Florida&lt;/option&gt;</pre>
<pre> &lt;option value="GA"&lt;? checkState('GA'); ?&gt;&gt;Georgia&lt;/option&gt;</pre>
<pre> &lt;option value="HI"&lt;? checkState('HI'); ?&gt;&gt;Hawaii&lt;/option&gt;</pre>
<pre> &lt;option value="ID"&lt;? checkState('ID'); ?&gt;&gt;Idaho&lt;/option&gt;</pre>
<pre> &lt;option value="IL"&lt;? checkState('IL'); ?&gt;&gt;Illinois&lt;/option&gt;</pre>
<pre> &lt;option value="IN"&lt;? checkState('IN'); ?&gt;&gt;Indiana&lt;/option&gt;</pre>
<pre> &lt;option value="IA"&lt;? checkState('IA'); ?&gt;&gt;Iowa&lt;/option&gt;</pre>
<pre> &lt;option value="KS"&lt;? checkState('KS'); ?&gt;&gt;Kansas&lt;/option&gt;</pre>
<pre> &lt;option value="KY"&lt;? checkState('KY'); ?&gt;&gt;Kentucky&lt;/option&gt;</pre>
<pre> &lt;option value="LA"&lt;? checkState('LA'); ?&gt;&gt;Louisiana&lt;/option&gt;</pre>
<pre> &lt;option value="ME"&lt;? checkState('ME'); ?&gt;&gt;Maine&lt;/option&gt;</pre>
<pre> &lt;option value="MD"&lt;? checkState('MD'); ?&gt;&gt;Maryland&lt;/option&gt;</pre>
<pre> &lt;option value="MA"&lt;? checkState('MA'); ?&gt;&gt;Massachusetts&lt;/option&gt;</pre>
<pre> &lt;option value="MI"&lt;? checkState('MI'); ?&gt;&gt;Michigan&lt;/option&gt;</pre>
<pre> &lt;option value="MN"&lt;? checkState('MN'); ?&gt;&gt;Minnesota&lt;/option&gt;</pre>
<pre> &lt;option value="MS"&lt;? checkState('MS'); ?&gt;&gt;Mississippi&lt;/option&gt;</pre>
<pre> &lt;option value="MO"&lt;? checkState('MO'); ?&gt;&gt;Missouri&lt;/option&gt;</pre>
<pre> &lt;option value="MT"&lt;? checkState('MT'); ?&gt;&gt;Montana&lt;/option&gt;</pre>
<pre> &lt;option value="NE"&lt;? checkState('NE'); ?&gt;&gt;Nebraska&lt;/option&gt;</pre>
<pre> &lt;option value="NV"&lt;? checkState('NV'); ?&gt;&gt;Nevada&lt;/option&gt;</pre>
<pre> &lt;option value="NH"&lt;? checkState('NH'); ?&gt;&gt;New Hampshire&lt;/option&gt;</pre>
<pre> &lt;option value="NJ"&lt;? checkState('NJ'); ?&gt;&gt;New Jersey&lt;/option&gt;</pre>
<pre> &lt;option value="NM"&lt;? checkState('NM'); ?&gt;&gt;New Mexico&lt;/option&gt;</pre>
<pre> &lt;option value="NY"&lt;? checkState('NY'); ?&gt;&gt;New York&lt;/option&gt;</pre>
<pre> &lt;option value="NC"&lt;? checkState('NC'); ?&gt;&gt;North Carolina&lt;/option&gt;</pre>
<pre> &lt;option value="ND"&lt;? checkState('ND'); ?&gt;&gt;North Dakota&lt;/option&gt;</pre>
<pre> &lt;option value="OH"&lt;? checkState('OH'); ?&gt;&gt;Ohio&lt;/option&gt;</pre>
<pre> &lt;option value="OK"&lt;? checkState('OK'); ?&gt;&gt;Oklahoma&lt;/option&gt;</pre>
<pre> &lt;option value="OR"&lt;? checkState('OR'); ?&gt;&gt;Oregon&lt;/option&gt;</pre>
<pre> &lt;option value="PA"&lt;? checkState('PA'); ?&gt;&gt;Pennsylvania&lt;/option&gt;</pre>
<pre> &lt;option value="RI"&lt;? checkState('RI'); ?&gt;&gt;Rhode Island&lt;/option&gt;</pre>
<pre> &lt;option value="SC"&lt;? checkState('SC'); ?&gt;&gt;South Carolina&lt;/option&gt;</pre>
<pre> &lt;option value="SD"&lt;? checkState('SD'); ?&gt;&gt;South Dakota&lt;/option&gt;</pre>
<pre> &lt;option value="TN"&lt;? checkState('TN'); ?&gt;&gt;Tennessee&lt;/option&gt;</pre>
<pre> &lt;option value="TX"&lt;? checkState('TX'); ?&gt;&gt;Texas&lt;/option&gt;</pre>
<pre> &lt;option value="UT"&lt;? checkState('UT'); ?&gt;&gt;Utah&lt;/option&gt;</pre>
<pre> &lt;option value="VT"&lt;? checkState('VT'); ?&gt;&gt;Vermont&lt;/option&gt;</pre>
<pre> &lt;option value="VA"&lt;? checkState('VA'); ?&gt;&gt;Virginia&lt;/option&gt;</pre>
<pre> &lt;option value="WA"&lt;? checkState('WA'); ?&gt;&gt;Washington&lt;/option&gt;</pre>
<pre> &lt;option value="WV"&lt;? checkState('WV'); ?&gt;&gt;West Virginia&lt;/option&gt;</pre>
<pre> &lt;option value="WI"&lt;? checkState('WI'); ?&gt;&gt;Wisconsin&lt;/option&gt;</pre>
<pre> &lt;option value="WY"&lt;? checkState('WY'); ?&gt;&gt;Wyoming&lt;/option&gt;</pre>
<pre>&lt;/select&gt;</pre>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://rainmakerwebdesign.com/php/states-html-select-list-w-php-selected-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GreenBizLocal.com Launches! Brings Green Business Search  to Google Maps</title>
		<link>http://rainmakerwebdesign.com/rainmaker-sites/greenbizlocal-com-launches-brings-green-business-search-to-google-maps/</link>
		<comments>http://rainmakerwebdesign.com/rainmaker-sites/greenbizlocal-com-launches-brings-green-business-search-to-google-maps/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 21:19:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Rainmaker Sites]]></category>
		<category><![CDATA[web applications]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://rainmakerwebdesign.com/?p=399</guid>
		<description><![CDATA[Well we just launched GreenBiz Local, a mapping / directory site displaying green businesses across the USA. So far the turnout has been good, and we now have about 5500 businesses from all 50 states.
GreenBiz Local includes a map search function, city/state directory, and a paid upgrade option.  The paid option allows users to [...]]]></description>
			<content:encoded><![CDATA[<p>Well we just launched <a href="http://greenbizlocal.com">GreenBiz Local</a>, a mapping / directory site displaying green businesses across the USA. So far the turnout has been good, and we now have about 5500 businesses from all 50 states.</p>
<p>GreenBiz Local includes a map search function, city/state directory, and a paid upgrade option.  The paid option allows users to change their map marker from a little red one to a big, pretty green one as well as a new tab for a business description, and one more for images of the business and/or it&#8217;s products.</p>
<p><a href="http://greenbizlocal.com"><img class="aligncenter size-full wp-image-400" title="GBL Screenshot" src="http://rainmakerwebdesign.com/wp-content/uploads/2010/01/GBL-Screenshot.jpg" alt="" width="620" height="469" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://rainmakerwebdesign.com/rainmaker-sites/greenbizlocal-com-launches-brings-green-business-search-to-google-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What makes a great fishing guide/charter website?</title>
		<link>http://rainmakerwebdesign.com/outdoors-websites/what-makes-a-great-fishing-guidecharter-website/</link>
		<comments>http://rainmakerwebdesign.com/outdoors-websites/what-makes-a-great-fishing-guidecharter-website/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 06:31:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fishing Web Design & SEO]]></category>
		<category><![CDATA[Outdoors Websites]]></category>

		<guid isPermaLink="false">http://rainmakerwebdesign.com/?p=396</guid>
		<description><![CDATA[Features of a great Fishing Website

Photos
As in many industries online, pictures sell.  A clean, frequently updated photo gallery of all the gamefish in your backyard is the surest way to make anglers salivate.  Don&#8217;t forget to bring the camera on outings, you don&#8217;t want to miss that monster that your client just dragged [...]]]></description>
			<content:encoded><![CDATA[<h3>Features of a great Fishing Website</h3>
<ul>
<li><strong>Photos</strong><br />
As in many industries online, pictures sell.  A clean, frequently updated photo gallery of all the gamefish in your backyard is the surest way to make anglers salivate.  Don&#8217;t forget to bring the camera on outings, you don&#8217;t want to miss that monster that your client just dragged in &#8211; and make sure to get their ear to ear grin in the shot too.</li>
<li><strong>Testimonials</strong><br />
Clients in all businesses love to hear first hand how great their experience was working with you.  Include lots of them.  Getting testimonials is as easy as asking them to jot one down on a notecard on the ride back to the marina, or while you are fileting their catch.</li>
<li><strong>Fishing Reports</strong><br />
This is where you get to prove that you are the expert.  It can be done weekly or monthly, but beware, a fishing report section that hasn&#8217;t been updated since 2006 is a sure turn off.</li>
<li><strong>Blog</strong><br />
Blogs can be a variation of the fishing reports above, but they can also be so much more.  Blogging is an informal style of writing, which helps build trust and credibility.  Also, search engines love blogs!</li>
<li><strong>Seasonal Activity by Species</strong><br />
Do tarpon run in the Islamorada channels in April?  When&#8217;s the best time for black grouper in Cabo?  These are essential questions you should answer for your potential customers, and they will thank you with their wallets.</li>
<li><strong>Boat and Tackle Information</strong><br />
Include a photo or two, as well as a description of your vessel(s).  Mention things like whether or not a head is on board, length, shallow draft, and any other creature comforts available.  Also, specify what kind of tackle and rigging is on board, and whether everything is provided for clients.</li>
<li><strong>Rates</strong><br />
Whole day, half day, multi-day packages available?  Be sure to mention whether or not fuel surcharges are included or extra.  Oh, and don&#8217;t forget to mention that gratuity is appreciated!</li>
<li><strong>Online Booking</strong><br />
This can be a simple or complex as you like.  Whether it is a simple form sending the request via email, or an integrated solution with availability calendar and a secure credit card gateway &#8211; the idea is the same:  Entice potential clients to some level of commitment as early and as often as you can.</li>
<li><strong>Weather</strong><br />
Again, this can be as easy as placing a weather widget on your site or blog, or even embedding the surface temp. and small craft warnings.  What is important, is that you&#8217;re clients will know what to expect.  Tell them about the predictability of Florida afternoon thunderstorms, or the unpredictability of mountain weather systems.</li>
<li><strong>What to bring?</strong><br />
Can we bring beer?  Do I need my own cooler?  Beyond beverages, remind clients of the value of sunscreen, bug repellant, and rain gear if applicable. Remember those before mentioned testimonials?</li>
<li><strong>Regulations/Seasons</strong><br />
Is snook season open in May?  A list of what gamefish are in season can be done by species or month, but a good idea would be to include what is in season and what&#8217;s hot at the top of the page.</li>
<li><strong>Video</strong><br />
Cheap point and shoot cameras now offer fairly decent video quality.  Combine this with services like Youtube, and you&#8217;ve got a tool for delivering excitment and a personal touch through the world wide web.  Who doesn&#8217;t want to see a chick in a bikini land a 400 lb. marlin?</li>
<li><strong>Excursion Types</strong><br />
Make sure to let clients know if you specialize in reef outings, backcountry, deep sea, or on the fly excursions.</li>
<li><strong>Contact</strong><br />
Sounds obvious, but make sure that they can find your phone number or send you an email <em>easily</em>.</li>
<li><strong>Awards/Tournament Experience</strong><br />
You&#8217;re not bragging, you&#8217;re applying for a job.  If you&#8217;ve gone up against the best, and come out on top, make sure to showcase it.</li>
<li><strong>Captain Bio</strong><br />
This gives a personal touch.  The more you list, the better chance that some tidbit will form a personal connection, such as a common birthplace or favorite sports team.</li>
<li><strong>Lodging and Directions</strong><br />
First, make sure they know how to get to the marina.  Also, links and numbers for local hotels and lodging that are convenient to your dock.  A personal touch could include price ranges and even reviews!</li>
</ul>
<h3>Other useful features:</h3>
<ul>
<li>Travel info including airports, car rental, etc.</li>
<li>Local restaurants</li>
<li>&#8220;Things to do&#8221; &#8211; activities for days off the water</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://rainmakerwebdesign.com/outdoors-websites/what-makes-a-great-fishing-guidecharter-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>350+ Facebook Fans in a Week</title>
		<link>http://rainmakerwebdesign.com/fishing-web-design/350-facebook-fans-in-a-week/</link>
		<comments>http://rainmakerwebdesign.com/fishing-web-design/350-facebook-fans-in-a-week/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 19:51:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fishing Web Design & SEO]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://rainmakerwebdesign.com/?p=373</guid>
		<description><![CDATA[Social Media, Social Networking, Facebook]]></description>
			<content:encoded><![CDATA[<p><img src="https://www.benning.army.mil/infantry/basictraining/img/facebook_logo.png" alt="facebook_logo" title="facebook_logo" width="311" height="311" class="alignright size-full wp-image-377" /><br />
Well thanks to everyone for their continued support, the <a href="http://www.facebook.com/#/pages/Fishing-Website-Designs-by-Rainmaker/203340091211">Fishing Websites by Rainmaker</a> fan page now has over 350 fans.  </p>
<p>We&#8217;ll be adding tips and tricks to the fan page that help fishing guides &amp; charters get the most business out of the web, including of course &#8211; Facebook.</p>
<p>Come <a href="http://www.facebook.com/#/pages/Fishing-Website-Designs-by-Rainmaker/203340091211">join up</a> if you haven&#8217;t already!</p>
]]></content:encoded>
			<wfw:commentRss>http://rainmakerwebdesign.com/fishing-web-design/350-facebook-fans-in-a-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Fishing Guide Website</title>
		<link>http://rainmakerwebdesign.com/rainmaker-sites/new-fishing-guide-website/</link>
		<comments>http://rainmakerwebdesign.com/rainmaker-sites/new-fishing-guide-website/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 16:57:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fishing Web Design & SEO]]></category>
		<category><![CDATA[Rainmaker Sites]]></category>

		<guid isPermaLink="false">http://rainmakerwebdesign.com/?p=172</guid>
		<description><![CDATA[We are pleased to announce the launch of Carolina Beach Fishing Charters, Atta Buoy Charter&#8217;s new home on the world wide web.  The site includes:

Search Engine Optimization
Custom NOAA weather report feed
What&#8217;s Biting Calendar
Content Management system including Fishing Reports Blog
All the usual goodies for our fishing sites

Here are some screen shots from the new site:
]]></description>
			<content:encoded><![CDATA[<p>We are pleased to announce the launch of <a href="http://charterfishingcarolinabeach.com/">Carolina Beach Fishing Charters</a>, Atta Buoy Charter&#8217;s new home on the world wide web.  The site includes:</p>
<ul>
<li>Search Engine Optimization</li>
<li>Custom NOAA weather report feed</li>
<li>What&#8217;s Biting Calendar</li>
<li>Content Management system including Fishing Reports Blog</li>
<li>All the usual goodies for our <a href="http://rainmakerwebdesign.com/fishing-seo-websites/">fishing sites</a></li>
</ul>
<p>Here are some screen shots from the new site:</p>

<a href='http://rainmakerwebdesign.com/rainmaker-sites/new-fishing-guide-website/attachment/atta3/' title='atta3'><img width="150" height="150" src="http://rainmakerwebdesign.com/wp-content/uploads/2009/07/atta3-150x150.jpg" class="attachment-thumbnail" alt="" title="atta3" /></a>
<a href='http://rainmakerwebdesign.com/rainmaker-sites/new-fishing-guide-website/attachment/atta2/' title='atta2'><img width="150" height="150" src="http://rainmakerwebdesign.com/wp-content/uploads/2009/07/atta2-150x150.jpg" class="attachment-thumbnail" alt="" title="atta2" /></a>
<a href='http://rainmakerwebdesign.com/rainmaker-sites/new-fishing-guide-website/attachment/atta1/' title='atta1'><img width="150" height="150" src="http://rainmakerwebdesign.com/wp-content/uploads/2009/07/atta1-150x150.jpg" class="attachment-thumbnail" alt="" title="atta1" /></a>

]]></content:encoded>
			<wfw:commentRss>http://rainmakerwebdesign.com/rainmaker-sites/new-fishing-guide-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Carolinian Boat Works:  New Marketing Client</title>
		<link>http://rainmakerwebdesign.com/rainmaker-sites/carolinian-boat-works-new-marketing-client/</link>
		<comments>http://rainmakerwebdesign.com/rainmaker-sites/carolinian-boat-works-new-marketing-client/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 16:47:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Rainmaker Sites]]></category>
		<category><![CDATA[Web Marketing]]></category>

		<guid isPermaLink="false">http://rainmakerwebdesign.com/?p=171</guid>
		<description><![CDATA[Rainmaker is pleased to announce a new partnership with Carolinian Boat Works, LLC.  Carolinian has secured Rainmaker Web Design to handle their on-line and off-line marketing and brand awareness.

Our partnership will entail:

Web Content Creation &#38; Management
Social Network Marketing (Facebook, Twitter, MySpace, etc.)
Press Release Distribution
Customer Relationship Management
Search Engine Optimization
Forum / Message Board Marketing
Blog Networking
Trade Show [...]]]></description>
			<content:encoded><![CDATA[<p>Rainmaker is pleased to announce a new partnership with <a href="http://carolinianboatworks.com">Carolinian Boat Works, LLC</a>.  Carolinian has secured Rainmaker Web Design to handle their on-line and off-line marketing and brand awareness.</p>
<p><a href="http://carolinianboatworks.com"><img class="aligncenter size-full wp-image-174" title="carolinianlogo" src="http://rainmakerwebdesign.com/wp-content/uploads/2009/07/carolinianlogo.jpg" alt="carolinianlogo" width="656" height="136" /></a></p>
<p><strong>Our partnership will entail:</strong></p>
<ul>
<li>Web Content Creation &amp; Management</li>
<li>Social Network Marketing (Facebook, Twitter, MySpace, etc.)</li>
<li>Press Release Distribution</li>
<li>Customer Relationship Management</li>
<li>Search Engine Optimization</li>
<li>Forum / Message Board Marketing</li>
<li>Blog Networking</li>
<li>Trade Show Representation</li>
<li>Product Placements</li>
</ul>
<p>We look forward to the exciting opportunity and will of course post some updates here periodically.</p>
]]></content:encoded>
			<wfw:commentRss>http://rainmakerwebdesign.com/rainmaker-sites/carolinian-boat-works-new-marketing-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Big Game Fishing Webiste</title>
		<link>http://rainmakerwebdesign.com/rainmaker-sites/new-big-game-fishing-webiste/</link>
		<comments>http://rainmakerwebdesign.com/rainmaker-sites/new-big-game-fishing-webiste/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 02:09:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fishing Web Design & SEO]]></category>
		<category><![CDATA[Rainmaker Sites]]></category>
		<category><![CDATA[charter fishing websites]]></category>
		<category><![CDATA[fishing websites]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://rainmakerwebdesign.com/?p=147</guid>
		<description><![CDATA[Sometimes working is just a blast!  Such was the case in creating Black &#38; Blue Fishing Club&#8217;s new home on the world wide web.  Features inlcude sheduling management, tag cloud &#38; other SEO goodies, fishing reports blog, flash header rotation, and others &#8211; but do be sure and check out their fishing photo gallery!
Screenshot:

]]></description>
			<content:encoded><![CDATA[<p>Sometimes working is just a blast!  Such was the case in creating <a title="Fishing Website Design" href="http://blackandbluefishing.com/">Black &amp; Blue Fishing Club&#8217;s</a> new home on the world wide web.  Features inlcude sheduling management, tag cloud &amp; other SEO goodies, fishing reports blog, flash header rotation, and others &#8211; but do be sure and check out their <a href="http://blackandbluefishing.com/fishing-photos/"><strong>fishing photo gallery</strong></a>!</p>
<p><span style="text-decoration: underline;"><strong>Screenshot:</strong></span><br />
<a href="http://blackandbluefishing.com/" target="_blank"><img src="http://rainmakerwebdesign.com/blackandblue.png" alt="fishing website design screenshot" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://rainmakerwebdesign.com/rainmaker-sites/new-big-game-fishing-webiste/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Worst SEO Mistake You Can Make</title>
		<link>http://rainmakerwebdesign.com/diy-seo/the-worst-seo-mistake-you-can-make/</link>
		<comments>http://rainmakerwebdesign.com/diy-seo/the-worst-seo-mistake-you-can-make/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 02:27:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DIY SEO]]></category>
		<category><![CDATA[Fishing Web Design & SEO]]></category>
		<category><![CDATA[Hunting Web Design & SEO]]></category>
		<category><![CDATA[Search Engine Optimization (SEO)]]></category>
		<category><![CDATA[Web Marketing]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://rainmakerwebdesign.com/diy-seo/the-worst-seo-mistake-you-can-make/</guid>
		<description><![CDATA[My hats off Brandt Dainow for a great primer on SEO Step 1 for any business.  The guy has been doing search engine marketing for over 12 years, which is a lifetime in this business.
First, why SEO over other marketing such as PPC?
Pay-per-click advertising is all very well, but it means you have to [...]]]></description>
			<content:encoded><![CDATA[<p>My hats off <a href="http://www.imediaconnection.com/bios/bio.aspx?id=3980">Brandt Dainow</a> for a great primer on <a href="http://www.imediaconnection.com/content/20052.asp" title="SEO Primer">SEO Step 1 for any business</a>.  The guy has been doing search engine marketing for over 12 years, which is a lifetime in this business.</p>
<p><strong>First, why SEO over other marketing such as PPC?</strong></p>
<p class="citation"><cite title="Worst SEO Mistake">Pay-per-click advertising is all very well, but it means you have to pay for every visitor. SEO is about getting free traffic from the search engines. Over the course of two years or more, nothing has a better return on investment than SEO. Thus, if you plan on having a website that runs for more than two years, search engine optimization should be a key part of your online marketing strategy. </cite></p>
<p><strong>So what is the worst SEO mistake that a company can make? </strong></p>
<p class="citation"><cite title="worst seo mistake 2">The most common mistake that organizations make with regard to SEO is bringing their SEO consultants into the process too late. Many companies fail to give SEO its due consideration during a website&#8217;s design phase. </cite></p>
<p><strong>So there you have it, from one of the godfathers of search engine marketing.</strong></p>
<p>Brandt goes on to list several key aspects to a successful SEO campaign that need attention during the design process, or what we like to call &#8220;On Page SEO.&#8221; Some crucial SEO techniques your design might forget are:</p>
<ul>
<li><strong>Search Engine Friendly URLS</strong><br />
www.abc.com/your-keyword.html <em>vs.</em> www.abc.com/page1.html</li>
<li><strong>Text Based Navigation Links</strong></li>
<li><strong>Use of CSS instead of Javascript or Flash</strong></li>
</ul>
<p>For more in depth info. on the why a SEO consultant should be contacted during a website&#8217;s design phase, check out the <a href="http://www.imediaconnection.com/content/20052.asp">whole article</a> or <a href="http://rainmakerwebdesign.com">give us a call</a> for an informative chat.</p>
]]></content:encoded>
			<wfw:commentRss>http://rainmakerwebdesign.com/diy-seo/the-worst-seo-mistake-you-can-make/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
