Hi @iamwithU,
The slider responds to the width and not the height, and it will maintain the aspect ratio of the slider. Hence, it’s only normal to see a space below it. Let’s imagine the image in your slider, what will happen if the image’s width remains but it fills the height? It will stretch and not good. What you could do is create a custom grid with the width of 979px (just assuming you’re targeting standard tablet) and arrange your layer (image on top and full-width, and buttons below it). Hence, the buttons will fill the empty space while the image is bigger.
Unfortunately, there is no portrait and landscape mode editing in the slider. The tablet shares almost the same resolution as laptops and there are no browser features that will let the script detect the device it’s running to. I would use a different approach of layers arrangement for tablet size range regardless of the landscape, example, since I have an iPad Pro then the resolution would be between 1024px and 1366px (portrait and landscape). Then my custom grid sizes would be
1920px
(desktop, 24 inch screen) (image on left and buttons on right)
1366px
(laptop, iPad Pro’s landscape and other retina devices) (image on top and buttons to the bottom) – and since there is no landscape and portrait mode, we assume here that the layer positioning and arrangement will be the same regardless of orientation
1024px
(iPad Pro’s portrait BUT, standard tablet’s landscape)
979px
(standard tablet’s portrait, BUT, phone’s landscape)
767px
(phone’s portrait)
As you can see, there are many sizes, so you’ll have to pick your preferred targets and in the slider, you can only have 4 sizes. I would choose these
1920 - Desktop Large
1366 - Notebook (and tablet as well)
1023 - tablet
767 - mobile
Skipping 979 since it’s in the range between 1366 and 979 as a tablet regardless of orientation. The key is, arranging your layers for those sizes so you could utilize those spaces. BUT, yes, since the tablet is in both range of laptops, the change in your tablet would also reflect on laptop view.
Thanks!