• hi, as you can see here https://www.costinagiusta.it/ if you enlarge the browser width the slider images are cutted in the top and bottom. I’m using a 1170×500 images… is the problem going to solve if i use a 2400×500 images? or is there a code way to solve it using small images?

    Thanks
    Angelo

Viewing 7 replies - 1 through 7 (of 7 total)
  • Go to Global settings > Image settings and try unchecking Dynamic slider images centering on any devices

    Thread Starter AngeloLazzari

    (@angelolazzari)

    ok, it works but now the image is cutted only on the bottom, can i put 2000×500 images in the slider? Or i can set something like a boxed slider so it stops resize itselfs alter a fxed width value?

    Thank you very much
    ANgelo

    That’s a common problem.
    I would set a max-width for the slider:

    div#customizr-slider {
      max-width: 1170px; /* Adjust to your needs */
      margin: 0 auto;
    }

    That prevents the image from being cut off at the buttom if the page width gets to high.

    Thread Starter AngeloLazzari

    (@angelolazzari)

    works properly thank you very much!
    Angelo

    Thread Starter AngeloLazzari

    (@angelolazzari)

    Hi, it seems that the code you gave me doesn’t work anymore… i have the last version of the theme installed… https://www.costinagiusta.it

    Can you help me?

    Thanks
    Angelo

    Thread Starter AngeloLazzari

    (@angelolazzari)

    i tried to manage it adding:


    .carousel-image.slider-full img {
    width: 1170px;
    left: -10%;
    float: right;
    position: relative;
    }

    and it works… :/

    am i doing right?

    Thanks

    Hi,

    I think you should change to the following codes.

    .carousel-image.slider-full img {
    max-width: 1170px !important;
    width:100% !important;
    left: -10%;
    float: right;
    position: relative;
    }

    So that it’s responsive.
    I tried it out using firebug when viewing your website.

    Thanks!
    Denzel

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘cutted slider image’ is closed to new replies.