Just getting back to this issue.
A little confused as to where to put the suggested code.
I created a custom.css in the css subfolder, and copied the code to that location, but nothing changed.
I see where it's possible to override the default file for the module, but still not sure where the code is supposed to go.
And, if I'm reading this correctly, there's supposed to be a ">" between the items anyway.
Here's a portion of the default HTML code. Note the ">' entries.
// Generate the trail
foreach ($list as $key => $item) :
if ($key !== $last_item_key) :
if (!empty($item->link)) :
$breadcrumbItem = HTMLHelper::('link', Route::($item->link), '<span>' . $item->name . '</span>', ['class' => 'pathway']);
else :
$breadcrumbItem = '<span>' . $item->name . '</span>';
endif;
echo '<li class="mod-breadcrumbsitem breadcrumb-item' . $class . '">' . $breadcrumbItem . '</li>';
elseif ($show_last) :
// Render last item if required.
$breadcrumbItem = '<span>' . $item->name . '</span>';
$class = ' active';
echo '<li class="mod-breadcrumbsitem breadcrumb-item' . $class . '">' . $breadcrumbItem . '</li>';
endif;
endforeach; ?>
</ol>
<?php
So, just a little more guidance on this, if you please.
Thanks ...
Vic