Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to reduce the thickness of default bootstrap icon glyphicon glyphicon-chevron-right?

I try the icon glyphicon glyphicon-chevron-right for showing the direction in my design but I need some thin than default size. So how to reduce the thickness of default bootstrap icon of glyphicon glyphicon-chevron-right My code was:-

  <div style="color:#FFF;">
       <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
  </div>
like image 818
Pawan Dongol Avatar asked Nov 26 '15 06:11

Pawan Dongol


2 Answers

The current bootstrap has more icons including a thinner arrow called glyphicon-menu-right.

You could always look for an alternative icon font. There are literally dozens out there - some for free. Or hire someone to create the icons you need. Or do it yourself, for example with FontForge.

like image 62
RoToRa Avatar answered Oct 05 '22 23:10

RoToRa


You can alter css of all bootstrap glyphicons very easily. Like in this case font-size and font-weight of classes .glyphicon & .glyphicon-chevron-right can be reduced to your desired size

like image 28
Adil Avatar answered Oct 06 '22 00:10

Adil