Shopify themes, liquid, logos, and UX
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
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025