Right now the button on slideshow is on the center. I want to lower the position. I tried many kinds of solutions on here but all failed. Maybe it could be because of some code changes that I made earlier. I believe I added some code though I don’t remember why I did it. Please look at some of the codes on the bottom of theme.scss.liquid below. And tell me if there’s something blocking the button position change. And please let me know how to lower the button position on slideshow. My website is https://www.thelegitkorean.com/
Also, I want slideshow arrow to be shown on mobile as well. Right now it’s only shown on desktop. How can I fix that?
.selectors-form__item {
padding-bottom: $footer-spacing-small;
margin: 0 $footer-spacing-extra-small;
@include media-query($medium-up) {
padding-bottom: 0;
&:first-of-type {
margin-left: 0;
}
}
}
@media only screen and (max-width: 749px) {
.slideshow__btn {
display: inline-block;
}
.slideshow__text-wrap--mobile {
display: none !important;
}
}
