Hide WordPress Stats Smiley Face

« Back To Archive

0

Problem Statement:

If you are using the Jetpack WordPress plugin, it adds a small smiley image to the bottom of your web page. This image can break your page design. This piece of CSS will make the image virtually invisible without breaking the stats gather functionality.

Dependencies:

none

img#wpstats{
    position: absolute;
    top: 0; 
    width: 0px;
    height: 0px;
    overflow: hidden;
}

Example Usage:

img#wpstats {
    position: absolute;
    top: 0; 
    width: 0px;
    height: 0px;
    overflow: hidden;
}