<?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>Tampa Site Design &#187; Marketing</title>
	<atom:link href="http://www.tampasitedesign.com/category/marketing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tampasitedesign.com</link>
	<description>Chronicles of Website Design</description>
	<lastBuildDate>Sun, 08 Aug 2010 19:36:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SEO tips for new sites</title>
		<link>http://www.tampasitedesign.com/seo-tips-for-new-sites/</link>
		<comments>http://www.tampasitedesign.com/seo-tips-for-new-sites/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 05:10:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[capitalization]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[multiple sites]]></category>
		<category><![CDATA[new sites]]></category>

		<guid isPermaLink="false">http://www.tampasitedesign.com/?p=64</guid>
		<description><![CDATA[Over the years, I&#8217;ve had to apply SEO to a wide variety of sites and it goes without saying, the best SEO is implemented when the site is built!
Nothing is worse than having to build around a messy site. What I mean by messy is lengthy URLS with pointless characters and crazy dynamic URLs! So [...]]]></description>
			<content:encoded><![CDATA[<p>Over the years, I&#8217;ve had to apply SEO to a wide variety of sites and it goes without saying, the best SEO is implemented when the site is built!</p>
<p>Nothing is worse than having to build around a messy site. What I mean by messy is lengthy URLS with pointless characters and crazy dynamic URLs! So here are my tips on creating an SEO-friendly site:</p>
<p>1) Use static URLs when possible. This might not be possible with really large sites, but if your site has less than 50 pages and doesn&#8217;t require new pages to be created all the time, this is definitely the way to go. This is definitely the easiest way and best for SEO. The second best is using an htaccess redirect to use a name in the URL and pass it as a GET variable. Something like this:</p>
<p>http://www.tampacreations.com/portfolio</p>
<p>In this case, portfolio is being passed as a GET variable, and you should always check this against an array of acceptable values! Combine that htaccess code with the proper rewrite condition to tack on the www, and handle forward slashes at the end too. Would you like to see it? Here&#8217;s the code I&#8217;m using:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">Options <span style="color: #339933;">-</span>Indexes
RewriteEngine On
RewriteCond <span style="color: #339933;">%</span><span style="color: #009900;">&#123;</span>HTTP_HOST<span style="color: #009900;">&#125;</span> <span style="color: #339933;">!</span>^www\<span style="color: #339933;">.</span>yourdomain\<span style="color: #339933;">.</span>com$ <span style="color: #009900;">&#91;</span>NC<span style="color: #009900;">&#93;</span>
RewriteRule ^<span style="color: #009900;">&#40;</span><span style="color: #339933;">.+</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span>$ http<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//www.yourdomain.com/$1 [R=301,L]</span>
RewriteCond <span style="color: #339933;">%</span><span style="color: #009900;">&#123;</span>HTTP_HOST<span style="color: #009900;">&#125;</span> ^<span style="color: #009900;">&#40;</span>www<span style="color: #339933;">.</span><span style="color: #009900;">&#41;</span>?yourdomain\<span style="color: #339933;">.</span>com$ <span style="color: #009900;">&#91;</span>NC<span style="color: #009900;">&#93;</span>
RewriteRule ^<span style="color: #009900;">&#40;</span><span style="color: #339933;">.+</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span>$ http<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//www.yourdomain.com/$1 [R=301,L]</span>
RewriteCond <span style="color: #339933;">%</span><span style="color: #009900;">&#123;</span>HTTP_HOST<span style="color: #009900;">&#125;</span> <span style="color: #339933;">!</span>^www\<span style="color: #339933;">.</span>yourdomain\<span style="color: #339933;">.</span>com$ <span style="color: #009900;">&#91;</span>NC<span style="color: #009900;">&#93;</span>
RewriteRule ^<span style="color: #009900;">&#40;</span><span style="color: #339933;">.*</span><span style="color: #009900;">&#41;</span>$ http<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//www.yourdomain.com/$1 [R=301,L]</span>
RewriteRule ^<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span>^<span style="color: #339933;">/</span>\<span style="color: #339933;">.</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">+</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span>?$ index<span style="color: #339933;">.</span>php?page<span style="color: #339933;">=</span>$<span style="color: #cc66cc;">1</span> <span style="color: #009900;">&#91;</span>L<span style="color: #009900;">&#93;</span></pre></div></div>

<p>So that&#8217;s the second best option if you have to go with dynamic URLs and it works pretty well! I believe I&#8217;m using PHP, then, to set 404 status of not found domains. </p>
<p>2) Search Pages can be a nightmare! Search pages can be problematic because they&#8217;re dynamic by nature and can end up having lots of variables in them. I think the trick here is to have a few of them indexed (the simple ones) and list those in your sitemap. The other ones you can let Google figure out or just deny it access.</p>
<p>3) Watch out for capitalization! Capitalization counts in URLs (just not the domain), so if I were to have a page Portfolio.html and portfolio.html, those are two different pages! If you&#8217;re using dynamic URLs, this can become a big problem with duplicate content.</p>
<p>4) Multiple websites. Lot of e-commerce site owners have the mentality that duplicating their entire store 5 times and putting it on 5 different domains helps their SEO out. Probably not a good idea. What ends up happening is since most stores have a lot of products, the owners use the same descriptions, same images, everything, and all the sites end up having duplicated content issues! I happy to report that a client I worked with who had this issue across 4 domains, downsized to one domain, and has twice as much traffic now after doing so in about 12 months. It takes time, but it&#8217;s worth it. The only way you should keep 5 different stores is if all the stores are different! Different product titles, different descriptions for each page, keywords, product descriptions, shipping text, contact text, etc. etc. etc. Everything should be completely different if you want to rank well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tampasitedesign.com/seo-tips-for-new-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two Useful Facebook Applications for Businesses</title>
		<link>http://www.tampasitedesign.com/two-useful-facebook-applications-for-businesses/</link>
		<comments>http://www.tampasitedesign.com/two-useful-facebook-applications-for-businesses/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 05:11:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.tampasitedesign.com/?p=58</guid>
		<description><![CDATA[If you own a business, why not create a Facebook fan page for your business? The point of creating a Facebook page is to allow clients of your business the opportunity to become fans of your brand and expand your viral network, increasing the possibilities of both new and repeat business. It doesn&#8217;t take long, [...]]]></description>
			<content:encoded><![CDATA[<p>If you own a business, why not create a Facebook fan page for your business? The point of creating a Facebook page is to allow clients of your business the opportunity to become fans of your brand and expand your viral network, increasing the possibilities of both new and repeat business. It doesn&#8217;t take long, you can get started here:</p>
<p>http://www.facebook.com/advertising/?pages</p>
<p>Once you&#8217;ve got your fan page going, you can add a couple useful applications to it to increase the usefulness of your page.</p>
<p>1) Social RSS: http://www.facebook.com/apps/application.php?id=23798139265</p>
<p>Social RSS is an application that allows fans to see your latest feeds on your page (and wall if you choose). There are many options and customizations, such as tags, placement, and more. Remember that you&#8217;ll need a blog to use this application, just plugin your RSS feed and you&#8217;re ready to go!</p>
<p>2) Static FBML: http://www.facebook.com/apps/application.php?id=4949752878</p>
<p>Static FBML is an HTML editor that allows you to put HTML widgets directly on your fan page (or profile). If you want a big logo of your company or a call to action button that links to your website directly, this application will do just the trick.</p>
<p>Another Facebook Page trick is to use a customized URL. Once your fan page acquires 30 or more fans, head over to:</p>
<p>http://www.facebook.com/username/</p>
<p>Here you&#8217;ll be able to set a username for your Facebook page. This will make your page URL easier to remember, cleaner and better for SEO if you go that route. Get started and I&#8217;ll be sharing more helpful hints in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tampasitedesign.com/two-useful-facebook-applications-for-businesses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tampa Website Design Firm</title>
		<link>http://www.tampasitedesign.com/tampa-website-design-firm/</link>
		<comments>http://www.tampasitedesign.com/tampa-website-design-firm/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 22:58:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.tampasitedesign.com/?p=55</guid>
		<description><![CDATA[Our website design and development service division is now complete! Introducing, Tampa Creations, the solution for website design, search engine optimization and more!
Tampa Website Design, TampaCreations.com
The thing that makes Tampa Creations different from most other website development firms is that it offers a full range of web services, from website design all the way to [...]]]></description>
			<content:encoded><![CDATA[<p>Our website design and development service division is now complete! Introducing, Tampa Creations, the solution for website design, search engine optimization and more!</p>
<p><a href="http://www.tampacreations.com/">Tampa Website Design, TampaCreations.com</a></p>
<p>The thing that makes Tampa Creations different from most other website development firms is that it offers a full range of web services, from website design all the way to social network marketing. This makes Tampa Creations a &#8220;web presence&#8221; provider, not just a website design firm. The benefit to businesses here is that one company handles the vertical integration of your online development and marketing, allowing each part to be connected and play a vital role in supporting the other.</p>
<p>Just how important is vertical marketing? Throughout years of working with clients, most clients don&#8217;t believe or don&#8217;t think about if they want to incorporate search engine optimization or website marketing techniques into their website in the future. Of course, many of those clients visit that possibility after they learn that traffic doesn&#8217;t come from nothing, you need optimization and internet marketing to drive the traffic to your website, after all, that&#8217;s one of the main benefits of having a website&#8230; free web traffic!</p>
<p>It&#8217;s important to look at your business and online strategy and decide if going after the web traffic is right for your model. If it is, having vertical integration allows your website to be built from the ground-up incorporating the best search engine optimization methods and even to start the marketing early on, kind of like priming an engine. If you don&#8217;t do this early on, it can become an overwhelming task to revisit and incorporate the right optimization, and even worse if the website has to be re-designed to allow it to rank properly. Don&#8217;t make these costly errors, put the additional small investment now into your website and design to prepare it for the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tampasitedesign.com/tampa-website-design-firm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Power of Pretty: Form Versus Function</title>
		<link>http://www.tampasitedesign.com/the-power-of-pretty-form-versus-function/</link>
		<comments>http://www.tampasitedesign.com/the-power-of-pretty-form-versus-function/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 08:16:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.tampasitedesign.com/?p=31</guid>
		<description><![CDATA[Ah the never ending debate of form versus function. In a site design, the subject will come up again and again, most often in the form of dollars spent. Do you spend more money on a good looking website or a good functioning website. If you&#8217;re fortunate enough to have the right people behind its [...]]]></description>
			<content:encoded><![CDATA[<p>Ah the never ending debate of form versus function. In a site design, the subject will come up again and again, most often in the form of dollars spent. Do you spend more money on a good looking website or a good functioning website. If you&#8217;re fortunate enough to have the right people behind its development, you&#8217;ll get both, which is precisely what most clients want in the first place. As though it may seem to be commonplace to desire both form and function in a website, there are many clients whom ignore form all together, at least more than those whom ignore function.</p>
<p>Clients can ignore form in two ways, either <strong>by not caring</strong> or <strong>by forcefully pressing designs that they want to be installed</strong> (and not necessarily what their market or business needs). Unfortunately, both of these can be detrimental to their website&#8217;s success. And when we talk about form and aesthetics, what we&#8217;re really getting at is <strong>how the website makes the consumer feel</strong>. It is the vibe that the website passes through to the consumer. This vibe can be any number of feelings&#8230; trust, prestige, low price, etc. <strong>That feeling helps the consumer to believe your message (function).</strong> Essentially, the look of your website becomes a warm-up for your visitor before the big game&#8230; the function and message. This warm-up happens instantaneously, right as the user see the website it is instantly judged and a vibe is sent.</p>
<p>Let&#8217;s put some examples to use. We&#8217;ll start with the vibe of the site since that it what the end goal here is.</p>
<ul>
<li>A bank wants to instill trust above all else in its visitors. A trustworthy design is not necessarily artistic or on the verge of being brand new (or what might be called a Web 2.0 design right now). It requires a sense of security and history, represented with many lines and lots of text. Smaller text (11 or 10 pixel) represents professionalism, and therefore further instills trust. A clean, simple color scheme to, again, reflect the bank&#8217;s professionalism. A simple, small logo near the top will do since a bank knows that its brand is big and does not need to be flaunted (because a larger logo would represent insecurity, passing an unwanted vibe to the visitor). Let&#8217;s look at some large bank websites:http://www.bankofamerica.com
<p>http://www.citibank.com</p>
<p>http://www.wellsfargo.com</p>
<p>http://www.suntrust.com</p>
<p>http://www.wachovia.comSo you get the picture&#8230; essentially all these websites conform to most of the above description. They seem professional and knowledgable at first glance, which comes only from the design itself. Wachovia.com had the worst vibe of them to myself personally, and upon discovery, I pinpointed a couple things that cause it&#8230; One, the silver gradiented sidebar was a little too flashy, making it harder to concentrate on the text and form that lie on top&#8230; And Two, the lack of lines and separation (especially the content from background) make the text seem new and empty, something that doesn&#8217;t send messages of trust to the visitor.</p>
<p>Of course, we can find far worse than Wachovia, however. Let&#8217;s look at a smaller bank with much less of a design budget&#8230;</p>
<p>https://www.bankiowa.com/home/home</p>
<p>Even the URL structure doesn&#8217;t make too much sense (&#8230;home/home), but on to the design&#8230; There seems to be quite a few too many colors used, especially colors with too high of saturation which typically send a vibe of youth (bold reds, blues, yellows, etc.). I like this example because the functionality of the website appears to be very good. It&#8217;s well organized, easy to read, etc. But the colors and overall design of the website don&#8217;t really produce a feeling of trustworthiness, or even community (if that&#8217;s what was intended). There&#8217;s very little text, which makes the bank seem new, and the spacing attributes to that as well. Let&#8217;s look at another example&#8230;</p>
<p>http://www.thebankks.com/index.html</p>
<p>I almost believed this was an agricultural site instead of a bank. Of course, they&#8217;re targeting their market which may be primarily agriculture, but that doesn&#8217;t mean they can&#8217;t do both effectively. The graphics, font changes, and especially the farming pictures send more of feeling of informative instead of trustworthy. Of course it&#8217;s possible to give off a vibe of trust while still maintaining a fix towards agriculture for your market&#8230;</p>
<p>https://www.farmbureaubank.com/</p>
<p>A good sense of trust when visiting the site. And if they wanted to learn a little more towards agriculture on the design, they could use some farming pictures in their slideshow, simple, yet effective. And finally&#8230;</p>
<p>http://www.farmbank.net/</p>
<p>Quite different from the typical banking website and I&#8217;m sure their priorities are in different places than most of the above banks. After all, why design to instill trust? So you can keep visitors confident that their money is safe (there by keeping your customers) and attracting new ones. My assumption is that this bank probably doesn&#8217;t have too much competition in their locations, and if they do, they would certainly begin losing potential customers that value online security.</li>
<li>The next example is the last one since these comparisons are getting to be somewhat long. But were going to do something entirely different to step out of the box of what my be stereotyped as &#8220;good design.&#8221; <strong>Remember, a good design achieves its goals! </strong>We&#8217;re going to do a pool construction company now. Let&#8217;s say you and the wife decide on getting a built-in pool (you can move to Florida too, to play long if you need to).The pool construction company&#8217;s goals is to sell you a pool. Your goal is to find the right pool at the right price, that&#8217;s it, right? Kinda&#8230; you probably already have in your mind what the right price is, and that can&#8217;t be changed, but what can, is the right pool. The right pool to you is just a feeling. It&#8217;s a feeling from something you&#8217;ve read in a magazine, seen in a movie, or maybe even at your neighbors&#8217;. The point here is, is that you have an idea or a feeling of what you want, and you can describe it to the different construction companies, but it&#8217;s the company that can match that feeling with your price that will win the bid. So how do you as the construction company match that feeling?
<p>Well first it would take some research and experience to understand what it is most people want in their pool and what feelings they have when they describe it. A pool to most people is a place where they can relax and forget about the stresses of everyday life. To others, it may be entertainment, something that&#8217;s exciting and fun! So we have two pretty different vibes, but it&#8217;s still possible to include both of these into a design. Vibes that the website wouldn&#8217;t want to portray are feelings of stress and discomfort or just plain boring. Since people understand that these companies don&#8217;t spend great deals of money on their website, they won&#8217;t be necessarily needing a very professional design, and in fact, too professional of a design might turn off some visitors because that company will look like the expensive company. On the other hand, some visitors will be looking for just that &#8211; a trustworthy and reliable company that they don&#8217;t mind paying a little extra for. This is where knowing your market and what customers you want comes very handy! For the purposes of this, we&#8217;ll leave out professionalism and just show a couple examples on the two positives of what we&#8217;re looking for: relaxation and fun.</p>
<p>http://www.signaturepools.com/</p>
<p>http://www.palacepools.com/</p>
<p>http://www.artesianpools.com/</p>
<p>http://www.allstatepools.com/</p>
<p>Now, although I may argue with having sounds play automatically on a website, there&#8217;s no doubt that these sites do a decent job of instilling relaxation and/or fun in the visitor from their designs. On the other hand, these ones don&#8217;t instill that feeling as well:</p>
<p>http://www.swanpools.com/</p>
<p>http://www.elitepoolbuilders.com/</p>
<p>http://www.abovegroundpoolprofessionals.com/</p>
<p>Keep in mind pictures are one of the greatest ways to instill a feeling in your visitor. Having an integrated slideshow of pictures can really help connect with that predefined feeling a visitor has. If you don&#8217;t have a slideshow, try to choose the most common of images that have the greatest impact of exactly what the visitor is looking for. The last website posted doesn&#8217;t have a very flattering picture of the above ground pool, but it at least shows what is offered so visitors know they are in the right spot. Unfortunately, some visitors require a bit more &#8211; they want to know that this is the pool company that will sell them they&#8217;re dream, not just their pool.</li>
</ul>
<p>When looking into the design of a website, it&#8217;s critical that you think back to the overall goals of the website and work your way forward through the visitor and back to the design. This backwards process will ensure all the connections are in place for an effective design.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tampasitedesign.com/the-power-of-pretty-form-versus-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

