<?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>Aff Playbook.com &#187; Landing Pages &amp; CTR</title>
	<atom:link href="http://affplaybook.com/blog/category/landing-pages-ctr/feed/" rel="self" type="application/rss+xml" />
	<link>http://affplaybook.com/blog</link>
	<description>Tactics for affiliate marketing and entrepreneurs</description>
	<lastBuildDate>Fri, 03 Feb 2012 03:31:57 +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>Killer Buttons To Squeeze More CTR From Your Landing Pages</title>
		<link>http://affplaybook.com/blog/landing-pages-ctr/killer-buttons-to-squeeze-more-ctr-from-your-landing-pages/</link>
		<comments>http://affplaybook.com/blog/landing-pages-ctr/killer-buttons-to-squeeze-more-ctr-from-your-landing-pages/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 06:44:54 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Landing Pages & CTR]]></category>

		<guid isPermaLink="false">http://ppvplaybook.com/blog/?p=716</guid>
		<description><![CDATA[This is a guest post from forum member, and very funny fellow CTRtard. If you don&#8217;t read his blog, you should start immediately.  Aside from the headline, your landing page&#8217;s call to action (CTA) is one of the most important elements you should be testing.  Often times, the CTA is made in the form of [...]]]></description>
			<content:encoded><![CDATA[<p><em>This is a guest post from forum member, and very funny fellow <a href="http://ctrtard.com/">CTRtard</a>. If you don&#8217;t read his blog, you should start immediately. </em></p>
<p>Aside from the headline, your landing page&#8217;s call to action (CTA) is one of the most important elements you should be testing.  Often times, the CTA is made in the form of a button that&#8217;s labeled &#8220;Click Here&#8221; or &#8220;Continue&#8221;.   Because buttons are graphical, changing them to test various colors, sizes and labels can be tedious.  Until now.</p>
<h1>Today Is Your Lucky Day</h1>
<p>After firing up Photoshop to resize yet another button, I decided to try and see if CSS alone could do the job.   After checking out a few tutorials here and there, <a href="http://devgrow.com/examples/cssbuttons/">this</a> post seemed to almost have it right.  But IE didn&#8217;t seem to like this solution and I wasn&#8217;t entirely happy with how it looked/worked.  So here&#8217;s what I came up with&#8230;</p>
<p>This is a short and sweet little chunk of CSS to let you create tons of button variations for your landing pages faster and easier than ever before.  Check out the demo:</p>
<p><a href="http://ctrtard.com/misc/css-buttons/">CSS Buttons Demo</a></p>
<h1>The Code</h1>
<p>This code uses CSS and a single image file.  The image file is there to give the buttons a subtle shading effect.   Other than that, this requires no images at all.  That means resizing, changing colors, or changing CTA&#8217;s can all be done with just a few keypresses!</p>
<p><strong>How to Use</strong></p>
<p>1. First paste all of this CSS code inside your &lt;head&gt; &lt;/head&gt; tags:</p>
<pre class="brush: css; title: ; notranslate">
&lt;!-- meta tag is needed for rounded corners on ie --&gt;
&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot; /&gt;

&lt;style&gt;

body {
background-color:#ffffff;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
}

/* start of css button styles */
.button {
color: #fff;
text-decoration:none;
font-weight: bold;
padding: 5px 10px;
display: inline;
border-style:solid;
border-width:2px;
border-radius: 6px;
-o-border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
background-image: url('button-gradient.png');
}
.button.small    { font-size:14px }
.button.medium   { font-size:18px; }
.button.large    { font-size:24px; }
.button.giant    { font-size:30px; }
.button.enormous { font-size:40px; }
.button.red     { background-color: #FF0000; border-color: #e50000; }
.button.purple  { background-color: #9400bf; border-color: #8200AA; }
.button.green   { background-color: #58aa00; border-color: #519900; }
.button.orange  { background-color: #FF6F02; border-color: #ED6402; }
.button.blue    { background-color: #2c6da0; border-color: #245982; }
.button.yellow  { background-color: #FFC300; border-color: #ED9F04; color: #000000 }
.button.black   { background-color: #333333; border-color: #000000; }
.button.white   { background-color: #FFFFFF; border-color: #8C8C8C; color: #000000; }
.button.bing    { background-color: #0044CC; border-color: #245982; }
.button:hover           { color:yellow; }
.button.red:hover       { background-color: #e50000; }
.button.purple:hover    { background-color: #8200AA; }
.button.green:hover     { background-color: #519900; }
.button.orange:hover    { background-color: #ED6402; }
.button.blue:hover      { background-color: #245982; }
.button.yellow:hover    { background-color: #ED9F04; }
.button.black:hover     { background-color: #000000; }
.button.white:hover     { background-color: #F7F7F7; color:#196DFF; }
.button.bing:hover      { background-color: #FFFFFF; border-color: #0044CC; color:#0044CC;}
.button:active { position: relative; top: 1px; }
/* end of css button styles */

&lt;/style&gt;
</pre>
<p>2. Next, upload the file &#8220;&#8216;button-gradient.png&#8221; file into the same directory as your landing page.</p>
<p>3. Now you&#8217;re free to create buttons anywhere in the document by using this simple format:</p>
<pre class="brush: css; title: ; notranslate">
&lt;a href='#' class='button red'&gt;Click Here&lt;/a&gt;&lt;/pre&gt;
&lt;a href='#' class='small button purple'&gt;Click Here&lt;/a&gt;
&lt;a href='#' class='medium button blue'&gt;Click Here&lt;/a&gt;
&lt;a href='#' class='giant button orange&gt;Click Here&lt;/a&gt;
&lt;a href='#' class='enormous button bing'&gt;Click Here&lt;/a&gt;
</pre>
<p>Notice how the class name defines how the button will look.  Sweet!  Now you don&#8217;t have any more excuses to not test a ton of button variations. <img src='http://affplaybook.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<h1>Download</h1>
<p>You can download the zip file with the demo page and the image file <a href="http://ctrtard.com/misc/css-buttons/css-buttons.zip">here</a>.  Just view the source to see how to make all the button combinations.</p>
<p>If you come up with any new color schemes, post a comment with your modifications!</p>
<p>That&#8217;s it!  Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://affplaybook.com/blog/landing-pages-ctr/killer-buttons-to-squeeze-more-ctr-from-your-landing-pages/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>You Have to SEE These Results</title>
		<link>http://affplaybook.com/blog/landing-pages-ctr/you-have-to-see-these-results/</link>
		<comments>http://affplaybook.com/blog/landing-pages-ctr/you-have-to-see-these-results/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 03:18:38 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Landing Pages & CTR]]></category>

		<guid isPermaLink="false">http://ppvplaybook.com/blog/?p=702</guid>
		<description><![CDATA[In the previous post I asked everyone to vote which call to action generated the highest CTR. Here are the results from the poll&#8230; Turns out most people got this one wrong! Here are the actual results: 1. Click here to get your free report &#8211; 1.4% 2. See your credit report here &#8211; 2.7% [...]]]></description>
			<content:encoded><![CDATA[<p>In the <a href="http://ppvplaybook.com/blog/uncategorized/vote-what-words-get-the-best-ctr/">previous post</a> I asked everyone to vote which call to action generated the highest CTR. Here are the results from the poll&#8230;</p>
<p><a href="http://ppvplaybook.com/blog/wp-content/uploads/2011/09/2011-09-10_20121.jpg"><img class="alignnone size-full wp-image-709" title="2011-09-10_2012" src="http://ppvplaybook.com/blog/wp-content/uploads/2011/09/2011-09-10_20121.jpg" alt="" width="500" height="374" /></a></p>
<p>Turns out most people got this one wrong! Here are the actual results:</p>
<p>1. Click here to get your free report &#8211; 1.4%</p>
<p>2. See your credit report here &#8211; 2.7%</p>
<p>3. View your online credit score &#8211; 2.3%</p>
<p>4. Get instant access to your credit score &#8211; 1.2%</p>
<p>I had a feeling it would turn out like this based on what I have tested before. The words &#8216;see&#8217; and &#8216;online&#8217; always seem to generate the best CTR for me. Try them out in your call to actions and see if it works for  you!</p>
]]></content:encoded>
			<wfw:commentRss>http://affplaybook.com/blog/landing-pages-ctr/you-have-to-see-these-results/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Supercharge Your CTR With Geo Targeting</title>
		<link>http://affplaybook.com/blog/ppv-landing-pages/supercharge-your-ctr-with-geo-targeting/</link>
		<comments>http://affplaybook.com/blog/ppv-landing-pages/supercharge-your-ctr-with-geo-targeting/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 06:08:17 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Landing Pages & CTR]]></category>
		<category><![CDATA[PPV Landing Pages]]></category>

		<guid isPermaLink="false">http://ppvplaybook.com/blog/?p=616</guid>
		<description><![CDATA[Geo targeting is pretty simple but used correctly can increase your CTR pretty dramatically. In this post I&#8217;m going to show you how to implement geo targeting step by step and talk about some practical applicatons. Step 1 &#8211; Get the script A simple script to set up and use is http://www.maxmind.com/app/javascript_city Step 2 &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Geo targeting is pretty simple but used correctly can increase your CTR pretty dramatically. In this post I&#8217;m going to show you how to implement geo targeting step by step and talk about some practical applicatons.</p>
<p>Step 1 &#8211; Get the script</p>
<p>A simple script to set up and use is http://www.maxmind.com/app/javascript_city</p>
<p>Step 2 &#8211; Add the script to your LP</p>
<p>You will need an HTML editor and some very basic HTML knowledge (which you should definitely have).</p>
<p>Add this code &lt;script language=&#8221;JavaScript&#8221; src=&#8221;http://j.maxmind.com/app/geoip.js&#8221;&gt;&lt;/script&gt;<br />
to the head section of your HTML (add it after the &lt;head&gt; tag and before the &lt;/head&gt; tag)</p>
<p>Now wherever you want to display the city on your page use this code</p>
<p>&lt;script language=&#8221;JavaScript&#8221;&gt;document.write(geoip_city()) ;&lt;/script&gt;</p>
<p>That&#8217;s really it.</p>
<p>So, what are some ways you can use this?</p>
<p>You can use this on virtually any campaign. Some of the most popular uses are;</p>
<p>- On a dating .&#8221;Meet singles in cityname&#8221; type thing</p>
<p>- On an insurance landing page. &#8220;Get insurance rates in cityname&#8221;</p>
<p>- On any freebie, coupon, etc. type offer. &#8220;We have a special deal for people in cityname&#8221;</p>
<p>Those are the most obvious examples but you can get really creative with this. Don&#8217;t just use the obvious examples but come up with really creative ways to use geo targeting and it can really do wonders for your CTR and conversions.</p>
]]></content:encoded>
			<wfw:commentRss>http://affplaybook.com/blog/ppv-landing-pages/supercharge-your-ctr-with-geo-targeting/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Trick to Click!</title>
		<link>http://affplaybook.com/blog/ppv-affiliate-marketing/trick-to-click/</link>
		<comments>http://affplaybook.com/blog/ppv-affiliate-marketing/trick-to-click/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 07:16:01 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Landing Pages & CTR]]></category>
		<category><![CDATA[PPV Affiliate Marketing]]></category>
		<category><![CDATA[PPV Landing Pages]]></category>

		<guid isPermaLink="false">http://ppvplaybook.com/blog/?p=333</guid>
		<description><![CDATA[My friend Corey Bornmann from Affportal uses the phrase &#8216;trick to click&#8217; to describe landing pages that look like this: You might have seen variations on this type of landing page or banner and that&#8217;s because it can work great! Who can resist clicking that &#8216;play&#8217; button? The basic idea is to take a screen-shot [...]]]></description>
			<content:encoded><![CDATA[<p>My friend Corey Bornmann from <a href="http://www.affportal.com/">Affportal</a> uses the phrase &#8216;trick to click&#8217; to describe landing pages that look like this:</p>
<p><img class="alignnone" src="http://content.screencast.com/users/PPVP/folders/Jing/media/f6f7b864-60f1-45aa-a6e3-cae6dfae591c/2010-07-25_1950.png" alt="" width="325" height="212" /></p>
<p>You might have seen variations on this type of landing page or banner and that&#8217;s because it can work great! Who can resist clicking that &#8216;play&#8217; button?</p>
<p>The basic idea is to take a screen-shot or pic to use as the &#8216;video still&#8217;, then use Photoshop (or another graphics editor) to make it look like a video player.When selecting the picture to use, browse around Youtube and see what videos make you want to click on them. Usually you&#8217;ll find that the image is one that you want to see what happens next. For example, if I see a guy sitting there facing his webcam I am probably not going to be as inclined to click as I would if I saw a big shark just about to bite something (you get the idea!)</p>
<p>You can download the source files for the project above <a href="http://www.ppvplaybook.com/t2c.zip">here</a></p>
<p>Getting creative with this style of LP is the key. The main thing that will influence your CTR isn&#8217;t the play button, or any of the video player effects&#8230;it&#8217;s the picture you use. It can get tricky because you don&#8217;t want to mis-represent what you are promoting, yet be provocative enough to get clicked.</p>
<p>One scenario I have seen a lot is using pictures of &#8216;hot girls&#8217; in the video player frame to promote dating offers. This can be a little deceptive, and often traffic from such tactics doesn&#8217;t back out for the advertiser which can result in getting kicked off the offer&#8230;.so use at your own risk.</p>
<p>Get creative with trick to click and try something that you haven&#8217;t seen before.</p>
]]></content:encoded>
			<wfw:commentRss>http://affplaybook.com/blog/ppv-affiliate-marketing/trick-to-click/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

