How to hide trust badge on only desktop for the cart page? (Debut theme)

Hi there,

How to we hide trust badge on only desktop for the cart page? (Debut theme)

Thank you!

@Oskar21

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;}
}

Hi there,

that didn’t seem to work.

My website is: XXX.com

@Oskar21

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;}
}

@Oskar21

Only for desktop add this code

@media only screen and (min-width: 750px){
#content-mobile {display:none !important;}
}

@Oskar21

Thanks! welcome again.

That did the trick, much appreciated