Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1069309

    Easyads88
    Participant

    my site is http://tourmobile.info

    The parallax background pic labeled “Places To Eat” will not function like the proper parallax effect should. please advise.

    I’ve tried putting this code in “Global CSS”:

    @media screen and (max-width: 767px){
    .x-content-band.bg-image.parallax, .x-content-band.bg-pattern.parallax {
    background: center center/cover no-repeat;
    background-attachment: scroll!important;
    background-size: 100% auto !important;
    -webkit-background-size: 100% auto !important;
    -moz-background-size: 100% auto !important;
    -o-background-size: 100% auto !important;

    }
    }

    #1069320

    Rad
    Moderator

    Hi there,

    Thanks for posting in.

    It works on my end, would you mind providing a video recording of this issue? Though, parallax background is intentionally disabled for mobile.

    Thanks!

    #1069653

    Easyads88
    Participant

    It’s not functioning properly on the tablet. It’s simply an image, no parallax effect. Is there something that I’m doing wrong?

    the video file is too large to add.

    #1069786

    Easyads88
    Participant

    Please advise… parallax still not functioning on my end with my mobile device. Is there something that can be done??

    #1069788

    Easyads88
    Participant

    Here’s the video…

    #1069987

    Rue Nel
    Moderator

    Hello There,

    Thanks for providing the video. To resolve this issue, please have your css code updated and make use of this code instead:

    @media screen and (max-width: 767px){
      .x-content-band.bg-image.parallax, .x-content-band.bg-pattern.parallax {
        background: center center/cover no-repeat;
        background-attachment: fixed !important;
        background-size: 100% auto !important;
        -webkit-background-size: 100% auto !important;
        -moz-background-size: 100% auto !important;
        -o-background-size: 100% auto !important;
      }
    }

    We would loved to know if this has work for you. Thank you.

    #1069993

    Easyads88
    Participant

    No unfortunately that didn’t work. What do you suggest?

    #1069997

    Easyads88
    Participant

    Also, I have used this css code to correct the fixed navbar on mobile devices.

    media (max-width: 979px) {
    .x-navbar-fixed-top, .x-navbar-fixed-left, .x-navbar-fixed-right {
    position: fixed;
    }
    }

    It worked well, but now a portion of my slide show (below my masthead) is being blocked by the fixed navbar. Any way that i can correct this from happening.

    pic#1 is what it should be, but pic#2 shows the portion that is being blocked

    #1069998

    Easyads88
    Participant

    Also, I have used this css code to correct the fixed navbar on mobile devices.

    media (max-width: 979px) {
    .x-navbar-fixed-top, .x-navbar-fixed-left, .x-navbar-fixed-right {
    position: fixed;
    }
    }

    It worked well, but now a portion of my slide show (below my masthead) is being blocked by the fixed navbar. Any way that i can correct this from happening.

    pic#1 is what it should be, but pic#2 shows the portion that is being blocked

    #1070000

    Easyads88
    Participant

    pic#1

    #1070002

    Easyads88
    Participant

    pic#2

    #1070008

    Easyads88
    Participant

    As far as the parallax is concerned, do you need my login to try to fix the problem?

    #1070129

    Christopher
    Moderator

    Hi there,

    Parallax is disabled on mobile. So you should see normal image on mobile devices.

    Please try this code:

    @media (max-width: 979px) {
        .touch .x-section.bg-image.parallax, .touch .x-section.bg-pattern.parallax,
        .touchevents .x-section.bg-image.parallax, .touchevents .x-section.bg-pattern.parallax {
            background-attachment: scroll !important;
        }
    }

    Hope it helps.

    #1071985

    Easyads88
    Participant

    I have tried this code but the parallax function is still not working. Please help…

    #1072096

    Easyads88
    Participant
    This reply has been marked as private.