How to Hide Tracking Pixel

css, html

Solution

From google Support:

<img src="TRACKING-PIXEL-URL-GOES-HERE" style="position:absolute; visibility:hidden">

<img src="TRACKING-PIXEL-URL-GOES-HERE" style="display:none">

<img src="TRACKING-PIXEL-URL-GOES-HERE" width="0" height="0">

Problem

I have a tracking pixel that is unfortunately causing a small white bar at the bottom of my footer. What is the best way to hide the pixel? I was thinking of putting it (and my other pixels) in a `position: absolute` div, which hides the bar properly but I'm not sure if that will prevent the pixel from working on some browsers.

Original source