• where does one put the code to hide the smiley? –ok, it seems to work at the end of the stylesheet…

    img#wpstats{width:0px;height:0px;padding:0px;border:none;overflow:hidden}

Viewing 1 replies (of 1 total)
  • put this in your footer.php AFTER the call to wp_footer();

    <script type=”text/javascript”>
    var e = document.getElementById(“wpstats”);
    e.style.width = “0px”;
    e.style.height= “0px”;
    e.style.overflow = “hidden”;
    </script>

Viewing 1 replies (of 1 total)
  • The topic ‘Where To Put Hide-Smiley Code?’ is closed to new replies.