Forum Moderators: open
We are trying to implement single pixel tracking on our site. However, when we put this on the page right beneath the <body> tag (where our outsourcing company recommends), a full white row is added to the top of our site, which of course looks yucky and unprofessional. Surely there is a way to implement this so that you do not see a full row for the single pixel?
Here's the script:
<!-- Start of Spotlight Tag: Please do not remove-->
<!-- Activity Name for this tag is:Home Page Main -->
<!-- Web site URL where tag should be placed: link-here -->
<!-- Creation Date:12/10/02 -->
<SCRIPT language="JavaScript">
var axel = Math.random()+"";
var a = axel * 10000000000000;
document.write('<IMG SRC="link-here" WIDTH=1 HEIGHT=1 BORDER=0>');
</SCRIPT>
<NOSCRIPT>
<IMG SRC="link-here" WIDTH=1 HEIGHT=1 BORDER=0>
</NOSCRIPT>
<!-- End of Spotlight Tag: Please do not remove-->
Any advice, suggestions would be great.
var axel = Math.random()+"";
var a = axel * 10000000000000;
Did you cut them out? Were they part of the link-here part?
I am guessing you have a table that has a different color than the background. I would suggest making a table row in the top of the table that has that background color. Place the image in there.
<DIV STYLE="position:absolute; width:1px; height:1px; z-index:1; left: 0px; top: 0px; visibility: hidden;">
<!-- Start of Spotlight Tag: Please do not remove-->
....
<!-- End of Spotlight Tag: Please do not remove-->
</DIV>