<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Search Marketing Goodness</title>
	<atom:link href="http://tampaseo.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tampaseo.wordpress.com</link>
	<description>Uncovering the "what's hot and what's not" in Internet Marketing</description>
	<lastBuildDate>Fri, 06 Nov 2009 17:23:27 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='tampaseo.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/cf12e04815a83db2c5f42eadd7029860?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Search Marketing Goodness</title>
		<link>http://tampaseo.wordpress.com</link>
	</image>
			<item>
		<title>The Amazing Power of the BASE Tag</title>
		<link>http://tampaseo.wordpress.com/2009/11/06/the-amazing-power-of-the-base-tag/</link>
		<comments>http://tampaseo.wordpress.com/2009/11/06/the-amazing-power-of-the-base-tag/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 17:18:24 +0000</pubDate>
		<dc:creator>David Pavlicko</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[base tag]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[html tags]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://tampaseo.wordpress.com/?p=379</guid>
		<description><![CDATA[I&#8217;m not one to normally get excited about HTML tags, but I&#8217;m making an exception in this case.
Raise your hand if you&#8217;ve heard of the &#60;base&#62;  tag.
Anyone, anyone?
Don&#8217;t feel bad, I didn&#8217;t either until today &#8211; but I&#8217;m going to show you why I think it&#8217;s so flippin cool, especially for those of us who [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tampaseo.wordpress.com&blog=3856570&post=379&subd=tampaseo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;m not one to normally get excited about HTML tags, but I&#8217;m making an exception in this case.</p>
<h2>Raise your hand if you&#8217;ve heard of the &lt;base&gt;  tag.<br />
Anyone, anyone?</h2>
<p>Don&#8217;t feel bad, I didn&#8217;t either until today &#8211; but I&#8217;m going to show you why I think it&#8217;s so flippin cool, especially for those of us who work with complicated root structures and CMS frameworks.</p>
<p>The humble little <a href="http://www.w3schools.com/TAGS/tag_base.asp" target="_blank">base tag</a> is handy for at least 2 purposes that I know of.<br />
If you use it for something else, I&#8217;d love you to leave a comment and let me know.</p>
<h2>What does the &lt;base&gt; tag do?</h2>
<p><strong>1.</strong> Setting a default target for any links, including pdf downloads, etc.. that you place on the page. If you tire of putting the &#8216;target=&#8221;_blank&#8221; attribute after all your links, this baby&#8217;s for you. Creating a consistent experience for your users will help to give them piece of mind before they go clicking around&#8230;</p>
<p><strong>2.</strong> Setting a default base path for any href on the page. e.g. if you include &lt;base href=&#8221;http://www.w3schools.com/images/&#8221; /&gt; on your page, you no longer have to link to your images with that &#8216;/images/&#8217; path, instead you can simply put &lt;img src=&#8221;myImage.jpg&#8221; width=&#8221;20&#8243; height=&#8221;20&#8243; alt=&#8221;blahblahblah&#8221; /&gt; and the image will appear like normal.</p>
<p>Now you may be saying, big deal &#8211; and maybe it&#8217;s NOT  a big deal for many people. But when you&#8217;re dealing with a backend where your links references look like this: &#8220;/Portals/7/tabid/articlebin/posts/images/image.jpg&#8221; or something similar, you&#8217;ll probably appreciate it much, much more. I often find myself opening another browser just so I can look at the image properties for a site I&#8217;m working on, to make sure I&#8217;m correct.</p>
<h2>How to implement-</h2>
<p>simply put the &lt;base&gt; tag in between the &lt;head&gt;&lt;/head&gt; section of your page like you would any other script or meta tag. (note: you&#8217;ll need to self close the tag if you&#8217;re using XHTML)</p>
<p>Here&#8217;s an example as shown on the <a title="click to visit w3c - opens in new window" href="http://www.w3schools.com" target="_blank">w3c site</a>:</p>
<p>&lt;head&gt;<br />
&lt;base href=&#8221;http://www.w3schools.com/images/&#8221; /&gt;<br />
&lt;base target=&#8221;_blank&#8221; /&gt;<br />
&lt;/head&gt;</p>
<p>&lt;body&gt;<br />
&lt;img src=&#8221;stickman.gif&#8221; /&gt;<br />
&lt;a href=&#8221;http://www.w3schools.com&#8221;&gt;W3Schools&lt;/a&gt;<br />
&lt;/body&gt;</p>
<p><a title="google blogpost about canonical link" href="http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html" target="_blank">According to google</a>, the &lt;base&gt; tag works fine with the new &#8216;rel=canonical&#8217; tag also.  Note that if you click the image properties, the complete pathway will still be</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tampaseo.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tampaseo.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tampaseo.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tampaseo.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tampaseo.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tampaseo.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tampaseo.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tampaseo.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tampaseo.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tampaseo.wordpress.com/379/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tampaseo.wordpress.com&blog=3856570&post=379&subd=tampaseo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://tampaseo.wordpress.com/2009/11/06/the-amazing-power-of-the-base-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">SEO Dave</media:title>
		</media:content>
	</item>
		<item>
		<title>All Your Marketing Belongs to Us</title>
		<link>http://tampaseo.wordpress.com/2009/10/28/all-your-marketing-belongs-to-us/</link>
		<comments>http://tampaseo.wordpress.com/2009/10/28/all-your-marketing-belongs-to-us/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 16:18:59 +0000</pubDate>
		<dc:creator>David Pavlicko</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[web marketing]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[ftc guidelines]]></category>
		<category><![CDATA[sem]]></category>
		<category><![CDATA[social marketing]]></category>

		<guid isPermaLink="false">http://tampaseo.wordpress.com/?p=371</guid>
		<description><![CDATA[The new FTC &#8216;guidelines&#8217; aren&#8217;t about consumer protection.


They&#8217;re about SELECTIVE discrimination by a government authority, and you DEFINITELY shouldn&#8217;t expect anything good to come from it. 
Before I get into this, let me say that I 100% whole-heartedly agree with WOMMA&#8217;s code of ethics, even though I&#8217;m not an official member, and I don&#8217;t get paid [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tampaseo.wordpress.com&blog=3856570&post=371&subd=tampaseo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h1><span style="color:#003366;"><a href="http://tampaseo.files.wordpress.com/2009/10/ftc_advertising_guidelines.jpg"><img class="alignleft size-full wp-image-375" title="ftc_advertising_guidelines" src="http://tampaseo.files.wordpress.com/2009/10/ftc_advertising_guidelines.jpg?w=390&#038;h=505" alt="ftc_advertising_guidelines" width="390" height="505" /></a>The new FTC &#8216;guidelines&#8217; aren&#8217;t about consumer protection.</span></h1>
<p><span style="color:#003366;"><br />
</span></p>
<h2><span style="color:#000000;">They&#8217;re about SELECTIVE discrimination by a government authority, and you DEFINITELY shouldn&#8217;t expect anything good to come from it. </span></h2>
<p>Before I get into this, let me say that I 100% whole-heartedly agree with <a href="http://womma.org/ethics/code/">WOMMA&#8217;s code of ethics</a>, even though I&#8217;m not an official member, and I don&#8217;t get paid to write about anything for this blog (not that I think there&#8217;s anything wrong with that). All thoughts are purely my own, except where I&#8217;ve linked to external sites, and I receive no revenue from adsense or other ads on this blog.  By the way, fruity pebbles is probably the BEST cereal ever. And nothing tastes better on EGGO waffles than JIF peanut butter. <em><strong>Suck on that FTC.</strong></em></p>
<h2>If the <a href="http://www.ftc.gov/os/2009/10/091005endorsementguidesfnnotice.pdf" title="read the FTC guideline pdf">new Federal Trade Commission guidelines</a> went into affect today, this is what would happen:</h2>
<ul>
<li>affiliate marketing will virtually die.</li>
<li>if you sell ads on your website, everything you say about everybody and everything will be analyzed &#8211; even if no one reads it.</li>
<li>if you blog about or recommend a product, you&#8217;d better make damn sure you have NO association with it &#8211; or be able to sufficiently document your substantiation for your claim.</li>
<li>word of mouth marketing (read:social media) will either be dominated by spam, or suck. probably both.</li>
<li>you&#8217;ll no longer get away with adding = &#8216;results not typical&#8217; -type disclaimers anymore. Get used to &#8216;generally-expected-results&#8221;.</li>
<li>testimonials will virtually disappear</li>
<li>celebrities can be made liable for endorsements, so they&#8217;ll simply stop doing them.</li>
<li>web copy will SUCK &#8211; companies will be forced to sell on &#8216;features&#8217; not &#8216;benefits&#8217;.</li>
<li>Even with a proper disclaimer, advertisers must have documented PROOF of what consumers can generally expect from their product.</li>
<li>Advertisers will be required to perform research to KNOW what consumers actually think after reading an ad &#8211; regardless of what the ad says.</li>
<li>Endorsements from Organizations will require &#8216;collective judgment of the organization.&#8217;</li>
<li>Traditional media reviews are somehow exempt from having to make disclosures for sponsored advertising messages. WTF?!!</li>
<li>If your company engages in &#8217;social media participation&#8217; and an employee goes &#8216;rogue&#8217; &#8211; law enforcement action may be considered.</li>
<li>Promoting your company&#8217;s or client&#8217;s products in forums without disclosure will be deemed deceptive and possibly warrant law enforcement action.</li>
</ul>
<p>After reading the actual FTC guideline, it became pretty apparent to me that they couldn&#8217;t give a rat&#8217;s ass about the problems this causes for the majority of honest, hard-working marketers. Comment after comment from major advertising and marketing associations disputing sections of the guide are summarily rejected throughout the Commission&#8217;s guide. (Read pages 22-24 of the guidelines to understand how bad this will be.)</p>
<h2>Here&#8217;s some particularly BAD guidelines:</h2>
<blockquote>
<div id="_mcePaste">Thus, when the ad just features “before” and “after” pictures with the caption “I lost 50</div>
<div id="_mcePaste">pounds in 6 months with WeightAway,” the ad is likely to convey that her experience is</div>
<div id="_mcePaste">representative of what consumers will generally achieve.  Therefore, if consumers cannot36</div>
<div id="_mcePaste">generally expect to achieve such results, the ad should clearly and conspicuously disclose what</div>
<div id="_mcePaste">they can expect to lose in the depicted circumstances (e.g., “most women who use WeightAway</div>
<div id="_mcePaste">for 6 months lose at least 15 pounds”).  Similarly, if the testimonialist in an ad with those two</div>
<div id="_mcePaste">pictures simply says, “I lost 50 pounds with WeightAway” without any mention of how long it</div>
<div id="_mcePaste">took to achieve those results, and WeightAway users generally do not lose 50 pounds, the ad</div>
<div id="_mcePaste">should disclose what results they do generally achieve (e.g., “most women who use WeightAway</div>
<div id="_mcePaste">lose 15 pounds”).</div>
</blockquote>
<h3>Pop Question!</h3>
<p>Can I also say &#8220;most women who only lost 15 pounds using WeightAway didn&#8217;t follow our recommended program, which included a diet and exercise plan. Those who did lost an average of 50 pounds during that same time period!!&#8221; ?</p>
<p>Answer: Nope &#8211; diet and exercise is too vague. geesh.</p>
<h2><span style="color:#003366;">There are SOME things in the new FTC guidelines that do make sense, though.</span></h2>
<p>Expert endorsements &#8211; where some weight loss (or similar product) finds a &#8216;doctor&#8217; (who&#8217;s really a veteranarian or something like that) to endorse their product will be regulated by these endorsements as well. No problem, that&#8217;s what the FTC is supposed to do.</p>
<p>Disclosure from individuals engaged in blogging or product marketing who receive free products from advertisers. Again, I have no problem here- openess and honesty is the name of the game. Just because someone receives money or products for review doesn&#8217;t mean I won&#8217;t value their opinion. That&#8217;s what review sites are about &#8211; oh wait, I forgot that they&#8217;ll be disappearing.</p>
<p>Movie commercials that show film critics review excerpts like &#8211; &#8220;It&#8217;ll knock your socks off!&#8221; won&#8217;t fly anymore if the original review said &#8220;It&#8217;ll knock your socks off and you&#8217;ll vomit all over yourself because this movie is so bad.&#8221;  It&#8217;ll be interesting to see how they handle this &#8211; guess it&#8217;ll just be &#8216;thumbs up or down&#8217; or &#8216;4 out of 5 stars&#8217;.</p>
<h2><span style="color:#003366;">Final Thoughts:</span></h2>
<p>All in all, these guidelines are a joke. Endorsements in particular are very confusing &#8211; Tiger Woods hitting a Titleist golf ball, but never holds one up or talks about it  - is an endorser. Star Jones picks up a bottle of diet coke and says she drinks it because it has fewer calories than regular coke &#8211; is not.  huh?</p>
<p>Companies that come out with a &#8216;new and improved version&#8217; or a different formula for a product that&#8217;s already been endorsed will be required to contact anyone who endorses their product in an advertisement and make sure that they still agree to the claims they made about their product now that it&#8217;s changed. &#8211; seriously?!</p>
<p>By the way, what is a NET IMPRESSION CONSUMER?</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tampaseo.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tampaseo.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tampaseo.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tampaseo.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tampaseo.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tampaseo.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tampaseo.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tampaseo.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tampaseo.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tampaseo.wordpress.com/371/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tampaseo.wordpress.com&blog=3856570&post=371&subd=tampaseo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://tampaseo.wordpress.com/2009/10/28/all-your-marketing-belongs-to-us/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">SEO Dave</media:title>
		</media:content>

		<media:content url="http://tampaseo.files.wordpress.com/2009/10/ftc_advertising_guidelines.jpg" medium="image">
			<media:title type="html">ftc_advertising_guidelines</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Sell Your Boss (or Clients) on Social Media</title>
		<link>http://tampaseo.wordpress.com/2009/10/07/how-to-sell-your-boss-or-clients-on-social-media/</link>
		<comments>http://tampaseo.wordpress.com/2009/10/07/how-to-sell-your-boss-or-clients-on-social-media/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 16:28:57 +0000</pubDate>
		<dc:creator>David Pavlicko</dc:creator>
				<category><![CDATA[social media]]></category>
		<category><![CDATA[web marketing]]></category>
		<category><![CDATA[social marketing]]></category>
		<category><![CDATA[social ROI]]></category>

		<guid isPermaLink="false">http://tampaseo.wordpress.com/?p=366</guid>
		<description><![CDATA[This is the best presentation on Social Media buy-in I&#8217;ve seen yet. 
I don&#8217;t typically just repost other people&#8217;s content, but in this case, I don&#8217;t really have anything else to add.
I think these excellent presentation slides on Social Media ROI speak for themselves.
Olivier Blanchard   Basics Of Social Media Roi<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tampaseo.wordpress.com&blog=3856570&post=366&subd=tampaseo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h1><span style="color:#000080;">This is the best presentation on Social Media buy-in I&#8217;ve seen yet. </span></h1>
<p>I don&#8217;t typically just repost other people&#8217;s content, but in this case, I don&#8217;t really have anything else to add.<br />
I think these excellent presentation slides on Social Media ROI speak for themselves.</p>
<div id="__ss_1902502" style="width:425px;text-align:left;"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;text-decoration:underline;margin:12px 0 3px;" title="Olivier Blanchard   Basics Of Social Media Roi" href="http://www.slideshare.net/thebrandbuilder/olivier-blanchard-basics-of-social-media-roi">Olivier Blanchard   Basics Of Social Media Roi</a><iframe frameborder="0" width="433" height="363" src="http://wpcomwidgets.com/?width=425&amp;height=355&amp;src=http%3A%2F%2Fstatic.slidesharecdn.com%2Fswf%2Fssplayer2.swf%3Fdoc%3Dolivierblanchard-basicsofsocialmediaroi-090824230322-phpapp01%26stripped_title%3Dolivier-blanchard-basics-of-social-media-roi&amp;quality=high&amp;wmode=tranparent&amp;_tag=gigya&amp;_hash=8fc4dbd1ede8431b3f0c0ec5780172ee" id="8fc4dbd1ede8431b3f0c0ec5780172ee"></iframe></p>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/thebrandbuilder">Olivier Blanchard</a>.</div>
</div>
<div style="width:425px;text-align:left;">Here&#8217;s the link to Olivier&#8217;s actual <a href="http://smroi.net/">video presentation on Social Media ROI.</a></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tampaseo.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tampaseo.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tampaseo.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tampaseo.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tampaseo.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tampaseo.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tampaseo.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tampaseo.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tampaseo.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tampaseo.wordpress.com/366/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tampaseo.wordpress.com&blog=3856570&post=366&subd=tampaseo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://tampaseo.wordpress.com/2009/10/07/how-to-sell-your-boss-or-clients-on-social-media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">SEO Dave</media:title>
		</media:content>
	</item>
	</channel>
</rss>