<?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>SongWorks Design</title>
	<atom:link href="http://www.songworksdesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.songworksdesign.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 10 Feb 2012 18:47:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Roll-over Submit Button with CSS ONLY!</title>
		<link>http://www.songworksdesign.com/2012/01/roll-over-submit-button-with-css/</link>
		<comments>http://www.songworksdesign.com/2012/01/roll-over-submit-button-with-css/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 20:38:49 +0000</pubDate>
		<dc:creator>swdesignguy</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.songworksdesign.com/?p=459</guid>
		<description><![CDATA[You CAN create a roll-over effect on a form submit button using just CSS with no jQuery or javascript! The key to the whole thing is adding a hover state to the input tag: input:hover Here is the HTML markup. Note that I wrapped the button input inside a DIV:&#60;div id="buy"&#62;&#60;input id="regButton" type="submit" name="buy" value="Add<div id="moreExcerpt"><a href="http://www.songworksdesign.com/2012/01/roll-over-submit-button-with-css/"> [Read More...]</a></div>]]></description>
			<content:encoded><![CDATA[<p>You CAN create a roll-over effect on a form submit button using just CSS with no jQuery or javascript! The key to the whole thing is adding a hover state to the input tag: <pre><code>input:hover</code></pre></p>
<span id="more-459"></span>
<p>Here is the HTML markup. Note that I wrapped the button input inside a DIV:<pre><code>&lt;div id="buy"&gt;&lt;input id="regButton" type="submit" name="buy" value="Add to Cart" class="submit" /&gt;&lt;/div&gt;</code></pre></p>
<p>In order to try it yourself, you&#8217;ll need to create a button in Photoshop that can reflect the static AND the rollover state, like this:<img src="http://www.songworksdesign.com/bathedinlight/wp-content/uploads/2012/01/button.jpg" alt="" title="button" width="125" height="88" class="aligncenter size-full wp-image-477" /></p>
<p>It is critical that the height of the Photoshop file is exactly twice as high as the button. IN the case above, the file is 88px high, while the button is 44px high. In this way you can use background positioning to move the image UP by exactly 44px when the user hovers over the button, revealing the &#8220;hover&#8221; part of the button.</p>
<p>Now, let&#8217;s look at the CSS styling to make it all work:</p>
<pre><code>#buy {
	position: absolute;
	display: block;
	top:100px;
	left: 20px;
}
#regButton {
	position: relative;
	background: url(button.jpg) no-repeat;
	width: 125px;
	height: 44px;
	border: none;
	cursor: pointer;
	text-indent: -9999px;
}
#buy input:hover {
	background-position: 0 -44px;
}</code></pre>
<p>The key is to set the button image inside the input ID via the &#8216;background&#8217; CSS property. Then use the pseudo class of &#8216;hover&#8217; for the &#8216;input&#8217; CSS selector ON THE ENCLOSING DIV, and use the &#8216;background-position&#8217; property to expose the &#8220;hover&#8221; part of the image. If you try and set the &#8220;hover&#8221; pseudo class via the input ID itself, which would make perfect sense, IT WON&#8217;T WORK! I have no idea why, because it should, but it won&#8217;t. You must make sure to target the hover state for the input tag from the enclosing DIV! So in this case, I used:<pre><code>#buy input:hover</code></pre></p>
<p>Instead of:<pre><code>#regButton input:hover</code></pre></p>
<p>I have to say, this drove me crazy, and I discovered the key to it quite by accident. I had intended to use the enclosing DIV, #buy, to position the button, not having a clue I was about to stumble upon the solution to making an input rollover work! DOH!</p>
<p>Anyway, setting a negative pixel amount to -44 on the y-axis (background-position: x y) tells the browser to move the image UP by 44 pixels, exposing the lower part of the image inside of the &#8220;window&#8221; created with the width and height properties on the #regButton DIV.</p>
<p>Either way, as you can see it&#8217;s pretty simple stuff. I looked high and low for a solution, so I decided to write this article to save the rest of you from the frustration and time I spent on this. <img src='http://www.songworksdesign.com/bathedinlight/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>]]></content:encoded>
			<wfw:commentRss>http://www.songworksdesign.com/2012/01/roll-over-submit-button-with-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Options Hair Care</title>
		<link>http://www.songworksdesign.com/2011/12/new-options-hair-care/</link>
		<comments>http://www.songworksdesign.com/2011/12/new-options-hair-care/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 18:33:36 +0000</pubDate>
		<dc:creator>swdesignguy</dc:creator>
				<category><![CDATA[Examples]]></category>

		<guid isPermaLink="false">http://www.songworksdesign.com/?p=445</guid>
		<description><![CDATA[This is an e-commerce site for hair care products. We developed a completely new look for New Options. In addition to the design and development of the website itself, we designed a new logo, new product labels, and handled all of the photography (I am a professional photographer too) for the site. That included a<div id="moreExcerpt"><a href="http://www.songworksdesign.com/2011/12/new-options-hair-care/"> [Read More...]</a></div>]]></description>
			<content:encoded><![CDATA[<div class="visit"><a href="http://www.newoptionshaircare.com" target="_blank"></a></div><a rel="lightbox" href="http://www.songworksdesign.com/bathedinlight/wp-content/uploads/2011/12/nohc.png"><img src="http://www.songworksdesign.com/bathedinlight/wp-content/uploads/2011/12/nohc-300x249.png" alt="" title="nohc" width="300" height="249" class="alignleft size-medium wp-image-446" /></a>
<p>This is an e-commerce site for hair care products. We developed a completely new look for New Options. In addition to the design and development of the website itself, we designed a new logo, new product labels, and handled all of the photography (I am a <a href="http://www.garydatesphotos.com" target="_blank">professional photographer</a> too) for the site. That included a model shoot, as well as individual product shots.</p>
<p>In terms of e-commerce, since there was relatively small number of products, we created a 2-tier platform whereby all the products are displayed on one page, and then individual products can be access and purchased by clicking on any one product. By leveraging the power of WordPress, we were able to easily build the online store.The actual transaction is handled by Foxy Cart as the shopping cart solution.</p>
<p>Finally, we intergrated the client&#8217;s social media presence into the site, so the visitor can easily participate in the various social media options for New Options.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.songworksdesign.com/2011/12/new-options-hair-care/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gordon James Music</title>
		<link>http://www.songworksdesign.com/2011/12/gordon-james-music/</link>
		<comments>http://www.songworksdesign.com/2011/12/gordon-james-music/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 00:39:00 +0000</pubDate>
		<dc:creator>swdesignguy</dc:creator>
				<category><![CDATA[Examples]]></category>

		<guid isPermaLink="false">http://www.songworksdesign.com/?p=428</guid>
		<description><![CDATA[This is yet another WordPress site. It is primarily asite featuring the music of Gordon James, renowned flugelhornist. This site leverages many social media sites such as YouTube and Facebook, among others, as well as CD Baby. The beauty of this strategy is that by utilizing resources from other websites, the bandwidth of the hosting<div id="moreExcerpt"><a href="http://www.songworksdesign.com/2011/12/gordon-james-music/"> [Read More...]</a></div>]]></description>
			<content:encoded><![CDATA[<div class="visit"><a href="http://www.gordonjamesmusic.com" target="_blank"></a></div><a rel="lightbox" href="http://www.songworksdesign.com/bathedinlight/wp-content/uploads/2011/12/gjm.png"><img src="http://www.songworksdesign.com/bathedinlight/wp-content/uploads/2011/12/gjm-300x278.png" alt="" title="gjm" width="300" height="249" class="alignleft size-medium wp-image-430" /></a>
<p>This is yet another WordPress site. It is primarily asite featuring the music of Gordon James, renowned flugelhornist. This site leverages many social media sites such as YouTube and Facebook, among others, as well as CD Baby. The beauty of this strategy is that by utilizing resources from other websites, the bandwidth of the hosting server is not taxed.</p>
<p>In real terms, this means that, for example, the videos on Gordon&#8217;s site are stored and accessed on YouTube, even though the videos are embedded in Gordon&#8217;s site pages. The same holds true for iTunes and CD Baby. There is an iTunes &#8220;widget&#8221; that allows the user to puchase Gordon;s CDs directly from iTunes. iTunes handles the entire sales transaction, as well as allowing the user to hear a clip of the songs, and none of this uses the server where Gordon&#8217;s site is hosted. The same is true for the CD Baby &#8220;widget&#8221; found on the Music page of the site, except in this case the user can purchase the CDs from CD Baby instead of iTunes.</p>
<p>This strategy not only preserves server bandwidth, but cuts development costs as well, since there is no need to set up a shopping cart on Gordon&#8217;s site. All of the &#8220;heavy lifting&#8221; is accomplished by 3rd party sites, at no cost to Gordon!</p>]]></content:encoded>
			<wfw:commentRss>http://www.songworksdesign.com/2011/12/gordon-james-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Category in WordPress</title>
		<link>http://www.songworksdesign.com/2011/12/create-a-category-in-wordpress/</link>
		<comments>http://www.songworksdesign.com/2011/12/create-a-category-in-wordpress/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 23:21:46 +0000</pubDate>
		<dc:creator>swdesignguy</dc:creator>
				<category><![CDATA[Wordpress Tutorial]]></category>

		<guid isPermaLink="false">http://www.songworksdesign.com/?p=417</guid>
		<description><![CDATA[This video shows you how to create categories in WordPress. Categories are very important, because they are fundamental to the way WordPress organizes your blog posts. You will learn not only how to create categories, but how to assign them to your articles (posts). It&#8217;s easy! If anything is unclear or you still have questions,<div id="moreExcerpt"><a href="http://www.songworksdesign.com/2011/12/create-a-category-in-wordpress/"> [Read More...]</a></div>]]></description>
			<content:encoded><![CDATA[<p>This video shows you how to create categories in WordPress. Categories are very important, because they are fundamental to the way WordPress organizes your blog posts. You will learn not only how to create categories, but how to assign them to your articles (posts). It&#8217;s easy!</p>
<span id="more-417"></span>
<p>If anything is unclear or you still have questions, post a comment under &#8220;Leave A Reply&#8221;, and I&#8217;ll respond with the answer.</p>
<p class="directLink">Direct download: <a href="http://songworks-images.s3.amazonaws.com/WP_categories.m4v" target="_blank">Quicktime M4V Format</a></p>
<iframe width="420" height="315" src="http://www.youtube.com/embed/auo4_9YeyDk?rel=0" frameborder="0" allowfullscreen></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.songworksdesign.com/2011/12/create-a-category-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://songworks-images.s3.amazonaws.com/WP_categories.m4v" length="0" type="video/mp4" />
		</item>
		<item>
		<title>Social Media</title>
		<link>http://www.songworksdesign.com/2011/11/social-media/</link>
		<comments>http://www.songworksdesign.com/2011/11/social-media/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 19:47:51 +0000</pubDate>
		<dc:creator>swdesignguy</dc:creator>
				<category><![CDATA[Social Networking]]></category>

		<guid isPermaLink="false">http://www.songworksdesign.com/?p=389</guid>
		<description><![CDATA[A Fad? Well, yes! Here is how the dictionary defines &#8220;fad&#8221;; noun &#8211; an interest followed with exaggerated zeal.&#8221; There is no judgement in this definition. We tend to imbue things with positive or negative qualities. Yes, Social media is a fad. It also happens to be an effective tool to get your message out<div id="moreExcerpt"><a href="http://www.songworksdesign.com/2011/11/social-media/"> [Read More...]</a></div>]]></description>
			<content:encoded><![CDATA[<h3>A Fad?</h3>
<p>Well, yes! Here is how the dictionary defines &#8220;fad&#8221;; <span style="font-style: italic"><strong>noun &#8211; an interest followed with exaggerated zeal.&#8221;</strong></span> There is no judgement in this definition. We tend to imbue things with positive or negative qualities. Yes, Social media is a fad. It also happens to be an effective tool to get your message out to thousands of people!</p><span id="more-389"></span>
<p>You can effectively use a Facebook page, a Twitter feed, YouTube Videos, and many other more targeted social networks to increase your brand awareness! We can consolidate all of these disparate networking options into a more unified marketing strategy for your brand.</p>
<h3>The Fear Factor</h3>
<p>Most people of a &#8220;certain age&#8221; have some preconceived negative notions about the web, social media, and computers in general. At the root of these feelings is fear&#8230;.fear of the unknown, fear of having to learn something new, fear of having to invest yet more time n an already too-full schedule, etc.</p>
<p>Personally, while I feel most of these fears are unfounded, I think they are very real to the person who harbors them. It is a given that the web is only going to grab an increasingly larger share of the business of buying and selling goods and services. therefor, you cannot afford to ignore the impact that social media is having across the web. If you don&#8217;t somehow begin to use it to increase your brand awareness, you will loose market share&#8230;&#8230;period. Your competitors are taking advantage of social media. You need to as well. We can help.</p>]]></content:encoded>
			<wfw:commentRss>http://www.songworksdesign.com/2011/11/social-media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Editing a Post</title>
		<link>http://www.songworksdesign.com/2011/11/editing-a-post/</link>
		<comments>http://www.songworksdesign.com/2011/11/editing-a-post/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 19:55:00 +0000</pubDate>
		<dc:creator>swdesignguy</dc:creator>
				<category><![CDATA[Wordpress Tutorial]]></category>

		<guid isPermaLink="false">http://www.songworksdesign.com/?p=338</guid>
		<description><![CDATA[This video picks up where the other one left off. It simply shows you how to edit a post. If anything is unclear or you still have questions, post a comment under &#8220;Leave A Reply&#8221;, and I&#8217;ll respond with the answer. Direct download: Quicktime M4V Format]]></description>
			<content:encoded><![CDATA[<p>This video picks up where the other one left off. It simply shows you how to edit a post.</p>
<span id="more-338"></span>
<p>If anything is unclear or you still have questions, post a comment under &#8220;Leave A Reply&#8221;, and I&#8217;ll respond with the answer.</p>
<p class="directLink">Direct download: <a href="http://songworks-images.s3.amazonaws.com/wp_posts-2.m4v" target="_blank">Quicktime M4V Format</a></p>
<object width="480" height="360"><param name="movie" value="http://www.youtube.com/v/30RNEKFzX9A?version=3&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/30RNEKFzX9A?version=3&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" width="480" height="360" allowscriptaccess="always" allowfullscreen="true"></embed></object>]]></content:encoded>
			<wfw:commentRss>http://www.songworksdesign.com/2011/11/editing-a-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://songworks-images.s3.amazonaws.com/wp_posts-2.m4v" length="60655323" type="video/mp4" />
		</item>
		<item>
		<title>Creating a Post in WordPress</title>
		<link>http://www.songworksdesign.com/2011/11/creating-a-post/</link>
		<comments>http://www.songworksdesign.com/2011/11/creating-a-post/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 14:43:28 +0000</pubDate>
		<dc:creator>swdesignguy</dc:creator>
				<category><![CDATA[Wordpress Tutorial]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[create a post in wordpress]]></category>
		<category><![CDATA[WP beginner]]></category>

		<guid isPermaLink="false">http://www.songworksdesign.com/?p=325</guid>
		<description><![CDATA[This video walks you through the steps for creating a new blog post in WordPress. It assumes you know pretty-much nothing about the Admin area of WordPress, beyond actually logging in to it. You can watch it online by clicking the &#8220;Play&#8221; button, or download a Quicktime version to you machine to view later. If<div id="moreExcerpt"><a href="http://www.songworksdesign.com/2011/11/creating-a-post/"> [Read More...]</a></div>]]></description>
			<content:encoded><![CDATA[<p>This video walks you through the steps for creating a new blog post in WordPress. It assumes you know pretty-much nothing about the Admin area of WordPress, beyond actually logging in to it. You can watch it online by clicking the &#8220;Play&#8221; button, or download a Quicktime version to you machine to view later.</p>
<span id="more-325"></span>
<p>If anything is unclear or you still have questions, post a comment under &#8220;Leave A Reply&#8221;, and I&#8217;ll respond with the answer.</p>
<p class="directLink">Direct download: <a href="http://songworks-images.s3.amazonaws.com/wp_posts-1.m4v" target="_blank">Quicktime M4V Format</a></p>
<iframe width="420" height="315" src="http://www.youtube.com/embed/xZQ0of6Rrc4" frameborder="0" allowfullscreen></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.songworksdesign.com/2011/11/creating-a-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://songworks-images.s3.amazonaws.com/wp_posts-1.m4v" length="65458821" type="video/mp4" />
		</item>
		<item>
		<title>Peppermint Tree</title>
		<link>http://www.songworksdesign.com/2011/10/pepperminttree/</link>
		<comments>http://www.songworksdesign.com/2011/10/pepperminttree/#comments</comments>
		<pubDate>Sat, 29 Oct 2011 17:21:34 +0000</pubDate>
		<dc:creator>swdesignguy</dc:creator>
				<category><![CDATA[Testimonial]]></category>

		<guid isPermaLink="false">http://www.songworksdesign.com/?p=293</guid>
		<description><![CDATA[Gary Dates at Song Works Design has been a fabulous partner in the building of our website, www.pepperminttree.com. His eye for design, skilled photography and talent with web design have all come together to create a user friendly and appealing website for our school. He has also helped in the areas of website optimization, integrating<div id="moreExcerpt"><a href="http://www.songworksdesign.com/2011/10/pepperminttree/"> [Read More...]</a></div>]]></description>
			<content:encoded><![CDATA[<p class="intro">Gary Dates at Song Works Design has been a fabulous partner in the building of our
website, www.pepperminttree.com. His eye for design, skilled photography and talent
with web design have all come together to create a user friendly and appealing website
for our school.</p>
	<div id="showhide_testimonial2" class="showhide">
	<p>He has also helped in the areas of website optimization, integrating email marketing and social network marketing. He has a vast knowledge base, but what is also important in this ever changing field, he is quite resourceful as well. When he is not familiar with something, he researches and obtains the information needed.</p>
	<p>As a result of his work, we are attracting increasing numbers of new families to our school, and we receive many, many positive comments about the website from both current customers and prospective ones I highly recommend Gary Dates and SongWorks Design for companies looking to build a website to represent their business, and toattract new customers.</p>
	<p>Please feel free to call me at my office number below as a reference. I will be glad to answer any questions you may have about working with Song Works Design and Gary Dates.</p>
</div>
<p class="client">Valerie Frost-Lewis, MS Ed. (&#8220;Miss Val&#8221;)<br />
Owner/Director<br />
The Peppermint Tree Child Development Center<br />
1571 Partridge Street<br />
Toms River, NJ  08753<br />
732-929-2500</p></div>
<div class="clear"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.songworksdesign.com/2011/10/pepperminttree/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Candy&#8217;s Cottage</title>
		<link>http://www.songworksdesign.com/2011/10/candyscottagee-commerce/</link>
		<comments>http://www.songworksdesign.com/2011/10/candyscottagee-commerce/#comments</comments>
		<pubDate>Sat, 29 Oct 2011 17:19:29 +0000</pubDate>
		<dc:creator>swdesignguy</dc:creator>
				<category><![CDATA[Testimonial]]></category>

		<guid isPermaLink="false">http://www.songworksdesign.com/?p=291</guid>
		<description><![CDATA[All I can say about my new website, created by Gary Dates, is that I LOVE, LOVE, LOVE it!!! Gary took the vision and ideas that I had and made them come to life in a way that was even better than I had imagined! The site is attractive, professional, easy to use, and above<div id="moreExcerpt"><a href="http://www.songworksdesign.com/2011/10/candyscottagee-commerce/"> [Read More...]</a></div>]]></description>
			<content:encoded><![CDATA[<p class="intro">All I can say about my new <a href="http://www.candyscottage.com" target="_bank">website</a>, created by Gary Dates, is that I LOVE, LOVE, LOVE it!!! Gary took the vision and ideas that I had and made them come to life in a way that was even better than I had imagined!</p>
<div id="showhide_testimonial1" class="showhide"><p>The site is attractive, professional, easy to use, and above all, interesting, whether it be to anyone searching for coastal decor or simply surfing the web.  His photographs are spectacular (he is a perfectionist with every shot he took) and they capture my store and the merchandise in the best possible way. He was extremely helpful in making sure that I understood how to run the site, post updates, etc., something that most web designers would not have the time for.  Gary is highly knowledgeable, detail-oriented, creative, and hard-working. Not to mention &#8211; a really nice guy with a great sense of humor!  Gary&#8217;s goal of excellence is evident in the beautiful presentation that is now my website. I would highly recommend to anyone looking for a web designer to use Gary Dates. Don&#8217;t waste time looking for someone else &#8211; he is simply THE BEST!</div></p><p class="client">Candy Galekovic<br />Candy&#8217;s Cottage<br />Long Branch, NJ</p>
</div>
<div class="clear"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.songworksdesign.com/2011/10/candyscottagee-commerce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Low-Cost Websites</title>
		<link>http://www.songworksdesign.com/2011/10/cheap-websites/</link>
		<comments>http://www.songworksdesign.com/2011/10/cheap-websites/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 19:58:05 +0000</pubDate>
		<dc:creator>swdesignguy</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.songworksdesign.com/?p=263</guid>
		<description><![CDATA[If someone wants a low-cost site, it is possible if they are willing to accept very limited functionality, we want to be able to deliver, but even using a template, it can still be quite time consuming. To overcome that and still meet my customers&#8217; needs, we built our own, very simple, generic template to<div id="moreExcerpt"><a href="http://www.songworksdesign.com/2011/10/cheap-websites/"> [Read More...]</a></div>]]></description>
			<content:encoded><![CDATA[<p>If someone wants a low-cost site, it is possible if they are willing to accept very limited functionality, we want to be able to deliver, but even using a template, it can still be quite time consuming. To overcome that and still meet my customers&#8217; needs, we built our own, very simple, generic template to which we can simply add a client’s logo, a few images, and whatever copy they have. If that is good enough for you, than we can work with you to keep your costs significantly lower.</p>]]></content:encoded>
			<wfw:commentRss>http://www.songworksdesign.com/2011/10/cheap-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

