Was just trying to figure out what affiliate marketing is and here is what google suggested… Affiliate marketing is dead, it is a scam and it is hard.

Affiliate marketing is…

Affiliate.com gift card

I have not tried affiliate.com yet because I always thought that they specialize in email campaigns since Scott Richter is the CEO. However, after having an email conversation with them I will be signing up as they seem to have quite a few interesting offers. I have been really busy lately and hope to set some time aside for the weekend, hopefully enough to make at least a couple of landing pages just to check out their best converting offers.
As you may know, I made a post earlier about cool shirts that they sent me. Well, today I received a starbucks gift card in the mail from them and this card would probably last me a year.
It was completely unexpected and I just want to thank affiliate.com for the gift.
I also heard a lot of good things about the network from top affiliate marketers before and the company definitely has a great reputation. I am going to sign up and probably have another update within a few months once I test things out. Meanwhile, you can do the same here – www.affiliate.com.

Landing page tweaks
I’ve been experimenting quite a bit with a few well performing landing pages lately trying to increase the click through rates and conversions. Starting from basic stuff like changing text, images, font type, size and color, background color, color of the buttons and ending with complete redesign. While most changes had an expected result, other had something new to think about.
Sometimes one creative works better for male vs female user. I got mostly female subscribers using one of the creatives and when I switched to another, it all changed to male. That was interesting, however, my conversions didn’t change much.
Next I tried adding both creatives and it did work, however, it worked even better when I implemented image rotation. Since these creatives were images, I was able to add a simple javascript to have them changed every few seconds (2-4 seconds worked for me), attract both genders and catch more attention.
Here is how my creative looked before I changed it:
<a href='site url'><img src='image url' border='0' /></a><div style='position:relative left:-1px; top:-1px;'><img src="tracking pixel url" height="1" width="1"></div>
And here is how it became after a simple javascript edit:
<a href='site url'><img id="Rotating" src='image url' border='0' /></a><div style='position:relative left:-1px; top:-1px;'><img src="tracking pixel url" height="1" width="1"></div>
<script language="JavaScript">
function RotateImages(Start) {
var a = new Array("image url","second image url");
var b = document.getElementById('Rotating');
if(Start>=a.length)
Start=0;
b.src = a[Start];
window.setTimeout("RotateImages(" + (Start+1) + ")",3000);
}
RotateImages(0);
</script>
This script rotates the images every 3 seconds (3000 miliseconds).
You can add as many images as you like, such as:
var a = new Array("image url","second image url", "third image url");
Complete redesign was also a good experiment. While I spent a lot of time on some good designs, many didn’t convert well at all. For some reason ugly pages convert better.




