How to remove random 'or' from mobile store cart page?

I need help with my mobile store page. There is a random word “or” at the bottom of my cart, it doesn’t show when editing my page nor is there an option to remove it and it can only be seen on the live mobile page.

Any help would be much appreciated.

1 Like

@Stewy88 ,

Please add this CSS to your theme

p.sm-caps.or-divider.mt2.mb2.a-center {
    display: none;
}

Thanks!

p.sm-caps.or-divider.mt2.mb2.a-center {
    display: none !important;
}

@Stewy88
Add this code in the stylesheet.css

1 Like

Thank you, that has worked a treat!

@Zworthkey