Go to Global settings > Image settings and try unchecking Dynamic slider images centering on any devices
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.
works properly thank you very much!
Angelo
Hi, it seems that the code you gave me doesn’t work anymore… i have the last version of the theme installed… http://www.costinagiusta.it
Can you help me?
Thanks
Angelo
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