In vB 6.2.1, the topic title has been added to the breadcrumb. If a topic has long title, it would overflow on mobile devices. Please see below screenshot for reference:
β
To fix this issue, add this custom CSS in css_additional.css template:
After adding the above CSS, the last breadcrumb item will have ellipsis if it doesn't fit the available space.
β
To fix this issue, add this custom CSS in css_additional.css template:
Code:
#breadcrumbs .crumb {
overflow: hidden;
}
#breadcrumbs .crumb span[itemprop="name"] {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}



