Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

If you squish the browser window enough it'll go into a mobile view where she jumps to the bottom


Ah - thank you. The comments here make a lot more sense now. Anyone care to explain why it doesn't show up anywhere for desktop users? Html has this:

    <footer id="footer">
        <img id="footer-image" src="/img/niconiconi.png" width="0%" />
    </footer>


On desktop you see the image as a background on the <body>

    @media (min-width: 770px)
    body {
        ...
        background-image: url(/img/niconiconi.png);
        ...
    }
And on mobile you see that footer

    @media (min-width: 770px)
    #footer-image {
        width: 0%;
    }




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: