Thalatta
Thalatta

Reputation: 4578

Bootstrap: glyphicon-triangle-bottom not displaying

I have a a simple instance of the bootstrap glyphicon-triangle-bottom Placed in my rails view which I cannot get to display. It was working with a different glyphicon but not with this one.

#who_we_are  
  .text#who_text
    =link_to(who_we_are_path) do 
      %h2
        =t 'who_we_are_header'
      %p
        =t 'who_we_are'
      .glyphicon.glyphicon-triangle-bottom

Upvotes: 2

Views: 5103

Answers (1)

dyaa
dyaa

Reputation: 1450

The Bootstrap glyphicon-triangle-bottom is available in the Version 3.3.3.

Upvotes: 11

Related Questions