Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #656830

    Hi,

    I love your new Enfold App demo and have used it as a base for my one-page site. I have changed the background images in the grid to my own and left the settings to exactly the same as yours.

    Unfortunately, they are not showing up in the right positioning when viewed on iPad in landscape mode. Also when I go and view your demo site on my iPad, I only see one of the demo images.

    Your demo: http://kriesi.at/themes/enfold-app/

    I love the fluidity of this design and would hate to have to abandon this because of the iPad view.

    Thanks,
    Wizard247

    P.S. I have display:none’d the columns on iPad view now on my site, but you can also check your demo.

    • This topic was modified 8 years, 4 months ago by wizard247.
    #657601

    Hey wizard247,

    not sure about which elements you’re talking about. Can you provide us screenshots of what you mean please? use imgur.com or dropbox.

    Best regards,
    Andy

    #657803

    When you view the Enfold-App demo on iPad, the FIXED background images (1500×1000) that are used in the 2/5-3/5 grids of the mobile phones and when scrolling seemingly run into one another to change the mobile phone screen (great effect) do NOT show up when viewed in Landscape mode on iPad. Only ONE of the images shows – the one with the hand – and the others are not there or are underneath the one that shows – not sure.

    I replaced these images with my own and also only one showed up and one other image as well but they showed underneath each other. Very messy. I have removed as site had to be presented to client. The issue however is viewable on your demo site if you have an iPad, so you can see what I mean.

    #657899

    this is a problem of position : fixed
    nearly all mobiles and there browsers got this problem.
    This is the reason why on mobile case the 2/5 column is set to display none

    But on some ipad ( with retina ) this mobile option does not have an effect because the tablet option is set to 990px.

    so for my installation i do this media querry on quick css:

    @media only screen and (max-width: 1024px) {.responsive #top .av-hide-on-mobile, .responsive #top .av-hide-on-tablet {
        display: none !important;
    }
    }

    see here for
    Mobile CSS Fixed Positioning Support

    • This reply was modified 8 years, 4 months ago by Guenni007.
    #657956

    Hi,

    I can’t see the issue you’re talking about on iPad screen size:

    View post on imgur.com

    Looks totally fine to me. I also checked on http://ipadpeek.com/ but can’t see it neither. Again: can you provide us screenshots of the issue please?

    Best regards,
    Andy

    #657997

    forget about ipadpeek.com these are not a genuine Image of the ipad behavior.

    Only that with the hand is shown and only in a static view.

    all 2/5 columns accept the one with the hand are missing (not shown) and the position of the hand is static in the one column

    and IOS Version is 9.3.2 on my ipad. no support for fixed positioning at all!
    and this is not a problem of enfold but of mobile Browser support on many OS

    • This reply was modified 8 years, 4 months ago by Guenni007.
    #658037

    alright @Guenni007, thanks for the clarification.

    Best regards,
    Andy

    #658254

    Thank you @Guenni007, that’s exactly the issue I was talking about, except that all of the Enfold-App demo images are Fixed and yet one shows up.

    Also – why is my slider image at the top changed to scroll on iPad when it is fixed on desktop? If it works for this on iPad, it should work for the other images, right?

    see: http://www.osteopath-launceston.com.au/welcome/

    Would you know of a way to change the fixed positioning of these background images to scroll on tablet LANDSCAPE only? I tried that with css but it didn’t work for me but maybe I didn’t address is properly.

    Cheers,
    Wizard247

    • This reply was modified 8 years, 4 months ago by wizard247.
    #658258

    OK – I think I have found the solution. This works for my site – it changes the background images to “scroll” for tablets – landscape positioning:

    /* Landscape Tablet*/
    @media only screen 
      and (min-device-width: 768px) 
      and (max-device-width: 1024px) 
      and (orientation: landscape) 
      and (-webkit-min-device-pixel-ratio: 1) {
    div.flex_cell.no_margin.av_two_fifth.avia-builder-el-20.el_before_av_cell_three_fifth.avia-builder-el-first.avia-full-contain.av-hide-on-mobile,
    div.flex_cell.no_margin.av_two_fifth.avia-builder-el-27.el_before_av_cell_three_fifth.avia-builder-el-first.avia-full-contain.av-hide-on-mobile,
    div.flex_cell.no_margin.av_two_fifth.avia-builder-el-34.el_before_av_cell_three_fifth.avia-builder-el-first.avia-full-contain.av-hide-on-mobile {
    background-attachment: scroll!important;
    background-size: cover!important;
    }
    }
    #658540

    Hi,

    Great, glad you found a solution and thanks for sharing, much appreciated :-)

    Regards,
    Rikard

    #673454

    Hey there – Had exactly same issue. Using ENFOLD APP demo without changing any code and just swapping out images and text. All fine on ipadpeek.com and many other iPad view simulators but not so when viewing on a real ipad.

    Guenni007 – thank you! Your css worked for me perfectly. Fabulous.

    Enfold Devs – definitely an issue on the ENFOLD APP demo files. But to view you’ll need to look on a real iPad screen – not a simulator like ipadpeek.com

    Thanks again Guenni007!

    #674027

    Hi @loudcow,

    Thanks for the feedback, we’ll have a look at it.

    Best regards,
    Rikard

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.