Skip to content

Instantly share code, notes, and snippets.

@tdmrhn
Last active March 15, 2026 08:39
Show Gist options
  • Select an option

  • Save tdmrhn/1709101e3b5abf077c557373c2ef5591 to your computer and use it in GitHub Desktop.

Select an option

Save tdmrhn/1709101e3b5abf077c557373c2ef5591 to your computer and use it in GitHub Desktop.
Blocksy Mini Cart Suggested Products Stacked
/* Disable Autoplay Option in Customizing > General > Suggested Products > Mini Cart */
@media only screen and (max-width: 690px) {
.ct-panel-content-inner {
overflow-y: auto !important;
}
#woo-cart-panel ul {
overflow: unset !important;
}
.ct-suggested-products--mini-cart .ct-slider-arrows {
display: none;
}
.ct-suggested-products--mini-cart {
pointer-events: none;
}
.ct-suggested-products--mini-cart .flexy-items {
display: grid;
grid-template-columns: 1fr;
gap: 1em;
}
.ct-suggested-products--mini-cart .flexy-items .ct-product-title,
.ct-suggested-products--mini-cart .flexy-items .button {
pointer-events: auto !important;
}
.ct-suggested-products--mini-cart .flexy-item {
height: 100% !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment