Hi!
Just wondering if there is a way to hide the bottom of the slider and have just arrows on the left and right of the images?
password: skoffi
Hi!
Just wondering if there is a way to hide the bottom of the slider and have just arrows on the left and right of the images?
password: skoffi
Hello There,
.slider-counter,
.slideshow__autoplay {
display: none;
}
Hi,
thanks for taking the time to reply! I tried this but nothing happened unfortunately, is there ay other code we could try?
Thanks!
Hello @INFRA
.slider-counter.slider-counter--dots {
display: none!important;
}
button.slideshow__autoplay.slider-button.no-js-hidden {
display: none!important;
}
Thanks! The dots have now disappeared but I would like the entire section to disappear, and only have the arrows on top of the image, on the left and right side, like below for example. Is that possible?
Hello @INFRA
.slider-button {
/* Add positioning styles for the arrows */
position: absolute;
transform: translateY(-900%);
background-color: transparent;
border: none;
cursor: pointer;
z-index:9999;
}
.slider-button--prev {
left: 10px;
}
.slider-button--next {
right: 10px;
}
.slideshow__controls--top {
z-index: unset!important;
}
.slideshow__controls--top svg.icon.icon-caret {
color: red;
height: auto;
}
Thank you, that looks great! They are just not visible on mobile, is there a way to do this? ( I will probably add vertical images covering the entire screen, so they could be in the middle of the image)
Hello @INFRA
@media (max-width:749px){
.slider-button {
transform: translateY(-400%);
}
}
Thank you, I think the arrows are showing up right at the top of the mobile view now, see below. Is there any way to change the height?