Different clickable backgrounds for different screen sizes
-
Hi
I’m serving up different backgrounds on a site depending on the screen size being used to view it. Is it possible to use the plugin to make these backgrounds clickable? If so could you tell me how please?.
Here’s my CSS
@media only screen and ( min-width: 1300px ) {
#main-area {margin-left: auto; margin-right: auto; width: 960px;}
body {background: url(“https://www.mywebsite.com/images/skin1300.jpg”) no-repeat fixed center top;}
}@media only screen and ( min-width: 1600px ) {
#main-area {margin-left: auto; margin-right: auto; width: 960px;}
body {background: url(“https://www.mywebsite.com/images/skin1600.jpg”) no-repeat fixed center top;}
}Many thanks in advance
- The topic ‘Different clickable backgrounds for different screen sizes’ is closed to new replies.