Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #817654

    Welcome Page Image:
    I tried to change the welcome page image but it not responsive in mobile view

    #817705

    Hey sivaselvi,

    Looks ok to me, which elements do you need to be adjusted?

    Best regards,
    Victoria

    #817994

    Hi Victoria,

    Please view the attached URL

    http://sswebdesigner.net/image_comparision.png

    In mobile we unable to see the full image.

    Thanks,
    Siva

    #818096

    Hi Siva,

    You can’t expect the background image to display exactly the same on screens with such a big difference in height/width ratio. If you want greater control over the image then you would need to add another section to be shown on mobile device only. You can show/hide the correct section using CSS like this:

    @media only screen and (min-width: 768px) {
    #section-desktop {
      display:block !important;
    }
    #section-phone {
      display:none !important;
    }
    }
    
    @media only screen and (max-width: 767px) {
    #section-desktop {
      display:none !important;
    }
    #section-phone {
      display:block !important;
    }
    }

    Best regards,
    Rikard

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