Viewing 2 replies - 1 through 2 (of 2 total)
  • It doesn’t do the trick for me, needed to add:
    display: none

    Although I am not really sure, I don’t think using display: none; is a good idea. It is said that some browsers (Firefox?) simply don’t load images that are hidden using display: none;. Again, I am not sure.

    So, I had to think a bit, and finally decided to go with this:

    body > img {
        position: absolute;
        top: -1px;
    }

    Reason(s): The image is not really an image, so it really can’t be seen. But it takes 1px area, where it’s positioned. So, I see no reason why the CSS code I used (as shown above) would be a bad choice.

    But I am free to suggestions. So, please feel free to share what worked for you. :^)

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Cookies for Comments] Broken Footers and stripes of whitespace’ is closed to new replies.