– Welcome Page Image:
I tried to change the welcome page image but it not responsive in mobile view
Hey sivaselvi,
Looks ok to me, which elements do you need to be adjusted?
Best regards,
Victoria
Hi Victoria,
Please view the attached URL
http://sswebdesigner.net/image_comparision.png
In mobile we unable to see the full image.
Thanks,
Siva
Hi Siva,
You can’t expect the background image to display exactly the same on screens with such a big difference in height/width ratio. If you want greater control over the image then you would need to add another section to be shown on mobile device only. You can show/hide the correct section using CSS like this:
@media only screen and (min-width: 768px) {
#section-desktop {
display:block !important;
}
#section-phone {
display:none !important;
}
}
@media only screen and (max-width: 767px) {
#section-desktop {
display:none !important;
}
#section-phone {
display:block !important;
}
}
Best regards,
Rikard