Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi,
Is there a way to hide the breadcrumbs in Palo Alto on the product pages - for mobile only? There is an option to remove them all together but I think they add value on the desktop version of my site. However, on the mobile pages (especially the product pages) they take up a lot of space and I'd like to hide them.
Thanks, Nick
Solved! Go to the solution
This is an accepted solution.
Hello @nickadl
Go to online store ----> themes ----> actions ----> edit code ---->theme.css
add this code at the end of the file and save.
@media screen and (max-width: 749px) {
nav.breadcrumbs {
display: none !important;
}
}
If this was helpful, hit the like button and accept the solution.
Thanks
This is an accepted solution.
Hello @nickadl
Go to online store ----> themes ----> actions ----> edit code ---->theme.css
add this code at the end of the file and save.
@media screen and (max-width: 749px) {
nav.breadcrumbs {
display: none !important;
}
}
If this was helpful, hit the like button and accept the solution.
Thanks
Hello @nickadl
Please share your store URL and password.
So that I will check and let you know the exact solution here.
Hey @nickadl
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
<style>
@media screen and (max-width: 767px) {
.collection__inner .breadcrumbs {
display: none !important;
}
}
</style>
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed