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!

link|improve this question

If you can't just have a different markup setup, I would have a mobile.site.com or www.site.com/mobile concentration point and do something to remove or replace (with a blank or empty file reference) all of the IMG src attributes (... or just remove the element altogether...). Or pass all of your image file requests through a script on your server, and set a COOKIE or SESSION flag 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
feedback

2 Answers

Two options I can think of:

  1. Detect small devices on the server using browser-sniffing, and send them different HTML that doesn’t reference the images.
  2. Display the images via CSS instead of HTML (in style attributes if you like), using either background-image or :before/:after and content (not supported by IE 6 or 7), and wrap that CSS code in media queries so that it’s only displayed by devices with larger screens.
link|improve this answer
#2 would usually be a good solution, sadly it won't work for me in this case – Illes Peter Sep 12 '11 at 10:06
@Illes: sure, it’s not always a great idea. I think you‘re stuck with serving different HTML to small-screen clients then — I don’t believe browsers let HTML authors control when image assets get downloaded. Hopefully someone else on Stack Overflow will have some experience of this though. – Paul D. Waite Sep 12 '11 at 13:37
feedback

If you don't mind a javascript dependency you could check window.innerWidth and insert image tags for sufficiently large screens.

Images would only be requested if javascript is enabled and the window big enough.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.