We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using this gem you'll actually get two dividers:
One is inserted by this gem as <span class="divider ">/</span> And another one is defined by bootstrap for breadcrumb class:
<span class="divider ">/</span>
breadcrumb
.breadcrumb > li + li::before { ... content: "/ "; ... }
A simple workaround is <%= render_breadcrumbs('') %> that just generates empty dividers <span class="divider "></span>
<%= render_breadcrumbs('') %>
<span class="divider "></span>
But I think there should be a way to render breadcrumbs without dividers at all.
The text was updated successfully, but these errors were encountered:
Merge pull request #883 from anatoly-cmdx/master
b07dac5
refs #882, Breadcrumb without dividers
No branches or pull requests
When using this gem you'll actually get two dividers:
One is inserted by this gem as
<span class="divider ">/</span>
And another one is defined by bootstrap for
breadcrumb
class:A simple workaround is
<%= render_breadcrumbs('') %>
that just generates empty dividers<span class="divider "></span>
But I think there should be a way to render breadcrumbs without dividers at all.
The text was updated successfully, but these errors were encountered: