Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #838204

    Hi,

    I’m having a problem with the Full Width Easy slider keeping the images all the same height. AT first the arrow controls were jumping up and down and I wanted to remove the dots, so I used the following css to fix that problem. However, all of the images are 819 Height but some are widths like 1638 x 819, others 1229 x 819. The arrows stay fixed now, but the ones that have smaller width appear taller when the slides display. Is there any way to make them all appear the same height with different widths?

    This CSS keeps the arrows from jumping up and down and to remove dots, but the images still appear taller and shorter due to different widths, but they are all the same height 819px. See link below. Thanks.

    }
    .avia-slideshow-inner {
    height: 819px !important;
    }
    .avia-slideshow-dots.avia-slideshow-controls {display:none;}

    #838343

    Hey yes9310,

    Can you try adding this css code in Quick CSS:

    .av_slideshow_full li img {
        width: auto !important;
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    #838355

    Thanks Nikko. I added that css and cleared the cache, but it did not work. I also noticed that with this added css, it makes some images stretch the full width while putting a lot of whitespace on the left and right side of others as well as the height keeps changing. I have it set to Stretch images and tried “No Scaling Original width and height and all the other settings 1030×1030, 1500×1500, etc. Any other ideas?

    #838416

    Hi,

    Stretching images that have less than the width of the screen would also force the image to stretch the height of the image so it’s still proportional, I think you can add this css code so it would hide the excess of the image (bottom part):

    .avia-slideshow-inner {
        overflow: hidden !important;
    }

    Let us know if this helps. :)

    Best regards,
    Nikko

    #838755

    Thanks Nikko! It seems to help some on PC view. I’m trying to keep all the images as close as possible to 1300 x 732, but some are less than 1300 wide on the single horizontal pics to maintain aspect ratio. However on mobile, all of the sizes still keep changing and the arrows are not visible. Is there anything I can add for mobile to make the arrows appear and to obey these css rules?

    #838802

    Hi,

    Can you try adding this css code in Quick CSS:

    
    @media only screen and (max-width:767px) {
      #top .avia-slideshow-inner {
        height: 375px !important;
      }
    }
    
    @media only screen and (max-width:479px) {
      #top .avia-slideshow-inner {
        height: 210px !important;
      }
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    #838866

    Thanks Nikko! I see the arrows now and it seems to constrain the images at a certain height, but on some that are wider, it shortens them and puts a white space and a gray line below the space. I changed the border from gray to white and the line disappeared. Just wish it would keep them all the same height.

    #838885

    Hi,

    Try to modify the heights I have set in the code I gave, hope it helps :)

    Best regards,
    Nikko

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