I would like to have a responsive image arrangement for backgrounds on a site.
For example, based on different screen resolutions, I would like for different backg
You can invest in a little jquery to change your backgrounds based on the screen size. Here is an example of what you can do:
if ( $(window).width() < 1000 ) {
$('body').css('background','url("yourimage")';
} else {
$('body').css('background','url("yourimage")';
}
Would you mind telling us what you've tried if you have a moment?