I am using ClickMagick for all my link tracking. Having tried many other hosted link trackers, this is by far the best one. But when I tried to set up a timer on an offer page I'm building, I had some trouble with the way it displayed in Internet Explorer, (IE).
I'm using IE 11 at this time and here is how the timer looked :
On all other browsers there were no scrollbars so the timer displayed like this
The way to fix this for Internet Explorer is to add some extra code to the MagickBar that contains the timer.
-
Step 1
-
Open the source for the MagickgBar by clicking on the button indicated here.
-
Step 2
-
Locate the timer code inside the source window. Look for code that mentions the name of your timer. It will look something like this :
<td style="width: 309px; text-align: center;"> <iframe data-timer="1" frameborder="0" id="timer" name="Timer 01" seamless="seamless" src="http://www.clkmg.com/timer.cgi?tid=12983" width="100%"></iframe> </td>
-
Step 3
-
Next add in the following code to remove the scrollbars in IE. Set vertical scrolling, horizontal scrolling and scrolling all to the value of no. See below
<td style="width: 309px; text-align: center;"> <iframe scrolling="no" horizontalscrolling="no" verticalscrolling="no" data-timer="1" frameborder="0" id="timer" name="Timer 01" seamless="seamless" src="http://www.clkmg.com/timer.cgi?tid=12983" width="100%"></iframe> </td>