Tagged: breadcrumbs font
Fixed with css
Set the opacity to 1 in custom css to overwrite the theme’s settings.
.breadcrumb, .breadcrumb a, .breadcrumb a:hover { color: #fff; opacity: 1; }
It also looks better with:
font-size: 14px;
Maybe this helps someone else.
Hi Karl,
Just add the below custom CSS to increase the font size
.breadcrumb { font-size: 14px; }
Thank you!