Hi, can anyone tell me what code I would need to hide breadcrumb links on mobile but display them on desktop? I am using Turbo theme.
Please share your website URL and password if any. I will check and provide a solution here.
Thanks!
hello @vivame
please Go to Online Store-> Theme->Edit code then go to assets/theme.css ->paste the below code at the top of the file.
@media only screen and (max-width: 749px){
.breadcrumb__wrapper{
display: none;
}
}