<?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>PPVPlaybook.com &#187; PPV Landing Pages</title>
	<atom:link href="http://ppvplaybook.com/blog/category/ppv-landing-pages/feed/" rel="self" type="application/rss+xml" />
	<link>http://ppvplaybook.com/blog</link>
	<description>Tactics for affiliate marketing and entrepreneurs</description>
	<lastBuildDate>Fri, 03 Sep 2010 23:10:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>7 jQuery Effects To Explode Your PPV CTR!</title>
		<link>http://ppvplaybook.com/blog/ppv-landing-pages/7-jquery-effects-to-explode-your-ppv-ctr/</link>
		<comments>http://ppvplaybook.com/blog/ppv-landing-pages/7-jquery-effects-to-explode-your-ppv-ctr/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 06:10:31 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[PPV Landing Pages]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://ppvplaybook.com/blog/?p=345</guid>
		<description><![CDATA[This is a great guest post by one of my forum members, imrat. If you don&#8217;t use jQuery on your landing pages, it&#8217;s definitely worth taking an afternoon to learn. Don&#8217;t you hate it when you spend days testing a ton of PPV targets and after recouping your initial test budget some other affiliate comes [...]]]></description>
			<content:encoded><![CDATA[<p><em>This is a great guest post by one of my forum members, imrat. If you don&#8217;t use jQuery on your landing pages, it&#8217;s definitely worth taking an afternoon to learn. </em></p>
<p>Don&#8217;t  you hate it when you spend days testing a ton of PPV targets and after  recouping your initial test budget some other affiliate comes in and  crushes your ROI? Before you know it, your in a bidding war. A war where  the one with the biggest balls is gonna win.  What if you knew some  secrets to give you an unfair advantage? What if you could grab your users attention in less than 4 seconds and raise your landing page CTR?</p>
<p>In  this guest post I will show you 7 ways to use JQuery on your PPV  landing pages to grab attention. You will learn how to animate the heck  out of your landers.</p>
<p>The only thing your visitor will be able do is click and convert.</p>
<p>This is not an in-depth tutorial on JQuery &#8211; for that I suggest you check the <a href="http://docs.jquery.com/Tutorials">tutorials on the Jquery site</a>. If your a beginner, check out this <a href="http://blog.themeforest.net/screencasts/jquery-for-absolute-beginners-video-series/">excellent 15 day beginners video tutorial series</a>.</p>
<p>You  should also have a decent understanding of HTML and CSS to benefit from  the tricks in this post. If you want to know how I build my landing  pages, I suggest you check out my series on <a href="http://imrat.com/2010/08/ppv-landing-pages-p1/">How to Build a PPV Landing Page</a>.</p>
<h2>The Demo</h2>
<p>Here  are the demo html files. Its a basic 750&#215;550 PPV landing page, one  without any JQuery applied, and the other with all the 7 effects  applied.</p>
<p><a href="http://imrat.s3.amazonaws.com/ppv-jquery/ppvlp-without.html">Landing Page Without Jquery Magic</a> | <a href="http://imrat.s3.amazonaws.com/ppv-jquery/ppvlp-with.html">Landing Page With Jquery Magic</a></p>
<p>Enjoy!</p>
<h2>Why JQuery?</h2>
<p>Jquery  is one of the most widely adopted Javascript libraries on the web, and  is used by sites like Google, Digg, WordPress, Dell, and many others. It  was started by <a href="http://ejohn.org/">John Resig</a> and announced at the start of 2006. The first stable version was released on August 26, 2006.</p>
<p>I  suggest you use it whenever you want to spice up your web designs with  event handling, animation, and Ajax interactions. Its fast and reliable,  and specifically offers:</p>
<ul>
<li>light weight footprint (24kb)</li>
<li>CSS1 through to 3 support</li>
<li>cross browser compliant (IE 6, Firefox 2, Safari 3, Opera 9 and Chrome).</li>
</ul>
<h2>Setup Jquery For Your PPV Landing Page</h2>
<p>To use JQuery on your webpage, you will need to include the Library in your HTML file.</p>
<p>You can host the Library file on your own server (<a href="http://docs.jquery.com/Downloading_jQuery">download here</a>), but I use the one <a href="http://encosia.com/2008/12/10/3-reasons-why-you-should-let-google-host-jquery-for-you/">provided by Google’s CDN</a>.</p>
<p>If you are targeting users in countries where google is banned, I suggest you use one of the <a href="http://docs.jquery.com/Downloading_jQuery#CDN_Hosted_jQuery">other hosted JQuery files</a>.</p>
<p>All you need to do is include the following code before the &lt;/head&gt; line in your html:</p>
<pre><img class="alignnone" src="http://content.screencast.com/users/PPVP/folders/Jing/media/44e99b56-5f87-477a-a5a6-75eb476c5327/2010-09-03_1605.png" alt="" width="487" height="54" />
</pre>
<p>Note: <a href="http://code.google.com/apis/libraries/devguide.html#jquery">The Google CDN URL for the latest version of Jquery are listed here</a>.</p>
<p>You  want to start executing your JQuery animations after the page has  finished loading. To achieve this, you also need to include the  following, right after the code you have just included:</p>
<p>Note that the above section will be used to add the various codes in the sections below.</p>
<p>For all of the effects, the process consists of the same 3 steps:</p>
<ul>
<li>include the javascript plugin file</li>
<li>attach the effect to a css class or div</li>
<li>add the class to the relevant element in the html</li>
</ul>
<h2>1. The Flasher</h2>
<p>If  you wanna really draw attention to yourself, you need to flash. Here I  am going to show how to setup a flashing border and a flashing  background.</p>
<h3>Flashing Border</h3>
<p>First up, lets add a flashing border around the ad. For this we use the <a href="http://plugins.jquery.com/project/animatedborder">Animated Borders plugin</a> by <a href="http://there4development.com/">Craig Davis</a>.</p>
<p>Include the plugin in the &lt;head&gt; section below the line where you included jquery.</p>
<pre class="brush: jscript;">&lt;script src=&quot;jquery.animatedborder.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</pre>
<p>Note:  make sure that the path reference to the jquery.animatedborder.js  corresponds to where you downloaded and extracted the file.</p>
<p>Set the required CSS styles. Make sure the path is pointing to the location of the stripe.gif image:</p>
<pre class="brush: css;">

.animatedBorderSprite { position: absolute; background: url(stripe.gif); margin: 0; }
.animatedBorderSprite-top  { -moz-border-radius-topleft: 2px;          -webkit-border-radius-topleft: 2px; -moz-border-radius-topright: 2px;  -webkit-border-radius-topright: 2px;}
.animatedBorderSprite-bottom  { -moz-border-radius-bottomleft: 2px; -webkit-border-radius-bottomleft:  2px; -moz-border-radius-bottomright: 2px;  -webkit-border-radius-bottomright: 2px;}
</pre>
<p>Switch  the flashing on by adding the following code below the line “// Include  your code below this line”. You can change the thickness and color of  the flashing border by changing the parameters.</p>
<pre class="brush: css;">$('.flash_border').animatedBorder({size:5, color: 'red'});</pre>
<p>And add the class to the element on the page you want to have the border around, in this case the element with the id “wrap”:</p>
<pre class="brush: css;">&lt;div id=&quot;wrap&quot;&gt;</pre>
<h3>Background Flash</h3>
<p>Next  &#8211; lets flash the background a couple of times to draw the users eyes to  the page. I prefer to do this just a couple of times to avoid getting  sued for causing headache’s.</p>
<p>To change the background color I use a plugin called <a href="http://plugins.jquery.com/project/color">Color Animations</a>.</p>
<p>Include the plugin, again just after the previous plugin / JQuery script include:</p>
<pre class="brush: jscript;">&lt;script src=&quot;lib/plugins/jquery.color.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</pre>
<p>Add the flashing code, again in the codeblock that starts with</p>
<pre class="brush: css;">
//Include your code below this line

$(&quot;.flash_background&quot;)

.animate( { backgroundColor: 'pink' }, 100)

.animate( { backgroundColor: 'white' }, 100)

.animate( { backgroundColor: 'blue' }, 100)
.animate( { backgroundColor: 'pink' }, 100)
.animate( { backgroundColor: 'white' }, 100)
.animate( { backgroundColor: 'blue' }, 100)
.animate( { backgroundColor: 'pink' }, 100)
.animate( { backgroundColor: 'white' }, 100)
.animate( { backgroundColor: 'blue' }, 100)
.animate( { backgroundColor: 'pink' }, 100)
.animate( { backgroundColor: 'white' }, 100)
.stop();
});
</pre>
<p>And add the class .flash_background to the required element, again, in this case “wrap”:</p>
<pre class="brush: css;">&lt;div id=&quot;wrap&quot;&gt;</pre>
<h2>2. Moving arrow</h2>
<p>The  second trick is to tell your visitor where to look and direct their  eye. One way to do this is animate an arrow pointing towards the call to  action.</p>
<p>Because  I wanted to include a link on the actual arrow as well, I included the  arrow as an image in the background. Make sure that there is sufficient  transparent canvas on the right hand side of the arrow.</p>
<p>For this particular effect I used build in jquery functions so you don&#8217;t need a plugin.</p>
<p>What  the following code does is basically create a function which moves the  background to the right and then the left. Then a simple interval is set  to call this function every second. All you need to do is include the  following code again in the codeblock that starts with</p>
<pre class="brush: css;">

//Include your code below this line

//slide the arrow
var vibrate = function() {

$('#arrow').animate({

‘background-position-x': '+=20'
}, 'fast').animate({
'background-position-x': '-=20'
}, 'fast');
};

interval = setInterval(vibrate,1000);
</pre>
<h2>3. Audio</h2>
<p>One  thing that really boosts your conversion rate is including an audio  message when the page loads. You can do this quit easily with Jquery,  and I have used the <a href="http://www.esblog.in/2010/08/playing-sound-file-using-jquery-sound-plugin/">sound.js plugin</a> for that. Make sure you save the file as WAV, and that you keep it of a relatively small size.</p>
<p>Although I have done this with Jquery to show you how to trigger sounds, <a href="http://www.htmlcodetutorial.com/embeddedobjects/_EMBED.html">you can achieve the same effect in html</a>.</p>
<p>The  downside with using jquery or &lt;embed&gt; in html, is that in IE, for  some users it will ask for authorisation to play the content with  windows media player&#8230;bugger! I will need to find a workaround for this  someday, using <a href="http://www.phon.ucl.ac.uk/home/mark/audio/play.htm">this</a> or <a href="http://www.schillmania.com/projects/soundmanager2/">this</a>.</p>
<p>Until I do, for now download the required files, and include the javascript.</p>
<p>Then just after this line:</p>
<pre class="brush: xml;">
//Include the code below this line

Include the code:
$.fn.soundPlay({

url: 'welcome.wav',

playerID: 'welcome',

command: 'play'
});
</pre>
<p>I’ve  not gone as far as including the required Audio controls. So if you use  this example on your landing page you will ‘Breaks the Rules’ of most  networks.</p>
<h2>4. Counting down</h2>
<p>Scarcity  and social proof are 2 of the Six Weapons of Influence. Jquery is great  for adding in a counter on your landing page. You can use this in  multiple ways.</p>
<h3>A simulated user count</h3>
<p>For example, you could dynamically change the numbers in the following sentence on your landing page:</p>
<p>34 users currently viewing this offer, there are only 7 vouchers left.</p>
<p>I  am not including this here as an example, i might do something with  this in future. This type simulation would work great on dating offers  (Sophie is online right now waiting to chat. 12 members are currently  viewing her profile).</p>
<h3>Countdown clocks</h3>
<p>How  do you create scarcity? There are many ways. One way is to include a  countdown and show that this offer is time limited: ‘Submit your email  within the next 1m and 45s’.</p>
<p>For this blog post I will add a countdown timer, using the excellent plugin from <a href="http://keith-wood.name/countdown.html">Keith Wood</a>. I suggest you follow the examples on his site.</p>
<p>Just  download the packaged zip file, unzip the required files, and include  the Javascript and the css. Check the demo file to see how I included  the effect on this example landing page.</p>
<p>As usual, here is the code to include the Javascript. I used the pack file because it is smallest in size.</p>
<pre class="brush: jscript;">&lt;script type=&quot;text/javascript&quot; src=&quot;jquery.countdown.pack.js&quot;&gt;&lt;/script&gt;</pre>
<p>Then add your CSS stylesheet code to your &lt;style&gt;&#8230;&lt;/style&gt; section:</p>
<pre class="brush: css;">

@import &quot;jquery.countdown.css&quot;;
#glowingLayout div { float: left; width: 34px; height: 50px; background: url(countdownGlowing.gif) no-repeat 0px 0px; }
#glowingLayout div.image0 { background-position: -0px 0px; }
#glowingLayout div.image1 { background-position: -34px 0px; }
#glowingLayout div.image2 { background-position: -68px 0px; }
#glowingLayout div.image3 { background-position: -102px 0px; }
#glowingLayout div.image4 { background-position: -136px 0px; }
#glowingLayout div.image5 { background-position: -170px 0px; }
#glowingLayout div.image6 { background-position: -204px 0px; }
#glowingLayout div.image7 { background-position: -238px 0px; }
#glowingLayout div.image8 { background-position: -272px 0px; }
#glowingLayout div.image9 { background-position: -306px 0px; }
#glowingLayout div.imageDay { background-position: -340px 0px; }
#glowingLayout div.imageSep { background-position: -374px 0px; }
#glowingLayout div.imageSpace { background-position: -408px 0px; }
</pre>
<p>Connect the countdown function to the relevant div/span by including this in the head javascript section:</p>
<pre class="brush: jscript;">

//countdown timer
$(&quot;#glowingLayout&quot;).countdown({

until: '+1m +30s',

compact: true,
layout: '&lt;div&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;' +
'&lt;div&gt;&lt;/div&gt;' +
'&lt;div&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;'
});
</pre>
<p>Feel free to change the +1m +30s to the amount of time you want the countdown to run for.</p>
<p>And  finally include in the body of the HTML the following code to embed the  countdown timer. I used the scarcity div to style the element  background, but this is not essential.</p>
<pre class="brush: css;">&lt;div id=&quot;scarcity&quot;&gt;&lt;span id=&quot;glowingLayout&quot;&gt;&lt;/span&gt;&lt;/div&gt;</pre>
<p>The demo PPV Landing Page includes a <a href="http://www.flashkit.com/soundfx/Interfaces/Clicks/Clook-Public_D-9/index.php">sound effect</a> as well to stimulate a ticking clock, and shows an ‘offer expired’  message when the timer runs out. If you want to include this you will  need to figure it out from my demo file.</p>
<h2>5. Image swipes</h2>
<p>For  offers where a visual or photo helps with conversions you can include a  short piece of script to cycle through a number of images in an  animated slide show.</p>
<p>There are tons of jquery ‘sliders’ on the web, just search for ‘jquery slider’.</p>
<p>For this example, I am using the slideshow plugin by &lt;a href=&#8221;http://code.marceleichner.de/project/jquery.slideShow/&#8221;&gt;Marcel Eighner&lt;/a&gt;.</p>
<p>As usual, after you have included the Javascript, you need to associate the effect with the relevant html element:</p>
<pre class="brush: xml;">$('.mySlideShow').slideShow({

hoverNavigation: true, // use mouse for navigation

interval: true // disable auto-slideshow
});
</pre>
<p>Then, in the HTML, include each image as a &lt;li&gt; element, and include the right class as shown below:</p>
<pre class="brush: xml;">

&lt;div&gt;
&lt;ul&gt;
&lt;li&gt;&lt;img src=&quot;sign1.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;  width=350 height=270 /&gt;&lt;/li&gt;
&lt;li&gt;&lt;img src=&quot;sign2.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;  width=350 height=270 /&gt;&lt;/li&gt;
&lt;li&gt;&lt;img src=&quot;sign3.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;  width=350 height=270 /&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
</pre>
<h2>6. Remind your user before they leave</h2>
<p>Because PPV triggers a pop up, many users move their mouse over to the tab/window close button as soon as it appears.</p>
<p>Wouldn&#8217;t it be great to stop them in their tracks and remind them of your special offer?</p>
<p>Unfortunately most networks dont allow exit popups, but JQuery comes to the rescue.</p>
<p>In  this example I am trying to emulate most modern browsers. They slide in  a yellow alert bar at the top of the window to notify the user of for  example the option to save their password.</p>
<p>This is therefore a great way of attracting user attention. And the <a href="http://westhoffswelt.de/projects/activebar2.html">Activebar2 plugin</a> is the answer.</p>
<p>After you have downloaded, include the plugin javascript file in the head section.</p>
<p>Then in the section where we switch on and attach each of the effects, include the following code:</p>
<pre class="brush: jscript;">

$('.triggerAlert').hover(function() {
if ($('#alert').length == 0) {
$('&lt;div id=&quot;alert&quot;&gt;&lt;/div&gt;').html('You really dont want  to leave this page. Click to look at the deals we are  offering!').activebar({
url: 'http://imrat.com',
font: 'serif',
icon: 'activebar-information.png',
button: 'activebar-closebtn.png'
});
}
});
</pre>
<p>Lastly,  all you need to do, is to add the class triggerAlert to each element  that you want to activate the alert when the user moves their mouse over  this. For example:</p>
<pre class="brush: css;">&lt;div id=&quot;head&quot;&gt;</pre>
<p>As  browser close buttons are either at the top right or left corner, I  recommend you add the class to for example your headline. Or, checkout  the demo html, to see how I did it here. I included a separate div  across the full width of the page at the top to capture the users mouse.</p>
<h2>7. Optimize your download size</h2>
<p>Another  reason for poor CTR on your landing pages is the time it takes to load  your page. Big images, slow servers, and huge javascript files all  contribute to long long download times, and low low low CTRs.</p>
<p>So, once you have finished your landing page, its time to compress and minifi.</p>
<p>First, save a copy of your html file for safe keeping.</p>
<p>Then, collect the content of all of your JavaScript plugin files, and add them to a new single js file.</p>
<p>If you downloaded and used files that have already been packed or minified, then I recommend you download the unpacked versions.</p>
<p>Make sure you include the Javascript that was included in the html file as well:</p>
<p><img class="alignnone" src="http://content.screencast.com/users/PPVP/folders/Jing/media/7d02edff-60de-4294-af31-ab9d8fd62945/2010-09-03_1610.png" alt="" width="486" height="51" /></p>
<p>Include everything below the //Include comment in your new javascript file.</p>
<p>Just  in case you did not do this, you will need to remove all separate  javascript plugin includes from your main html. All you need is 1 to  your new minified version.</p>
<p>Also note that the main Jquery javascript file should not be included in this process.</p>
<p>Next, just upload your new combined js file to a Javascript compresser service like <a href="http://jscompress.com/">jscompress.com</a>, compress, and copy &amp; paste the minified version into a new js file.</p>
<p>Doing  this radically increases download speed of your landing page. From 7  files totaling over 60kb down to a single file of 33Kb. Because this is  still large for a PPV file, I recommend you only include 1 or 2 effect  plugins.</p>
<p>It also makes your landing pages a lot harder to steal.</p>
<p>Here is a copy of the <a href="http://s3.amazonaws.com/imrat/ppv-jquery/ppvlp-with-sml.html">reduced html file</a>, and here is the <a href="http://s3.amazonaws.com/imrat/ppv-jquery/ppvplugins.min.js">minified js file</a>.</p>
<h2>Wrapup</h2>
<p>So that was that. I hope you enjoyed this tour of JQuery. It would be great to see what results you are getting, so let me know by leaving a comment below.</p>
<p>Here is also a <a href="https://s3.amazonaws.com/imrat/ppv-jquery/ppv-jquery.zip">downloadable zipped copy</a> of the landing page, plugins and associated files.</p>
<p>If you are interested in getting help with your landing pages or PPV campaigns, check out my blog: <a href="http://imrat.com/contact">imrat.com &#8211; Ditching The Dayjob</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ppvplaybook.com/blog/ppv-landing-pages/7-jquery-effects-to-explode-your-ppv-ctr/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Trick to Click!</title>
		<link>http://ppvplaybook.com/blog/ppv-affiliate-marketing/trick-to-click/</link>
		<comments>http://ppvplaybook.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://ppvplaybook.com/blog/ppv-affiliate-marketing/trick-to-click/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>PPV Landing Page Secrets</title>
		<link>http://ppvplaybook.com/blog/ppv-affiliate-marketing/ppv-landing-page-secrets/</link>
		<comments>http://ppvplaybook.com/blog/ppv-affiliate-marketing/ppv-landing-page-secrets/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 07:31:18 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[PPV Affiliate Marketing]]></category>
		<category><![CDATA[PPV Campaign]]></category>
		<category><![CDATA[PPV Landing Pages]]></category>

		<guid isPermaLink="false">http://ppvplaybook.com/blog/?p=127</guid>
		<description><![CDATA[Ok no secrets really but now that I have your attention&#8230; I get a lot of questions about landing pages for PPV/CPV traffic. I hate telling people &#8216;just test&#8217; but sometimes that&#8217;s the best approach. There are various types of pages that can work but the main idea is you want to keep things simple [...]]]></description>
			<content:encoded><![CDATA[<p>Ok no secrets really but now that I have your attention&#8230;</p>
<p>I get a lot of questions about landing pages for PPV/CPV traffic. I hate telling people &#8216;just test&#8217; but sometimes that&#8217;s the best approach. There are various types of pages that can work but the main idea is you want to keep things simple and grab the viewers attention.</p>
<p>Think about how these people are being served ad&#8217;s; They are surfing along visiting websites, and up pop&#8217;s and advertisement. This isn&#8217;t something they were actively seeking out so you need to offer them something that is really going to draw their interest.</p>
<p>Forget about a lot of text, forget about trying to &#8216;sell&#8217; too much&#8230;you want to shock the viewer into clicking on your ad.</p>
<p>A common theme I like to use is a really attention grabbing picture. Say I was going to promote an auto insurance offer; I might find a picture of a crazy looking guy/girl saying something like &#8220;He saved $xxx on car insurance..why haven&#8217;t you?&#8221;.</p>
<p>The most common &#8216;problem&#8217; I see with most landing pages is people are trying to be too&#8230;relevant for lack of a better word. I see a lot of landing pages like:</p>
<p>Want to save on car insurance?</p>
<p>&lt;pic of car&gt;</p>
<p>Click here</p>
<p>Now&#8230;would that make you want to click or something more like:</p>
<p>How does HE only pay $xx a month for car insurance!?</p>
<p>&lt;pic of the weirdest looking guy you can find&gt;</p>
<p>FIND OUT HOW</p>
<p>See what I&#8217;m getting at here? Stop trying to make these nice polite landing pages and really start having some fun with it.</p>
<p><strong>Update </strong>on the <a href="http://ppvplaybook.com/blog/ppv-affiliate-marketing/ppv-mastermind-group-at-affiliate-summit/">Affiliate Summit PPV/CPV mastermind session</a> &#8211; <a href="http://justindupre.com/"></a></p>
<p><a href="http://justindupre.com/">Justin Dupre </a>is going to be joining me and sharing some of his own tips, strategies, and insights. It&#8217;s going to be a great event and we still have a few spots left so let me know if your interested.</p>
]]></content:encoded>
			<wfw:commentRss>http://ppvplaybook.com/blog/ppv-affiliate-marketing/ppv-landing-page-secrets/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
