Home › Forums › Theme support › Allslider Height? › Reply To: Allslider Height?
Hi,
unfortunately it’s not so easy. The height of the slider is always up to the image height / the width of the images in the slider. The width is always 100%, just as the screen. If you have i.e. pictures in your slider, 2000 pixel width and 300 pixel height, but the screen is 2000 pixel width and 1000 pixel height, the image can’t fit the screen.
If you want, you can try this: go to WordPress admin -> Appearance -> Theme Options -> General -> Extra CSS Content and add this:
.slideshow_cycle, .slideshow_cycle img {
height:100vh !important;
width:100vw !important;
}
This CSS code could help you