Skip to content

Commit

Permalink
Remove class="active" from non-menu item
Browse files Browse the repository at this point in the history
Removed the class="active" from line 17 which is text.  In the standard Joomla! install it says "you are here".  This should not be active, only the menu item for the page you are on should be active.  You can see an example here: http://eoindemo.demojoomla.com/index.php/bread-crumbs-content

Issue posted here: joomla#8593 (comment)

Protostar needs to be updated with this CSS 

.breadcrumb > li {
    color: joomla#999;
}

I am doing this seperately
  • Loading branch information
uglyeoin committed Jan 18, 2016
1 parent c8f9660 commit 21dba53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/mod_breadcrumbs/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<ul itemscope itemtype="https://schema.org/BreadcrumbList" class="breadcrumb<?php echo $moduleclass_sfx; ?>">
<?php if ($params->get('showHere', 1)) : ?>
<li class="active">
<li>
<?php echo JText::_('MOD_BREADCRUMBS_HERE'); ?>&#160;
</li>
<?php else : ?>
Expand Down

0 comments on commit 21dba53

Please sign in to comment.