Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #413906

    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

    #414205

    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

    #414208
    This reply has been marked as private.
    #414779

    Did you find out some solution ?

    #415646

    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

    #415771

    Thanks for explanation Ismael. Is it possible to force that slider to keep original dimensions of images ? Through quick CSS ?

    #416387

    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

    #416607

    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 ?

    #417574

    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

    #418170

    Thank you a lot. I’ll try it.

    #418428

    Hey!

    Great, please let us know if you should have any other questions.

    Best regards,
    Rikard

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