AMOB
May 2, 2022, 7:15am
1
Hello, I used slideshow as my text slides, but the problem is the height is so big and I want to decrease the height so it looks better, of it but it wont let me, any coding to fix it?
website name is ZoticNewYork.com
pass: shawsu
Below 1/2 theres a huge empty space I want to remove so it is closer.
1 Like
@AMOB
.slider-buttons.no-js-hidden.quick-add-hidden {
display: none !Important;
}
Add this code in the component-slider.css file
Please add below css in bottom of assets/base.css file
.slideshow__media.banner__media.media {
display: none;
}
Thank you.
AMOB
May 2, 2022, 7:44am
4
The code did not remove the image space, I just want the text slider no image, but it leaves a huge space any code to fix it?
@AMOB
.slideshow__media.banner__media.media {
display: none;
}
Add this code in the base.css file.
Please try this may it will helpful for you.
Please add below code in bottom of assets/section-image-banner.css file
@media screen and (max-width: 749px)
.banner–small.banner–mobile-bottom:not(.banner–adapt) .banner__media {
height: auto;
}
Thank you.