Last active
March 15, 2026 08:39
-
-
Save tdmrhn/1709101e3b5abf077c557373c2ef5591 to your computer and use it in GitHub Desktop.
Blocksy Mini Cart Suggested Products Stacked
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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