Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Twitter bootstrap bigger glyphicons.

Is there a way to use the twitter bootstrap and adjust there size to be bigger ? I have tried this so far with no luck. glyphicon.myclass {height: 100px; width: 100px;}

Thank you.

like image 868
Petran Avatar asked Feb 15 '23 11:02

Petran


1 Answers

If it's Bootstrap 3, then try increasing the font-size if it applies to the element. Example below.

glyphicon.myclass {
    font-size: 1.4em;
}
like image 146
Shiva Avatar answered Feb 24 '23 00:02

Shiva