Hi guys
So the Image in my first parralax looks great on PC’s, but it doesn’t center/top on iPhone. It’s a group image, so their heads are being cut off on my iPhone. I would like the image to “start from the top” and therefore select center top in my color section.
See image below for proff
Hey Gudi,
You might have to create a new section to only show on mobile and upload an image better adapted to mobile devices to it. You can give your sections unique ID, for instance section-desktop and section-mobile, you can then use the following CSS to show hide them for the correct screen size:
@media only screen and (max-width: 767px) {
#section-desktop {
display:none !important;
}
}
@media only screen and (min-width: 768px) {
#section-mobile {
display:none !important;
}
}
Regards,
Rikard
Thank you. Did a 1534x708px (2 times the width 767px) and made alot of space around the people. Seems to have fixed it nicely.
Thanks!
Hi!
Glad it worked!
Please do let us know if you need anything else, we will be happy to assist further.
Best regards,
Basilis