Hi there,
How to we hide trust badge on only desktop for the cart page? (Debut theme)
Thank you!
Hi there,
How to we hide trust badge on only desktop for the cart page? (Debut theme)
Thank you!
Add the following code at the bottom of your assets/theme.scss.liquid file.
@media only screen and (min-width: 750px){
.cart-trust-badge{display;none !important;}
}
Add the following code at the bottom of your assets/theme.scss.liquid file.
@media only screen and (min-width: 750px){
#content-mobile {display:none !important;}
}
Only for desktop add this code
@media only screen and (min-width: 750px){
#content-mobile {display:none !important;}
}
Thanks! welcome again.
That did the trick, much appreciated