Infolinks is one of the best online advertising network, it offers wide variety of option on how advertisement presented on its audience. In my opinion, the best one that will give a high CTR is the inframe for a reason that almost all the keywords are related on the blog contents. However, it bugs me down why Infolinks did not include an option on how inframe should be presented (left, right or both). The reason is, some website has an existing widget on their site and if you activate inframe, this will override those widget or can ruin the presentation of the website. In addition, the advertisement display on both sides are redundant.
A good example of website that has an inframe is this website, as you can see there is only an inframe on the right side but before, this website display inframe on both sides and I can say it to you directly that it's totally a mess (see image below).
Based on the image above, all the concerns I mentioned is existing on this website, existing widget (social sharing buttons) and redundant advertisement.
Hiding an inframe is fairly easy, just follow the step below.
STEP 1 Go to Blogger Dashboard.
STEP 2 Go to Layout (red border) and click Add a Gadget (yellow border).
STEP 1 Go to Blogger Dashboard.
STEP 2 Go to Layout (red border) and click Add a Gadget (yellow border).
STEP 3 A new window will appear where a list of available widgets is displayed. Choose HTML/JavaScript (red border).
STEP 4 A form will appear where you need to input your widget title and the content of the widget. Put Infolinks Inframe Hider as a title and put the code below as a content and click Save.
CODE TO HIDE LEFT INFRAME
<script>
window.onload = function() {
element = document.getElementById("IL_IF_LEFT");
element.parentNode.removeChild(element);
}
</script>
CODE TO HIDE RIGHT INFRAME
<script>
window.onload = function() {
element = document.getElementById("IL_IF_LEFT");
element.parentNode.removeChild(element);
}
</script>