Hi Friends,
I have couple of issues,
Issue 1
I’m facing very strange issue with safari browser. http://carolco.recallstudios.com
video plays and ends at the last frame, when the above page link opened in the safari browser of mac book the last frame size looks normal, but when go to other tabs and comeback to this page, the image is zoomed and visible partial. how can I stop the video from zooming.
Issue 2
this page has image in the background http://carolco.recallstudios.com/about/#contact. Image is visible on all the browsers but not on the iphone6 browser
Please help me to fix this.
Regards,
Raghu.
Dear friends, looking for solution Please help me.
Hi Raghu,
Sorry for the late reply, the problem with Safari is a browser specific error we have seen since a few years back but unfortunately it’s something that we haven’t been able to fix. Luckily the user scenario is not all that likely.
For you background image problem, most mobile browsers do not support parallax scrolling so I think that is why it’s not showing. Maybe you can try to create a second section to only display on mobile and have a different setting on it? You can assign IDs to your sections and then show/hide the correct one 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