1

Trying to put the span class in the class="dropdown-toggle" so the icon shows more to left and becomes bigger.

Hos it looks now:

enter image description here

Code:

  <a  href="#" class="dropdown-toggle" data-toggle="dropdown"><span class="glyphicon glyphicon-ok"></span>  Vakt <b class="caret"></b></a>
user3270211
  • 915
  • 4
  • 20
  • 42

3 Answers3

1

You can add padding to the right of the span:

.dropdown-toggle .glyphicon.glyphicon-ok {
padding-right:30px;
}

I'm not sure how to make it larger.

Here is another post about making the glyphs bigger Bigger Glyphicons

Community
  • 1
  • 1
DD0UG
  • 144
  • 6
1

You can try this:

Demo

.dropdown-toggle
 { 
  background:#eee; 
  color:#000; 
  text-decoration:none; 
  padding:15px 10px 15px 40px; 
  display:inline-block;
 }
.glyphicon-ok{display:inline-block; padding-right:10px;}
Pradeep Pansari
  • 1,287
  • 6
  • 10
1

To make it bigger can't you just increase height and width?

    <span class="glyphicon glyphicon-ok" style="width:150%; height:150%"></span> 
DivineChef
  • 1,211
  • 1
  • 10
  • 27