• Resolved prestigecandyuk

    (@prestigecandyuk)


    Hi,

    If you look at the homepage on my website you will see that the image is in the wrong place which is not my fault, can anyone tell me why?

    It was fine before and after a update its gone weird, please visit my site to check it out but i need help asap!

    https://www.PrestigeCandy.co.uk

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello prestigecandyuk,

    Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.

    
    #home .hero-slider ul li {
      height: 100%;
    }
    
    #home .hero-slider .hs-caption {
      padding: 200px;
    }
    
    @media(max-width: 1080px) {
      #home .hero-slider ul li {
        height: 100%;
      }
    
      #home .hero-slider .hs-caption {
        padding: 80px;
      }
    }
    
    @media(max-width: 767px) {
      #home {
        height: 560px !important;
      }
      #home .hero-slider .hs-caption {
        padding: 100px;
      }
      #home .hero-slider .hs-caption h1{
        margin-top: 100px;
      }
    }
    
    @media(max-width: 680px) {
      #home .hero-slider .hs-caption {
        padding: 25px;
      }
      #home .hero-slider .hs-caption h1{
        margin-top: 135px;
      }
    }
    
    @media(max-width: 400px) {
      #home {
        height: 610px !important;
        margin-top: -80px;
      }
    }
    
    @media(max-width: 377px) {
      #home {
        height: 680px !important;
        margin-top: -80px;
      }
    }

    Hope this will helps you.

    Thanks.

Viewing 1 replies (of 1 total)
  • The topic ‘Homepage image not in correct place’ is closed to new replies.