Question

I have a navbar in a rails app using glyphicons. I can't seem to set the spacing between the glyph and the link label unless I put a " " in front of the label.

enter image description here

Can anyone suggest a better solution. Thanks!

    <li>
      <%= link_to "Maintenance", dashboards_path, :class=> "glyphicon glyphicon-wrench" %>
    </li>
Was it helpful?

Solution

If you have tag and content in a single line it produces no padding. Make sure you anchor looks something like:

<li>
  <a href="#" class="glyphicon glyphicon-wrench">
    Maintenance
  </a>
</li>

Or using link_to

<li>
  <%= link_to dashboards_path, class: 'glyphicon glyphicon-wrench' do %>
    <span>Maintenance</span>
  <% end %>
</li>

Though it seems strange but

<a href="#" class="glyphicon glyphicon-wrench">Maintenance</a>

produces no spaces between icon and text

bootply

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top