Hi i have 2 header images 1 for desktop and 1 for both tablet and mobile.
How can i swap from pc header image to the mobile / tablet header image when the screen is resized or viewed on 1 of those devices
Hi i have 2 header images 1 for desktop and 1 for both tablet and mobile.
How can i swap from pc header image to the mobile / tablet header image when the screen is resized or viewed on 1 of those devices
Assuming 300px as desired width of setting:
#header{
background:url('first URL Here')
}
@media screen and (max-width: 300px) {
#header {
background:url('second URL Here')
}
}