My product names are quite lengthy and must remain that way. When the breadcrumb displays on the product page, it overflows the layout on small screens like mobile view, causing the browser to display the page incorrectly.
I have attempted adding
<p class="overflow-ellipsis">
and <p class="overflow-visible">
to the DIV
of the product page without success. I also tried applying text-overflow: ellipsis;
and text-overflow: visible;
in the breadcrumb section's CSS, as well as changing white-space: nowrap;
to white-space: normal;
, but none of these solutions fixed the issue.
You can view an example page with this problem here; please resize the screen or view on mobile to see the issue:
It is essential for the product name to remain within the layout frame and ideally wrap onto a second line instead of overflowing the page. Note that I do not want to hide or truncate the text due to SEO concerns.