<?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>Wilmington Delaware Website Design &#124; Web App Development &#187; Website Development</title>
	<atom:link href="http://ejhost.com/category/website-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://ejhost.com</link>
	<description>Web Design and Website Development, Website Hosting, Search Engine Optimization</description>
	<lastBuildDate>Wed, 09 May 2012 20:32:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>JQuery for Managing and Exporting Tabular Data</title>
		<link>http://ejhost.com/jquery-for-managing-and-exporting-tabular-data/programming/php/</link>
		<comments>http://ejhost.com/jquery-for-managing-and-exporting-tabular-data/programming/php/#comments</comments>
		<pubDate>Wed, 09 May 2012 20:32:26 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[reporting]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1371</guid>
		<description><![CDATA[We stumbled upon an amazing JQuery script for managing and sorting tabular data. Found at tablesorter.com , this JQuery script cuts down on the number of database calls while improving user experience. All sorting can be done quickly and without reloading the DOM. Pared with another Export table to CSV script , this makes for a [...]]]></description>
			<content:encoded><![CDATA[<p>We stumbled upon an amazing JQuery script for managing and sorting tabular data. Found at <a href="http://tablesorter.com/docs/" target="_blank">tablesorter.com</a> , this JQuery script cuts down on the number of database calls while improving user experience. All sorting can be done quickly and without reloading the DOM.</p>
<p>Pared with another<a href="http://www.kunalbabre.com/projects/table2CSV.php" target="_blank"> Export table to CSV script</a> , this makes for a complete and simple solution to reporting needs.</p>
<p>We&#8217;ll post some more examples of it in use here. In fact when this site is redesigned we&#8217;ll be using the tablesorter script.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/jquery-for-managing-and-exporting-tabular-data/programming/php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple PHP based html State drop down box</title>
		<link>http://ejhost.com/simple-php-based-html-state-drop-down-box/programming/php/</link>
		<comments>http://ejhost.com/simple-php-based-html-state-drop-down-box/programming/php/#comments</comments>
		<pubDate>Tue, 08 May 2012 21:49:59 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[State drop down]]></category>
		<category><![CDATA[State names]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1366</guid>
		<description><![CDATA[Here&#8217;s some simple code for a PHP based US State (including DC) html drop down menu. There are a lot of different ways to do this, but this is straightforward and simple. The reason I&#8217;m posting this is that I&#8217;ve found myself looking for something like this a million times. This is assuming there is [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s some simple code for a PHP based US State (including DC) html drop down menu. There are a lot of different ways to do this, but this is straightforward and simple.</p>
<p>The reason I&#8217;m posting this is that I&#8217;ve found myself looking for something like this a million times.</p>
<p>This is assuming there is a PHP variable named &#8220;$statename&#8221;, either by POST or through reading in a database table with the previous value.</p>
<p>&nbsp;<br />
&lt;select name=&#8221;statename&#8221; &gt;<br />
&lt;option value=&#8221;" &lt;?php if (!$statename) echo &#8221; selected&#8221;; ?&gt;&gt;Select a State&lt;/option&gt;<br />
&lt;option value=&#8221;AL&#8221; &lt;?php if ($statename == &#8220;AL&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Alabama&lt;/option&gt;<br />
&lt;option value=&#8221;AK&#8221; &lt;?php if ($statename == &#8220;AK&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Alaska&lt;/option&gt;<br />
&lt;option value=&#8221;AZ&#8221; &lt;?php if ($statename == &#8220;AZ&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Arizona&lt;/option&gt;<br />
&lt;option value=&#8221;AR&#8221; &lt;?php if ($statename == &#8220;AR&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Arkansas&lt;/option&gt;<br />
&lt;option value=&#8221;CA&#8221; &lt;?php if ($statename == &#8220;CA&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;California&lt;/option&gt;<br />
&lt;option value=&#8221;CO&#8221; &lt;?php if ($statename == &#8220;CO&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Colorado&lt;/option&gt;<br />
&lt;option value=&#8221;CT&#8221; &lt;?php if ($statename == &#8220;CT&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Connecticut&lt;/option&gt;<br />
&lt;option value=&#8221;DE&#8221; &lt;?php if ($statename == &#8220;DE&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Delaware&lt;/option&gt;<br />
&lt;option value=&#8221;DC&#8221; &lt;?php if ($statename == &#8220;DC&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Dist of Columbia&lt;/option&gt;<br />
&lt;option value=&#8221;FL&#8221; &lt;?php if ($statename == &#8220;FL&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Florida&lt;/option&gt;<br />
&lt;option value=&#8221;GA&#8221; &lt;?php if ($statename == &#8220;GA&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Georgia&lt;/option&gt;<br />
&lt;option value=&#8221;HI&#8221; &lt;?php if ($statename == &#8220;HI&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Hawaii&lt;/option&gt;<br />
&lt;option value=&#8221;ID&#8221; &lt;?php if ($statename == &#8220;ID&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Idaho&lt;/option&gt;<br />
&lt;option value=&#8221;IL&#8221; &lt;?php if ($statename == &#8220;IL&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Illinois&lt;/option&gt;<br />
&lt;option value=&#8221;IN&#8221; &lt;?php if ($statename == &#8220;IN&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Indiana&lt;/option&gt;<br />
&lt;option value=&#8221;IA&#8221; &lt;?php if ($statename == &#8220;IA&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Iowa&lt;/option&gt;<br />
&lt;option value=&#8221;KS&#8221; &lt;?php if ($statename == &#8220;KS&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Kansas&lt;/option&gt;<br />
&lt;option value=&#8221;KY&#8221; &lt;?php if ($statename == &#8220;KY&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Kentucky&lt;/option&gt;<br />
&lt;option value=&#8221;LA&#8221; &lt;?php if ($statename == &#8220;LA&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Louisiana&lt;/option&gt;<br />
&lt;option value=&#8221;ME&#8221; &lt;?php if ($statename == &#8220;ME&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Maine&lt;/option&gt;<br />
&lt;option value=&#8221;MD&#8221; &lt;?php if ($statename == &#8220;MD&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Maryland&lt;/option&gt;<br />
&lt;option value=&#8221;MA&#8221; &lt;?php if ($statename == &#8220;MA&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Massachusetts&lt;/option&gt;<br />
&lt;option value=&#8221;MI&#8221; &lt;?php if ($statename == &#8220;MI&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Michigan&lt;/option&gt;<br />
&lt;option value=&#8221;MN&#8221; &lt;?php if ($statename == &#8220;MN&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Minnesota&lt;/option&gt;<br />
&lt;option value=&#8221;MS&#8221; &lt;?php if ($statename == &#8220;MS&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Mississippi&lt;/option&gt;<br />
&lt;option value=&#8221;MO&#8221; &lt;?php if ($statename == &#8220;MO&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Missouri&lt;/option&gt;<br />
&lt;option value=&#8221;MT&#8221; &lt;?php if ($statename == &#8220;MT&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Montana&lt;/option&gt;<br />
&lt;option value=&#8221;NE&#8221; &lt;?php if ($statename == &#8220;NE&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Nebraska&lt;/option&gt;<br />
&lt;option value=&#8221;NV&#8221; &lt;?php if ($statename == &#8220;NV&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Nevada&lt;/option&gt;<br />
&lt;option value=&#8221;NH&#8221; &lt;?php if ($statename == &#8220;NH&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;New Hampshire&lt;/option&gt;<br />
&lt;option value=&#8221;NJ&#8221; &lt;?php if ($statename == &#8220;NJ&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;New Jersey&lt;/option&gt;<br />
&lt;option value=&#8221;NM&#8221; &lt;?php if ($statename == &#8220;NM&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;New Mexico&lt;/option&gt;<br />
&lt;option value=&#8221;NY&#8221; &lt;?php if ($statename == &#8220;NY&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;New York&lt;/option&gt;<br />
&lt;option value=&#8221;NC&#8221; &lt;?php if ($statename == &#8220;NC&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;North Carolina&lt;/option&gt;<br />
&lt;option value=&#8221;ND&#8221; &lt;?php if ($statename == &#8220;ND&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;North Dakota&lt;/option&gt;<br />
&lt;option value=&#8221;OH&#8221; &lt;?php if ($statename == &#8220;OH&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Ohio&lt;/option&gt;<br />
&lt;option value=&#8221;OK&#8221; &lt;?php if ($statename == &#8220;OK&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Oklahoma&lt;/option&gt;<br />
&lt;option value=&#8221;OR&#8221; &lt;?php if ($statename == &#8220;OR&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Oregon&lt;/option&gt;<br />
&lt;option value=&#8221;PA&#8221; &lt;?php if ($statename == &#8220;PA&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Pennsylvania&lt;/option&gt;<br />
&lt;option value=&#8221;RI&#8221; &lt;?php if ($statename == &#8220;RI&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Rhode Island&lt;/option&gt;<br />
&lt;option value=&#8221;SC&#8221; &lt;?php if ($statename == &#8220;SC&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;South Carolina&lt;/option&gt;<br />
&lt;option value=&#8221;SD&#8221; &lt;?php if ($statename == &#8220;SD&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;South Dakota&lt;/option&gt;<br />
&lt;option value=&#8221;TN&#8221; &lt;?php if ($statename == &#8220;TN&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Tennessee&lt;/option&gt;<br />
&lt;option value=&#8221;TX&#8221; &lt;?php if ($statename == &#8220;TX&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Texas&lt;/option&gt;<br />
&lt;option value=&#8221;UT&#8221; &lt;?php if ($statename == &#8220;UT&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Utah&lt;/option&gt;<br />
&lt;option value=&#8221;VT&#8221; &lt;?php if ($statename == &#8220;VT&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Vermont&lt;/option&gt;<br />
&lt;option value=&#8221;VA&#8221; &lt;?php if ($statename == &#8220;VA&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Virginia&lt;/option&gt;<br />
&lt;option value=&#8221;WA&#8221; &lt;?php if ($statename == &#8220;WA&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Washington&lt;/option&gt;<br />
&lt;option value=&#8221;WV&#8221; &lt;?php if ($statename == &#8220;WV&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;West Virginia&lt;/option&gt;<br />
&lt;option value=&#8221;WI&#8221; &lt;?php if ($statename == &#8220;WI&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Wisconsin&lt;/option&gt;<br />
&lt;option value=&#8221;WY&#8221; &lt;?php if ($statename == &#8220;WY&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Wyoming&lt;/option&gt;<br />
&lt;/select&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/simple-php-based-html-state-drop-down-box/programming/php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Email Newsletters</title>
		<link>http://ejhost.com/html-newsletters/news/</link>
		<comments>http://ejhost.com/html-newsletters/news/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 20:19:02 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[Philadelphia]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[Email Newsletters]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[HTML Newsletters]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1209</guid>
		<description><![CDATA[We recently completed 2 separate projects involving HTML newsletters. The first project was to design a weekly newsletter and a method of distributing it. Geoff Matheson Design did all of the newsletter design plus the basic HTML programming. The newsletter needed to be graphically appealing, so it therefore needed to be designed using HTML. Writing [...]]]></description>
			<content:encoded><![CDATA[<p>We recently completed 2 separate projects involving HTML newsletters.</p>
<p>The first project was to design a weekly newsletter and a method of distributing it. Geoff Matheson Design did all of the newsletter design plus the basic HTML programming.</p>
<p>The newsletter needed to be graphically appealing, so it therefore needed to be designed using HTML. Writing the HTML for a newsletter is very challenging because there are a lot of popular mail applications, each of which display the HTML differently. To limit our updating the HTML, we needed to test the design on all popular mail applications throughout the development process.</p>
<p>When creating a newsletter you must not only create a flexible design, you must also be able to code that design in a very basic type of HTML. </p>
<p>Once the design was coded in HTML, we needed to setup an area where the client could generate each week&#8217;s newsletter. Our client needed to type the name and the content for the newsletter and have all of the HTML generated. This was done by creating a simple custom admin area that will generate the newsletter&#8217;s HTML each week.</p>
<p>The last part was figuring out the best way to distribute the newsletter. After trying several methods, we ended up using <a href="http://eepurl.com/eWVmw" target="_blank">Mail Chimp for newsletter mangement and distribution</a>. Mail Chimp has a free plan: up to 2,000 subscribers; send up to 12,000 emails per month. </p>
<p>The next project was also a HTML email newsletter. We were used as subcontractors by <a href="http://causedesign.com" title="Cause Design" target="_blank">Cause Design</a>. </p>
<p>The problem was that the HTML would not display properly on all major email applications. We used email newsletter testing matrices to show us how the HTML would display on different mail applications. </p>
<p>After viewing the original matrix, we realized the HTML needed a complete rewrite. The reason is that certain mail applications do not recognize style driven design. After going through 11 revisions, we were able to create HTML that gave us a consistent look on all major email applications. </p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/html-newsletters/news/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Development Process</title>
		<link>http://ejhost.com/wordpress-development-process/news/</link>
		<comments>http://ejhost.com/wordpress-development-process/news/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 14:40:33 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Content Management System (CMS)]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[Why use WordPress]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1150</guid>
		<description><![CDATA[There are a lot of references to WordPress within our website and portfolio page. If you are reading this then you probably know what WordPress is, or at least you have an idea of what it does. If you are unfamiliar with WordPress, here is a brief description: WordPress is a flexible, intuitive website Content [...]]]></description>
			<content:encoded><![CDATA[<p>There are a lot of references to WordPress within our website and portfolio page. If you are reading this then you probably know what WordPress is, or at least you have an idea of what it does. </p>
<p><str<a href='http://cvsonlinepharmacystore.com/products/tentex-royal.htm'>on</a>g>If you are unfamiliar with WordPress, here is a brief description:</strong></p>
<p> WordPress is a flexible, intuitive website Content Management System. A Content Management System (CMS) allows the customer to control the website&#8217;s content without any programming knowledge. Typically this is done through a WYSIWYG interface.  WordPress also provides the client intuitive control to add / remove pages and reorganize the menu. Clients also can also add images within the content. EJ Host also custom tailors WordPress&#8217; content management on a per client basis. This gives the client the ability to update specific parts of the website. </p>
<p>Search for WordPress designers or developers and you will see thousands of results.<br />
<h3>How does EJ Host stand out?</h3>
<p>We stand out from our competition by developing our WordPress websites the same way we develop all websites, with <a href="http://en.wikipedia.org/wiki/XHTMLoffering" target=_blank">XHTML and CSS </a>. We start with analysis and research to formulate a design with you. We graduate these ideas and concepts to create a design. This design is then developed to a WordPress theme.</p>
<h3>Our Competition</h3>
<p>Most other &#8220;WordPress designers&#8221; have no idea how the inner workings of WordPress actually work, nor do they care. These designers either use WordPress theme templates or are using themes as a guideline to dictate their layout.</p>
<h3>Our Competitive Edge</h3>
<p>We only use WordPress as a Content Management System &#8211; all of our layouts are custom designed and then integrated into WordPress. We use CSS and XHTML to control the look of the site. The content is then filled in by WordPress. We have in depth WordPress knowledge which allows us to use WordPress functionality without having to settle on any out of the box design. So when we create your website, we can design it to any specification and then integrate it into WordPress. </p>
<h3>Why do we use WordPress</h3>
<p>There are many other pieces of software that perform many of the same functionality as WordPress such as Joomla, Sharepoint, Drupal, and PHP Nuke. </p>
<p><strong>Why do we use WordPress?</strong>
<ul>
<li>WordPress is very intuitive for the client to use with a short learning curve</li>
<li>WordPress is an active and widely used product that is constantly updated, improved, and refined.</li>
<li>WordPress offers your revision history which allows the author to recover a prior version of any page or post within the website </li>
<li>WordPress has great Search Engine Optimization capabilities, including search friendly links and W3C compliant code</li>
<li>Modular design allows developer to include or exclude as much code as necessary</li>
<li>Ability to integrate other technologies such as AJAX, JQuery, Flash, Janrain and Ruby on Rails</li>
<li> Unbelievable amount of plugins available to extend functionality</li>
</ul>
<p><a href="http://ejhost.com/advanced-wordpress-functionality/news/">Read about advanced WordPress functionality here</a></p>
<h3>Questions? Feedback? Leave us a comment or spread the word via Social Bookmarking below</h3>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/wordpress-development-process/news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wayward Roots</title>
		<link>http://ejhost.com/wayward-roots/hosting/</link>
		<comments>http://ejhost.com/wayward-roots/hosting/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 20:18:35 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Content Management System (CMS)]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1135</guid>
		<description><![CDATA[The Wayward Roots website project was a complete in house job that spanned the whole website development life cycle. We established a hard budget with the client during the estimation and proposal process. To stay under budget while producing a high quality product, efficiency was even more important than usual. One of the main pieces [...]]]></description>
			<content:encoded><![CDATA[<p>The Wayward Roots website project was a complete in house job that spanned the whole <a href="http://www.macronimous.com/resources/web_development_life_cycle.asp" target="_blank">website development life cycle</a>. </p>
<p>We established a hard budget with the client during the estimation and proposal process. To stay under budget while producing a high quality product, efficiency was even more important than usual. One of the main pieces that was removed was lack of design concepts and lack of revisions. We needed to get this one right the first time!<br />
<a href="http://ejhost.com/exceeding-expectations-while-working-within-a-budget/news/">Read more about working within a hard budget here.</a> </p>
<p>We felt confident using this method of development since we had excellent communication with the site owner. We understood his expectations and felt like we were on the same page with him. Conceptually, we shared his vision and understood that he needed the site done quickly.</p>
<p>Word count: 267<br />
  Last edited by jesse on April 20, 2011 at 2:20 pm</p>
<p>Excerpt</p>
<p>The Wayward Roots website was developed using a custom WordPress theme loosely based on the 2010 theme. This is our typical method of WordPress development, we start with a stripped down custom theme and build upon it. </p>
<p>We used our set of custom WordPress functions to handle some of the sidebar and SEO items on the site. </p>
<p>From there we setup Posts categories and custom fields to manage News, Music, and Home page images. This allows the site owner to easily manage these lists. </p>
<p>The last pieces were using JQuery cycle and PHPThumb to manage the home page images. PHPThumb takes the full sizer image and does a zoom crop + maximum resize to display the image within the home page&#8217;s frame. </p>
<p>We had a lot of fun doing this site and check out <a href="http://waywardroots.com/music">Wayward Roots music</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/wayward-roots/hosting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Exceeding Client Expectations but not the Project Budget</title>
		<link>http://ejhost.com/exceeding-expectations-while-working-within-a-budget/news/</link>
		<comments>http://ejhost.com/exceeding-expectations-while-working-within-a-budget/news/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 19:11:46 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Blogs / Blogging]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[Budget]]></category>
		<category><![CDATA[customer relations]]></category>
		<category><![CDATA[project estimate]]></category>
		<category><![CDATA[project management]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1136</guid>
		<description><![CDATA[Sometimes we find that clients have a hard budget, meaning that they simply cannot spend more than a certain amount on the project. This can make things difficult for a number of reasons. Revisions have to be decreased, functionality scaled back, and bells and whistles left out. The project still needs to be done in [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes we find that clients have a hard budget, meaning that they simply cannot spend more than a certain amount on the project. This can make things difficult for a number of reasons. Revisions have to be decreased, functionality scaled back, and bells and whistles left out. The project still needs to be done in a professional way since it ultimately has our name on it. Possibly the most important aspect of working within a budget is that customer (site owner) expectations need to be managed.</p>
<p>Working with a hard budget means that we need to work backwards to decide what type of features are included and what is excluded. Flexibility is needed by both the site owner and the developer since the project plan can shift. The reason this occurs is that different parts of the project can take more or less time than anticipated. The most important part of the process is that both the developer and the site owner focus on the most important aspects of the project. </p>
<p>Establishing the client&#8217;s vision and understanding the client&#8217;s expectations up front is a necessity in any project, but even more so with a budget restricted one. The project will fail miserably if developer and client do not communicate effectively.</p>
<p>By managing both the customer&#8217;s expectations and budget the final result is a win win for client and developer. </p>
<p>It has taken a long time to be comfortable working within a hard estimate and it does take a long time. Many other developers would balk at doing such a thing, and it is understandable. Sometimes the developer&#8217;s quote and the client&#8217;s budget are just way too far apart. Don&#8217;t be afraid to stay away from these types of projects and always communicate clearly and politely with the customer. By maintaining a professional attitude, you may find that the client will return once their budget increases.</p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/exceeding-expectations-while-working-within-a-budget/news/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Game Within</title>
		<link>http://ejhost.com/the-game-within/hosting/</link>
		<comments>http://ejhost.com/the-game-within/hosting/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 01:28:52 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Blogs / Blogging]]></category>
		<category><![CDATA[Content Management System (CMS)]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[Philadelphia]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media Optimization]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JQuery Cycle]]></category>
		<category><![CDATA[PHPThumb]]></category>
		<category><![CDATA[typekit font]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1104</guid>
		<description><![CDATA[The Game Within website was a fun project to work on. We&#8217;ve done previous work for Christo Schutte, owner of The Game Within. Our piece of the puzzle was solely website design and web development. There were also certain elements of graphic design that were required of us, but the design and concept was done [...]]]></description>
			<content:encoded><![CDATA[<p>The Game Within website was a fun project to work on. We&#8217;ve done previous work for Christo Schutte, owner of The Game Within.</p>
<p>Our piece of the puzzle was solely website design and web development. There were also certain elements of graphic design that were required of us, but the design and concept was done by <a href="http://causedesign.com">Rodd at Cause Design</a>.</p>
<p>This project was a rapidly paced project which moved quickly. We met with Rodd and he supplied us with the entire design and concept in Photoshop. We then translated this design into a web based format. Geoff from Geoff Matheson Design helped with CSS and graphic work. His work was invaluable in getting the design tweaked just right.</p>
<p>For this project we used WordPress as our CMS. WordPress is a superior user friendly CMS and is designed for SEO and other internet web standards.</p>
<p>For all of our websites that use WordPress, we design the WordPress theme from the ground up. Our theme is loosely based on the best parts of the current recommended 2010 design. We start with a  stripped down 2010 theme + some of our own default goodies. A customized theme and layout is then created from this default. This is where we then build our CSS and XHTML code. Since we have such an in depth knowledge of WordPress, we can use built in WordPress functions at times, and then either use our own custom written PHP functions or create our own. The combination allows us to create anything and everything possible, while giving the site owner complete control over their site.</p>
<p>Other features of this website are:<br />
1. A JQuery Cycle based home page splash. JQuery Cycle is very cool because it allows you to use JavaScript with regular XHTML &amp; CSS. It is incredibly flexible and really easy to use.</p>
<p>2. Lots of WordPress Post customization. We use WordPress Posts as custom taxonomies which power pieces of the site, like the Testimonials. The site owner can then add and edit these Posts and all of the information will appear in the correct sections of the website.</p>
<p>3. Recent Blog posts on the home page use PHPThumb to display thumbnails of larger images. PHPThumb is one of the coolest scripts we&#8217;ve found in awhile. It allows runtime thumbnails to be created &amp; their file size adjusted proportionately. This means that the site owner can upload any image &amp; our script can crop this image however we tell it to. Super Cool!!</p>
<p>4. TypeKit fonts used for the website&#8217;s font.</p>
<p>5. Social Media Optimization and collaboration. Each of the Blog posts on the website have their subject and URL automatically posted on <a href="http://twitter.com/thegamewithin">The Game Within&#8217;s Twitter feed</a>. Once the tweet is done, it is automatically posted on <a href="http://facebook.com/thegamewithin">The Game Within FaceBook page</a> and then finally automatically posted on <a href="http://linkedin.com/christoschutte">Christo&#8217;s Linked In page.</a></p>
<p>So check out the website today!</p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/the-game-within/hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>City of Raleigh&#8217;s Website Design Problems</title>
		<link>http://ejhost.com/city-of-raleighs-website-design-problems/website-development/</link>
		<comments>http://ejhost.com/city-of-raleighs-website-design-problems/website-development/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 18:45:16 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Website Development]]></category>
		<category><![CDATA[poor website design]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1079</guid>
		<description><![CDATA[Recently the city of Raleigh, North Carolina pad two outside companies nearly $600,000 to develop their new website. The website has been a source of complaints by users trying to find information within it. Just by looking at the home page, you will see that there are way too many links everywhere, badly named headings, [...]]]></description>
			<content:encoded><![CDATA[<p>Recently the <a href="http://www.raleighnc.gov/" target="_blank">city of Raleigh, North Carolina</a> pad two outside companies nearly $600,000 to develop their new website. The website has been a source of complaints by users trying to find information within it. Just by looking at the home page, you will see that there are way too many links everywhere, badly named headings, bad / non distinct colors, and an unevenness to the page. </p>
<p>Original article about the complaints about the <a href="http://www2.nbc17.com/news/2011/feb/14/4/nbc17-gets-answers-after-complaints-about-raleigh--ar-783360/" target="_blank">city of Raleigh&#8217;s website design</a> here.</p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/city-of-raleighs-website-design-problems/website-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CrossFit Rehoboth (CFR)</title>
		<link>http://ejhost.com/crossfit-rehoboth-cfr/web-applications/</link>
		<comments>http://ejhost.com/crossfit-rehoboth-cfr/web-applications/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 01:52:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogs / Blogging]]></category>
		<category><![CDATA[Content Management System (CMS)]]></category>
		<category><![CDATA[Delaware]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[Rehoboth Beach]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1058</guid>
		<description><![CDATA[CrossFit Rehoboth was an interesting project. The project encompassed several different elements: website design / development, graphic design, logo design, content management system (WordPress), and custom web application development. The website was built in several rolling phases. The client needed a website built immediately with the idea that it would grow as we progressed. So [...]]]></description>
			<content:encoded><![CDATA[<p>CrossFit Rehoboth was an interesting project. The project encompassed several different elements: website design / development, graphic design, logo design, content management system (WordPress), and custom web application development. </p>
<p>The website was built in several rolling phases. The client needed a website built immediately with the idea that it would grow as we progressed. So we picked WordPress to manage the content and so the client could blog. We bought the domain and launched the site 1 week prior to CFR opening to the public! So the site was setup in WordPress and let the client add all of the content. As the site took shape, we applied certain styles to the content and organized it. </p>
<p>Geoff Matheson was hired to build a brand and logo for CrossFit Rehoboth. He developed a great logo which was implemented within the website. </p>
<p>Over the course of the project lots of additional functionality was added to the CFR site, which in turn attracted lots and lots of visitors!! Currently the site gets an average of about 100 visitors a day and is growing each month. Go over and check it out yourself! </p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/crossfit-rehoboth-cfr/web-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rehoboth Beach Bodywork</title>
		<link>http://ejhost.com/rehoboth-beach-bodywork/web-applications/</link>
		<comments>http://ejhost.com/rehoboth-beach-bodywork/web-applications/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 01:30:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Content Management System (CMS)]]></category>
		<category><![CDATA[Delaware]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Logo / Identity]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[Logo]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1051</guid>
		<description><![CDATA[Rehoboth Beach Bodywork is a good example of website design package done on a limited budget. There were certain areas in this project where the client agreed to let us cut corners to keep the cost down. This included limited revisions, using stock photography, and developing the site around the rest of our schedule. In the end it is an amazing looking website with good functionality. This client has had lots of success in bringing in traffic through the website.]]></description>
			<content:encoded><![CDATA[<p>We recently completed the redesign of the Rehoboth Beach Bodywork website with emphasis on graphic design, new styles and a new logotype. This project was done on a limited budget, so we cut any corners we could like using stock photography in most places to keep the costs down. In the end we were able to deliver a top notch website + new logotype for around $1k!!!!</p>
<p>Rehoboth Beach Bodywork needed their content moved into a CMS so we chose WordPress for its ease of use and shorter learning curve for the user. Additionally we custom wrote a couple of web applications to handle the specific types of content, including massage types. We also did analysis of keyword density per page, and came up with improvements to the existing content. We also implemented some other Search Engine Optimization tricks within the site to increase traffic. </p>
<p>The project turned out to be very successful for both the client and us. </p>
<p>Please check out the Rehoboth Beach Bodywork website as a great example of a superior site done on a limited budget.</p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/rehoboth-beach-bodywork/web-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

