Hi can you please help me display the arrows on mobile version only under the section T-shirts. I think I used CSS code to hide by accident.
page:https://matibrnd.com/products/alexander-the-great-ar-hoodie
code: biangu
Thank you
Hi can you please help me display the arrows on mobile version only under the section T-shirts. I think I used CSS code to hide by accident.
page:https://matibrnd.com/products/alexander-the-great-ar-hoodie
code: biangu
Thank you
Hi @MT27
Yes, you have a prev. and next button but you hide it well in the theme.liquid. It over ride already and it would be hard to add another code it would not listen.
What you can do is to find this code in the theme.liquid, component-slider.css or wherever youi paste it before.
This is the code.
And it must be change like this.
@media screen and (max-width: 749px) {
.slider-button--next {
display: content !important;
}
.slider-button--prev {
display: content !important;
}
.slider-buttons {
position: unset !important;
}
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!