Tagged: parallax_theme
-
AuthorPosts
-
April 21, 2024 at 10:55 pm #1440466
My client is currently considering updating an existing enfold website to be more mobile friendly. The new Parallax theme almost fits the bill, but I’m having a bug occur during testing.
The top right image does not show up on only mobile browsers with both Safari and Firefox. It works nicely with Chrome. I’m stumped in trying to get this resolved. Desktop environments all works well.
Please help point me in the correct direction.
Thank you!
April 23, 2024 at 2:52 am #1440548Hey kblankinship,
Thank you for the inquiry.
The image in the cell seems to be visible when we checked. If the issue persists on your end, please try adding this css code:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .flex_column.av-l3szqp26-6284db6a47ccbd96c8a886659567d974 { height: 400px; min-height: 400px; } }
Best regards,
IsmaelApril 23, 2024 at 6:41 am #1440558Unfortunately this CSS did not work to load the main image. I’m sending you some private links to show screenshots of what works in Chrome and what doesn’t work in Safari and Firefox. Again, the problem only occurs on mobile browsing. Desktop setup is great. Any other ideas after reviewing the links?
Thank you Ismael
April 23, 2024 at 8:53 am #1440569Hi,
Thank you for the screenshots.
We adjusted the css code a bit. Please try it again:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .flex_column.av-l3szqp26-6284db6a47ccbd96c8a886659567d974 { height: 542px !important; min-height: 400px; } }
Is the image visible when the parallax effect is disabled?
Best regards,
IsmaelApril 24, 2024 at 5:35 am #1440643Still no luck with the adjusted code.
To answer your question about the image being visible when the parallax effect is disabled, still no there as well, but only with Safari and Firefox in the mobile environment.
Please advise and thank you!
April 26, 2024 at 12:05 pm #1440944Hi,
Thank you for your patience, please try disabling Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and disable any other caching plugins and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files
Then clear your device cache, please note that iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
If this doesn’t help please try adding this code to the end of your theme functions.php file in Appearance ▸ Editor:function custom_avf_post_css_create_file( $create ) { return false; } add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
and clear your cache again.
If this doesn’t correct please include admin login in the Private Content area so we can investigate.
Also when you say that “Desktop environments” work fine, is that Mac or Windows, or both?Best regards,
MikeMay 2, 2024 at 4:18 am #1441749Hello Mike,
That did the trick! I did what you suggested along with disabling my Speedy Cache plugin and that fixed the issue. I did not have to insert your suggested code.
Thank you so much for your help on this! Now I can move forward.
May 2, 2024 at 9:16 am #1441827 -
AuthorPosts
- You must be logged in to reply to this topic.