Archived topic
Hide yoast breadscrumbs on mobile device
5 replies · Started by Isabelle on December 16, 2017
Is there a way to disable yoast breadcrumbs for mobile devices? thanks.
Hi there,
Can you link me to the page in question?
Should be use some CSS.
Hi - See for example here http://test.northwestweavers.org/classifieds/for-sale-equipment/
I would like to disable the breadcrumbs for mobile devices (not enough real estate).
Thanks!
Hi there,
Try this CSS:
@media (max-width: 768px) {
#breadcrumbs {
display: none;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Thanks! It worked once I added a curly bracket after px).
Ahh good catch :)