Parallax effect on scrolling
- This topic has 9 replies, 2 voices, and was last updated 7 years, 1 month ago by Grace Themes.
-
AuthorPosts
-
April 25, 2017 at 10:11 pm #4216B.Participant
Hallo,
I noticed that the parallax effect on scrolling does not work on iPad and Android smartphone. Can this be fixed?
Bert
April 26, 2017 at 5:25 am #4219Grace ThemesMemberHi
The parallax effects working in all the devices.
Regards
Grace ThemesApril 26, 2017 at 6:31 am #4220B.ParticipantOn my site http://homestudioconnection.com the parallax become a static picture on both iPad and Android phone. Can you please check my site (sections ‘Andrew Scheps’ and ‘Our team of producers’)
Thanks,
BertApril 26, 2017 at 8:51 am #4221Grace ThemesMemberHi
I have checked in all the devices using http://www.responsinator.com
The parallax background image is working fine.Regards
Grace ThemesApril 26, 2017 at 12:10 pm #4227B.ParticipantStrange because on several different ipads (ipad 2, air and pro) it does not work. It only shows a static image that is ugly blown in its size.
April 27, 2017 at 4:02 am #4248Grace ThemesMemberHi
We have tested in all the devices online and is working fine.
April 30, 2017 at 10:49 am #4288B.ParticipantCan you explain to me how to disable the parallax effect?
April 30, 2017 at 12:59 pm #4292Grace ThemesMemberHi
To remove the parallax effects
Go to Appearance -> Editor -> index.phpat line no 61, you will find the below code
<section <?php if( $bgcolor || $bgimage || $hide) { ?>style="<?php echo ($bgcolor != '') ? 'background-color:'.$bgcolor.'; ' : '' ; echo ($bgimage != '') ? 'background-image:url('.$bgimage.'); background-repeat:no-repeat; background-position: center top; background-attachment:fixed; background-size:cover; ' : '' ; echo ($hide) != false ? 'display:none;': ''; ?>"<?php } ?> id="<?php echo $secid; ?>" class="<?php echo ( of_get_option('menutitle'.$s, true) != '' ) ? 'menu_page' : '';?>">
Now just remove background-attachment:fixed;
The revised code is below
<section <?php if( $bgcolor || $bgimage || $hide) { ?>style="<?php echo ($bgcolor != '') ? 'background-color:'.$bgcolor.'; ' : '' ; echo ($bgimage != '') ? 'background-image:url('.$bgimage.'); background-repeat:no-repeat; background-position: center top; background-size:cover; ' : '' ; echo ($hide) != false ? 'display:none;': ''; ?>"<?php } ?> id="<?php echo $secid; ?>" class="<?php echo ( of_get_option('menutitle'.$s, true) != '' ) ? 'menu_page' : '';?>">
If you are find any problem, you can send your WordPress admin login details for temporary at [email protected] so we can solve your problem.
Regards
Grace ThemesApril 30, 2017 at 1:31 pm #4295B.ParticipantGreat, thanks!
April 30, 2017 at 2:39 pm #4303Grace ThemesMemberYou are most Welcome!
-
AuthorPosts
- You must be logged in to reply to this topic.