Viewing 24 posts - 1 through 24 (of 24 total)
  • Author
    Posts
  • #459431

    Hey guys,
    so I have the below page that has background images within the ‘color section’ that works fine on a desktop…but looks obscured and excessively large on my mobile. Any thoughts on how to either reduce the images, or just get display:none them altogether?

    Thanks!

    #459851

    Hi Justin!

    The page you linked looks fine on my end using latest version of Chrome, what browser are you using to get this error? I’m not sure what images you are referring to either, could you please provide us with screenshots of the issue?

    Best regards,
    Rikard

    #460086
    This reply has been marked as private.
    #460543

    Hey!

    Thanks for the screenshot, could you please provide us with a temporary admin login so that we can take a closer look? You can post the details here as a private reply.

    Cheers!
    Rikard

    #460559
    This reply has been marked as private.
    #460992

    Hey!

    try this code in Quick CSS field:

    @media only screen and (max-device-width: 736px) {
    .av-parallax.avia-full-stretch.enabled-parallax.active-parallax {
    background-image: none !important;
    }}
    

    Regards,
    Andy

    #461006
    This reply has been marked as private.
    #461820

    Hi!

    yes, and I think it should work. Please clear browser cache and refresh your browser a few times.

    Regards,
    Andy

    #463519

    Hmm, thanks Andy ….
    But what are you looking at exactly? And what smartphone are you using? When I go to the ABOUT page on my IPhone, under the section WHY I WRITE, I see a big flower that’s making the verbiage difficult to read. Mind sharing what you’re seeing? I tried clearing the cache.

    Thanks bud

    #463865

    Hey!

    I checked the site and the flower background doesn’t display on mobile screens. I also noticed this incorrect css code:

    @media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-device-width: 667px) and (min-device-width: 375px)
    div.av-parallax.avia-full-stretch.enabled-parallax.active-parallax {
      background: display:none!important;
    }
    

    Please remove that.

    Cheers!
    Ismael

    #464143

    Let me know if this helps guys. Cleaned the cache a couple times:
    Thanks!

    #464498

    Hi!

    This is how it looks on our end:

    Anyway, please try to replace the code with this:

    @media only screen and (max-device-width: 736px) {
    .av-parallax.avia-full-stretch.enabled-parallax.active-parallax {
    background: none !important;
    }}

    Regards,
    Ismael

    #464618

    Work your magic sir. It’s not working for me.

    #464828

    Hi!

    That is how we actually see the site. I don’t think we can do anything else since it’s working.

    Cheers!
    Ismael

    #465024

    Yeah I cleared my cache again (Iphone 6+) and no change. So in other words there’s really no solution for it. :/

    #466243

    Hey!

    I checked it again and it’s displaying fine on my end. Please try on another device as well to double check. We need to be able to reproduce the issue, otherwise we can’t do much. Let us know if it’s working for you on other devices and provide us screenshots please.

    Regards,
    Andy

    #466542

    Andy, I will try a few other phones tonight. Thanks!

    #467396

    Hey!

    Alright. Let us know if the background of the section is still showing there.

    Best regards,
    Ismael

    #476771

    Still seeking a solution here. Ad my client is also seeing it on her IPhone 5s

    #479475

    Hi!

    I think it’s because of the retina display. Please try to add this css code:

    @media 
    (-webkit-min-device-pixel-ratio: 2), 
    (min-resolution: 192dpi) {
    .av-parallax.avia-full-stretch.enabled-parallax.active-parallax {
    background: none !important;
    }}

    If it doesn’t work, replace the media query with this:

    @media
    only screen and (-webkit-min-device-pixel-ratio: 2),
    only screen and (   min--moz-device-pixel-ratio: 2),
    only screen and (     -o-min-device-pixel-ratio: 2/1),
    only screen and (        min-device-pixel-ratio: 2),
    only screen and (                min-resolution: 192dpi),
    only screen and (                min-resolution: 2dppx) { 
      
      /* Retina-specific stuff here */
    
    }

    Regards,
    Ismael

    #479793

    no luck..this is strange.

    #480024

    Hey!

    Yeah.. It sure is. Please try this:

    @media only screen and (max-width: 1200px) {
    #smallgap .av-parallax {
      display: none !important;
    }}

    Please check the css modifications, make sure that there are no missing brackets in the css media queries. Don’t forget to remove browser and plugin cache.

    Regards,
    Ismael

    #480427

    Ismael, that worked.
    I did double-check my CSS to find a closing } missing from an @media query style.

    Thank you

    #480442

    Hey!

    Happy u gor it solved. I will close the ticket now, so you can work on the rest.

    Regards,
    Basilis

Viewing 24 posts - 1 through 24 (of 24 total)
  • The topic ‘Background Image and mobile RESIZE’ is closed to new replies.