How to hide custom shopping basket icon on small screen sizes?

I’ve added a custom shopping basket icon to https://sinfuldelights.co.uk/ (password: sinful) and the basket icon doesn’t automatically hide like the other icons such as the customer and search icon when the screen size is reduced.

What code would I need to add to resolve this?

Go to timber.scss.css and add this snippet at the very bottom.

.site-nav--mobile.text-right{
  visibility: hidden
}
1 Like

Worked perfectly, thankyou!