Hello,
I set easy slider image size to ‘no scaling’ but slider is stretched to full website width. I have 1000×255 images and they are stretched to 1210x??? when I set no scaling. Where could be the problem ? Thank you.
http://www.acraft.sk
slider on homepage
Hi miso00!
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.
Regards,
Rikard
Did you find out some solution ?
Hi!
Note that the slider will take or inherit the width of the container, which is currently set to 1210px. This setting will ensure that the slider is responsive.
Cheers!
Ismael
Thanks for explanation Ismael. Is it possible to force that slider to keep original dimensions of images ? Through quick CSS ?
Hey!
It’s possible but you have to add a few css media queries to keep it responsive:
.avia-slideshow, .avia-slideshow-inner {
width: 800px !important;
margin: 0 auto;
}
Best regards,
Ismael
Thank you Ismael. This works but lost responsive behaviour like you said. Why is there option NO SCALING when slider is always scaled to full container width ?
Hey!
The Slideshow Image Size option enables you to select the size of the image that is going to be use in the slider but it will not resize the slider. Use css media queries if you want the slider to have a specific width on certain screen sizes:
@media only screen and (min-width: 768px) and (max-width: 989px) {
.avia-slideshow, .avia-slideshow-inner {
width: 600px !important;
margin: 0 auto;
}}
Regards,
Ismael
Thank you a lot. I’ll try it.