domdomrung

How to hide Affiliate link from the status bar

DONT CLICK HEREDo you want more readers to click through your affiliate link?You know,you have to start thinking about increasing your CTR(Click-Through Rate)because the more CTR you have,the more conversion you can possibly get.The more conversion,the more commission.But that not enough.


The reason why visitor don't want click on affiliate link although they may need to buy products .Today i will tell about how to hide affiliate link from the status bar.This trick is very eassy on Blogger.

Go to Template-Edit HTML and place CSS code before ]]></b:skin>:

 

.fake-link,
.fake-link button {
  margin:0;
  padding:0;
  width:auto;
  height:auto;
  background:none;
  border:none;
  font:inherit;
  text-transform:none;
  display:inline;
}
.fake-link button {
  color:blue;
  cursor:pointer;
}
.fake-link button::-moz-focus-inner {
  margin:0;
  padding:0;
  border:none;
  outline:none;
}
.fake-link button:focus,
.fake-link button:hover {text-decoration:underline}
.fake-link button:active {color:red}
Using html code when you want cloaked affiliate below:
<form class="fake-link" action="http://example.org" method="get" target="_blank">
  <input name="aff" type="hidden" value="1234567">
  <button type="submit">affiliate link</button>
</form>
 Change the red word to your link.Maybe you want to know How To Hide Links Inside The Comment Body.If you have any question please leave some comments.Have nice day!