Solved

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

Oskar21
Shopify Partner
3 0 3

Hi there, 

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

 

Thank you!

Accepted Solution (1)
dmwwebartisan
Shopify Partner
12289 2547 3698

This is an accepted solution.

@Oskar21 

Only for desktop add this code 

@media only screen and (min-width: 750px){
#content-mobile {display:none !important;}
}
If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app

View solution in original post

Replies 6 (6)

dmwwebartisan
Shopify Partner
12289 2547 3698

@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;}
}
If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app
Oskar21
Shopify Partner
3 0 3

Hi there,

that didn't seem to work.

 

My website is: XXX.com

dmwwebartisan
Shopify Partner
12289 2547 3698

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

 

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app
dmwwebartisan
Shopify Partner
12289 2547 3698

@Oskar21 

Thanks! welcome again.

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app
dmwwebartisan
Shopify Partner
12289 2547 3698

This is an accepted solution.

@Oskar21 

Only for desktop add this code 

@media only screen and (min-width: 750px){
#content-mobile {display:none !important;}
}
If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app
Oskar21
Shopify Partner
3 0 3

That did the trick, much appreciated