Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Different background image on different screen resolutions?


mreigle

Recommended Posts

Posted

Is there any way to have a different background image with each screen resolution using the stylesheet?

 

If not, is there any way to do it without going to each individual page and adding a JavaScript?

 

Thanks!

 

:thumbsup:

Posted

I did a search on google and came up with this but no clue if it works or not.

 

html {

background-image: url(image.png);

background-attachment: fixed;

background-repeat: no-repeat;

background-position: left top;

}

@media all and (min-width: 1025px) {

html {background-image: url(image2.png);}}

@media all and (min-width: 1281px) {

html {background-image: url(image3.png);}}

Wendy James

 

Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...