threadsonline
-
Posts
108 -
Joined
-
Last visited
Community Answers
-
threadsonline's post in How to remove/hide controls on a slideshow was marked as the answer
Hi Tuan,
I have now sorted this myself, no need to worry!
Here are the codes I used if anyone was wondering:
// Hide slideshow controls on Desktop
.desktop-arrows.arrow-container{
display : none;
}
// Hide slideshow controls on Mobile
.mobile-arrow-button.mobile-arrow-button{
display : none;
}
-
threadsonline's post in How to get product size options in a singular horizontal line on mobile was marked as the answer
Update - I just realized all you have to do is edit the form width 🙂
-
threadsonline's post in How to decrease section height with code was marked as the answer
Managed to find the code for this:
// decrease banner height on mobile
@media screen and (max-width:767px) {
.user-items-list-item-container[data-section-id="65b96124899002297ce21714"] ul {
min-height: unset !important;
height: 70vh !important;
}
}