Ok, So I designed a responsive layout that doesn't show images for very small screen sizes, using media queries and display: none;.
So far so good. But these images still download on these devices, causing an increase in bandwidth.
What is the proper way to make these images not download on the specified devices?
Any response would be much appreciated!
IMGsrc attributes (... or just remove the element altogether...). Or pass all of your image file requests through a script on your server, and set aCOOKIEorSESSIONflag that tells the script if it's mobile or not, and send either the file contents or an empty response. Something like that. I don't know that you can do it with pure CSS, though. – Jared Farrish Sep 12 '11 at 23:30