Archived topic
How to hide the Title part in the Breadcrumb only for mobile devices
3 replies · Started by Slawomir on October 1, 2019
Hello David,
how can I hide breadcrumb’s title (Yoast) on mobile devices ONLY (screen-size <769px)?
The breadcrumb’s are to long on the mobile devices.
The function is realized exactly at Yoast-Blog:
On mobile:
Home >> Category1 >> Category2 >>
<h1>Long-tail titel</h1>
On Desktop:
Home >> Category1 >> Category2 >> Long-tail titel
<h1>Long-tail titel</h1>
Thank you very much
Slawomir
Hi there,
this CSS will remove the last breadcrumb:
@media(max-width: 768px) {
.breadcrumb_last {
display: none;
}
}
What isn't possible is to remove the last > from the trail
Thank you very much
You're welcome