<?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>Richmond Hill Ga Website Design Web Design</title>
	<atom:link href="http://richmondhillwebdesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://richmondhillwebdesign.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 11 Jun 2010 18:29:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Integrating Nivo Slider into WordPress</title>
		<link>http://richmondhillwebdesign.com/2010/06/integrating-nivo-slider-into-wordpress/</link>
		<comments>http://richmondhillwebdesign.com/2010/06/integrating-nivo-slider-into-wordpress/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 18:25:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Slideshow]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://richmondhillwebdesign.com/?p=88</guid>
		<description><![CDATA[I&#8217;m fairly new to the jquery-powered slideshow, but have found several easy-to-use slideshow plugins that have really been fun to use. I&#8217;ve used the plugin on a client&#8217;s static site, but wanted to figure out a way to have a jquery plugin, specifically Nivo Slider (because I really like it), integrate with WordPress in a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m fairly new to the <a href="http://jquery.com/">jquery</a>-powered slideshow, but have found several easy-to-use slideshow plugins that have really been fun to use.</p>
<p>I&#8217;ve used the plugin on a client&#8217;s static site, but wanted to figure out a way to have a jquery plugin, specifically <a href="http://nivo.dev7studios.com/">Nivo Slider</a> (because I really like it), integrate with WordPress in a non-obtrusive way.</p>
<p>That said, there is already a <a href="http://wordpress.org/extend/plugins/wp-nivo-slider/">WordPress plugin for Nivo Slider</a>, but you have to use a photo uploader on the sidebar, and I&#8217;m really particular about NOT confusing my clients, some of whom are scared to death of computers and the web <img src='http://richmondhillwebdesign.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I really just wanted a way for a client to be able to add a new post, upload a photo from the standard photo uploader, select a category, and have their photo added to the slideshow. No muss, no fuss&#8230;and no extra instructions.</p>
<p>As I was thinking about how to get a post photo to show up automatically, I thought about a plugin for WordPress that I already use quite frequently, <a href="http://wordpress.org/extend/plugins/the-attached-image/">The Attached Image.</a> This great little plugin allows you to pull the first photo from your content and do a variety of things with it in your theme templates. I love it especially for adding thumbnails to article lists and the like, but I thought it might serve my purpose here as well.</p>
<p>You can see the working version <a href="http://nivo.dev7studios.com/">at Waltrich.com</a>, a great client who sells lawn chair webbing as well as old school aluminum webbed lawn chairs.</p>
<p>First, I created a slideshow category under Posts &gt; Categories, so that a user could assign this category to the post.</p>
<p>Next, I double checked the category ID for use in my template ( Category ID 3 in this case), and added the following code.</p>
<blockquote class="code"><p><code></p>
<div id="_mcePaste">&lt;div id="slider"&gt;</div>
<div id="_mcePaste">&lt;?php $recent = new WP_Query("cat=3&amp;showposts=100"); while($recent-&gt;have_posts()) : $recent-&gt;the_post();?&gt;</div>
<div id="_mcePaste">&lt;?php the_attached_image('img_size=full', $recent); ?&gt;</div>
<div id="_mcePaste">&lt;?php endwhile; ?&gt;</div>
<div id="_mcePaste">&lt;/div&gt;&lt;!--/slider--&gt;</div>
<p></code></p></blockquote>
<p>The slider id is called in the javascript and the WordPress query, &#8220;recent&#8221; is asking for the latest 100 (add your own number here) posts in the slideshow category.</p>
<p>The attached image code asked for the full sized image in the post, and displays each one from the loop.</p>
<p>After you&#8217;ve gotten this code installed, make sure you follow the usage instructions found on <a href="http://nivo.dev7studios.com/">Nivo Slider&#8217;s website.</a> You can use the following code in your header (inside the head tag) if you like. It&#8217;s a pretty basic install really.</p>
<blockquote class="code"><p><code>&lt;link rel="stylesheet" href="yourdomain.com/nivo-slider.css" type="text/css" media="screen" /&gt;</code></p>
<p><code>&lt;script src="yourdomain.com/jquery-1.4.2.min.js" type="text/javascript"&gt;&lt;/script&gt;</p>
<p><span style="white-space: pre;"> </span>&lt;script src="yourdomain.com/jquery.nivo.slider.pack.js" type="text/javascript"&gt;&lt;/script&gt;</p>
<p><span style="white-space: pre;"> </span>&lt;script type="text/javascript"&gt;</p>
<p><span style="white-space: pre;"> </span>$(window).load(function() {</p>
<p><span style="white-space: pre;"> </span>$('#slider').nivoSlider({</p>
<p><span style="white-space: pre;"> </span>effect:'sliceDown', //Specify sets like: 'fold,fade,sliceDown'</p>
<p><span style="white-space: pre;"> </span>slices:15,</p>
<p><span style="white-space: pre;"> </span>animSpeed:500,</p>
<p><span style="white-space: pre;"> </span>pauseTime:5000,</p>
<p><span style="white-space: pre;"> </span>startSlide:0, //Set starting Slide (0 index)</p>
<p><span style="white-space: pre;"> </span>directionNav:false, //Next &amp; Prev</p>
<p><span style="white-space: pre;"> </span>directionNavHide:false, //Only show on hover</p>
<p><span style="white-space: pre;"> </span>controlNav:false, //1,2,3...</p>
<p><span style="white-space: pre;"> </span>controlNavThumbs:false, //Use thumbnails for Control Nav</p>
<p><span style="white-space: pre;"> </span> controlNavThumbsFromRel:false, //Use image rel for thumbs</p>
<p><span style="white-space: pre;"> </span>controlNavThumbsSearch: '.jpg', //Replace this with...</p>
<p><span style="white-space: pre;"> </span>controlNavThumbsReplace: '_thumb.jpg', //...this in thumb Image src</p>
<p><span style="white-space: pre;"> </span>keyboardNav:true, //Use left &amp; right arrows</p>
<p><span style="white-space: pre;"> </span>pauseOnHover:false, //Stop animation while hovering</p>
<p><span style="white-space: pre;"> </span>manualAdvance:false, //Force manual transitions</p>
<p><span style="white-space: pre;"> </span>captionOpacity:0.8, //Universal caption opacity</p>
<p><span style="white-space: pre;"> </span>beforeChange: function(){},</p>
<p><span style="white-space: pre;"> </span>afterChange: function(){},</p>
<p><span style="white-space: pre;"> </span>slideshowEnd: function(){} //Triggers after all slides have been shown</p>
<p><span style="white-space: pre;"> </span>});</p>
<p><span style="white-space: pre;"> </span>});</p>
<p><span style="white-space: pre;"> </span>&lt;/script&gt;</p>
<p></code></p></blockquote>
<p>Style to taste, and VOILA! If you have any issues with either The Attached Image or Nivo Slider, they have extensive documentation and help for you. I&#8217;m not a guru for either, so forgive me if my help is slow in coming or ill-informed.</p>
]]></content:encoded>
			<wfw:commentRss>http://richmondhillwebdesign.com/2010/06/integrating-nivo-slider-into-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bank of Dudley</title>
		<link>http://richmondhillwebdesign.com/2010/03/bank-of-dudley/</link>
		<comments>http://richmondhillwebdesign.com/2010/03/bank-of-dudley/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 13:36:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://richmondhillwebdesign.com/?p=80</guid>
		<description><![CDATA[Bank of Dudley is one of the most financially sound banks in Georgia, and has enjoyed over 100 years of serving the people of Dublin and the surrounding area.

While their company enjoyed satisfied customers and success, they were looking for a way to update their website and move towards unifying their marketing efforts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://richmondhillwebdesign.com/wp-content/uploads/2010/03/BankOfDudley2-350x291.jpg" alt="" title="BankOfDudley2" width="350" height="291" class="alignright size-medium wp-image-81" /></p>
<p>Bank of Dudley is one of the most financially sound banks in Georgia, and has enjoyed over 100 years of serving the people of Dublin and the surrounding area.</p>
<p>While their company enjoyed satisfied customers and success, they were looking for a way to update their website and move towards unifying their marketing efforts.</p>
<p>Richmond Hill Media was brought on to design the new site to be clean and easy to use, as well as informative and functional for both new and existing customers. The new site features more than double the informational pages of the previous site, and includes a frontpage slideshow, linking to deals and specials; online banking login from the front page; secure online forms to begin the account application process from anywhere; financial calculators on a number of different loans and mortgage scenarios to help consumers plan wisely; a list of bank-owned properties to help buyers looking for a great deal; and much more.</p>
<p>RHM worked with <a href="http://www.farin.com">Farin</a>, who specializes in secure hosting for banks and provided the webhosting, financial calculators and ssl security for the site.</p>
<blockquote><p>In meeting with other developers, we felt like we would be just another number, but Doy gave us the same &#8220;Home Town&#8221; service we strive to give our customers. Unlike most financial institution sites which are template driven, Doy created our site from the ground up. We are very pleased with the clean design and functionality of our new site.<br />
<cite>Jeremy Beall<br /> IT Officer, Bank of Dudley</cite></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://richmondhillwebdesign.com/2010/03/bank-of-dudley/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Celebration Church</title>
		<link>http://richmondhillwebdesign.com/2010/03/celebration-church-dothan-alabama/</link>
		<comments>http://richmondhillwebdesign.com/2010/03/celebration-church-dothan-alabama/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 05:56:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Identity]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://richmondhillwebdesign.com/?p=75</guid>
		<description><![CDATA[Celebration Church was a church start in Dothan, Alabama, when they asked Richmond Hill Media to design a logo that would capture the excitement of the new church start, but also grasp something original in the logo.

This was no small task, as there are a great amount of churches in the U.S. with the name "celebration."]]></description>
			<content:encoded><![CDATA[<p><img src="http://richmondhillwebdesign.com/wp-content/uploads/2010/03/CelebrationLogo-350x244.jpg" alt="" title="CelebrationLogo" width="350" height="244" class="alignright size-medium wp-image-76" /></p>
<p>Celebration Church was a church start in Dothan, Alabama, when they asked Richmond Hill Media to design a logo that would capture the excitement of the new church start, but also grasp something original in the logo.</p>
<p>This was no small task, as there are a great amount of churches in the U.S. with the name &#8220;celebration.&#8221;</p>
<p>Approaching the design from a regional standpoint, Richmond Hill Media researched a variety of angles for the logo, finally settling on Dothan&#8217;s renown as part of the &#8220;wiregrass region&#8221; of Alabama.</p>
<p>Taking a cue from the plume effect of wiregrass, the logo presented itself, and not only represented the region in which the church was planted, but also lends itself to the idea of a celebration as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://richmondhillwebdesign.com/2010/03/celebration-church-dothan-alabama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crosspoint Church</title>
		<link>http://richmondhillwebdesign.com/2010/03/crosspoint-church/</link>
		<comments>http://richmondhillwebdesign.com/2010/03/crosspoint-church/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 05:33:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Identity]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://richmondhillwebdesign.com/?p=71</guid>
		<description><![CDATA[Crosspoint Church is a dynamic, creative community of believers in Gulfport, Mississippi.

When starting this new venture, Israel Cox, pastor of Crosspoint, asked Richmond Hill Media to design a simple logo that not only communicated the name of the church, but also of the church's mission to introduce people to a connection to God.]]></description>
			<content:encoded><![CDATA[<p><img src="http://richmondhillwebdesign.com/wp-content/uploads/2010/03/CrosspointLogo-350x244.jpg" alt="" title="CrosspointLogo" width="350" height="244" class="alignright size-medium wp-image-72" /></p>
<p>Crosspoint Church is a dynamic, creative community of believers in Gulfport, Mississippi.</p>
<p>When starting this new venture, Israel Cox, pastor of Crosspoint, asked Richmond Hill Media to design a simple logo that not only communicated the name of the church, but also of the church&#8217;s mission to introduce people to a connection to God.</p>
<p>Richmond Hill Media conceived a simple brand mark that succinctly described the name and mission of the church, and is still flexible enough to be used in the church&#8217;s changing marketing materials.</p>
]]></content:encoded>
			<wfw:commentRss>http://richmondhillwebdesign.com/2010/03/crosspoint-church/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Estes Public Relations</title>
		<link>http://richmondhillwebdesign.com/2010/02/estes-public-relations/</link>
		<comments>http://richmondhillwebdesign.com/2010/02/estes-public-relations/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 03:34:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://richmondhillwebdesign.com/?p=31</guid>
		<description><![CDATA[Estes Public Relations is a company that focuses on relationship marketing to establish its clients as leaders in their fields. With offices in Louisville and Chicago and a geographically diverse client list, Estes Public Relations is a far-reaching and established name in culinary and lifestyle public relations. Renowned culinary stars like Rick Tramonto of Tru in Chicago, Marcel Desaulniers of the Trellis in Williamsburg, Va., Bob Kinkead of Kinkead’s in Washington, D.C. and Sibling Rivalry in Boston have entrusted their publicity to Estes.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.estespr.com"><img src="http://richmondhillwebdesign.com/wp-content/uploads/2010/02/EstesPR-350x262.jpg" alt="Estes Public Relations" title="Estes Public Relations: Food and Lifestyle PR" width="350" height="262" class="alignright size-medium wp-image-32" /></a></p>
<p>Estes Public Relations is a company that focuses on relationship marketing to establish its clients as leaders in their fields. With offices in Louisville and Chicago and a geographically diverse client list, Estes Public Relations is a far-reaching and established name in culinary and lifestyle public relations. Renowned culinary stars like Rick Tramonto of Tru in Chicago, Marcel Desaulniers of the Trellis in Williamsburg, Va., Bob Kinkead of Kinkead’s in Washington, D.C. and Sibling Rivalry in Boston have entrusted their publicity to Estes.</p>
<p>While the company has established itself as a huge player in the market, their previous website didn&#8217;t allow them the flexibility to make updates and didn&#8217;t reflect the current direction the company wanted to take on the web. In addition, the company&#8217;s search engine results were less than stellar.</p>
<p>With a new site built in a content management system, Estes not only has the ability to showcase a range of clients and services, but also has the ability to write articles and blog entries about clients, public relations and the like, sharing their minds on the web. The site is also very search engine friendly, and has plugins built in to take advantage of seo on the web.</p>
<p>The move has been a great success for the company, and in only two or three months into their new site, they are ranked on page one in Google when searching for &#8220;food and lifestyle pr&#8221; and rank highly in other related and regional searches as well.</p>
<blockquote><p>There are so many variables in the process of building a website. Our online identity is very important to us, and we wanted to make sure to get everything right, from color scheme to layout. Working with Doy was great because he offered us different options so we could visualize the potential of the finished product. Since we launched our new website, Doy has constantly supported us to ensure that we are using all the functions to the maximum benefit for the company. <cite>Julie Brooks<br /> Office Manager, Estes Public Relations</cite> </p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://richmondhillwebdesign.com/2010/02/estes-public-relations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Savannah Chapter of the Appraisal Institute</title>
		<link>http://richmondhillwebdesign.com/2009/06/savannah-chapter-of-the-appraisal-institute/</link>
		<comments>http://richmondhillwebdesign.com/2009/06/savannah-chapter-of-the-appraisal-institute/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 02:41:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://richmondhillwebdesign.com/?p=25</guid>
		<description><![CDATA[The Appraisal Institute is a national organization dedicated to real estate appraisers, allowing them not only to benefit from meeting and networking together, but providing ongoing training, certifications and other merits necessary to excel in their field.

The Savannah Chapter of the Appraisal Institute wanted to better reflect the national organization in their website, adding much needed functionality in the process.

They enlisted the help of Richmond Hill Media to make this a reality for their organization.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.aisavannah.com"><img class="alignright size-medium wp-image-26" title="Savannah Appraisal Institute" src="http://richmondhillwebdesign.com/wp-content/uploads/2010/02/AISavannah-732x650.jpg" alt="Appraisal Institute Savannah" width="350" /></a></p>
<p>The Appraisal Institute is a national organization dedicated to real estate appraisers, allowing them not only to benefit from meeting and networking together, but providing ongoing training, certifications and other merits necessary to excel in their field.</p>
<p>The Savannah Chapter of the Appraisal Institute wanted to better reflect the national organization in their website, adding much needed functionality in the process.</p>
<p>The site includes class listings, upcoming events and calendar, a membership registration and directory, as well as an email blast module that allows the local leadership to contact members for special announcements, newsletters and the like.</p>
<blockquote><p>Doy Cave worked diligently with the Savannah Chapter of the Appraisal Institute to redesign our website and contact platform.  His knowledge, attention to detail, and high level of customer service was exactly what our organization needed.  We retain Doy for our ongoing maintenance and creative insight.   <cite>Aaron Carone<br />
Savannah Chapter of the Appraisal Institute</cite></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://richmondhillwebdesign.com/2009/06/savannah-chapter-of-the-appraisal-institute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Richmond Hill Convention and Visitors Bureau</title>
		<link>http://richmondhillwebdesign.com/2009/01/richmond-hill-convention-and-visitors-bureau/</link>
		<comments>http://richmondhillwebdesign.com/2009/01/richmond-hill-convention-and-visitors-bureau/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 01:28:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://richmondhillwebdesign.com/?p=53</guid>
		<description><![CDATA[The mission of the CVB is to market and promote Richmond Hill as a competitive meeting and leisure destination among its peers, encompassing its unique blend of culture and heritage in a manner that supports the interests of both its local hospitality industry and our residents, thereby encouraging economic growth for the community.

The organization's previous site was static, with little updating content or interactivity.

The new site utilizes a commercial class content management system, which has allowed them a variety of features, including a calendar, article and announcement manager, guestbook and business directory.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.richmondhillvisit.com"><img src="http://richmondhillwebdesign.com/wp-content/uploads/2009/01/RichmondHillCVB-350x377.jpg" alt="" title="RichmondHillCVB" width="350" height="377" class="alignright size-medium wp-image-61" /></a></p>
<p>The mission of the CVB is to market and promote Richmond Hill as a competitive meeting and leisure destination among its peers, encompassing its unique blend of culture and heritage in a manner that supports the interests of both its local hospitality industry and our residents, thereby encouraging economic growth for the community.</p>
<p>The organization&#8217;s previous site was static, with little updating content or interactivity.</p>
<p>The new site utilizes a commercial class content management system, which has allowed them a variety of features, including a calendar, article and announcement manager, guestbook and business directory.</p>
<p>The Richmond Hill CVB also utilizes a mobile site for cell phone visitors, powered by the main sites RSS feeds.</p>
<blockquote><p>Doy is customer-driven and has created a site for the RHCVB that is both attractive and adaptable to our changing business environment. <cite>Chris Sheppard<br />
Richmond Hill CVB Administrator</cite></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://richmondhillwebdesign.com/2009/01/richmond-hill-convention-and-visitors-bureau/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
