How to spacing between the glyphicon and text with Bootstrap

1 Answer

0 votes

1. Add your own css file: style.css

2. Write .glyphicon:before { margin-right: 5px; } in your css file: style.css

3 Include your css file: style.css after bootstrap.css

 

<!-- HTML or PHP file -->

<link href="bootstrap-3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
/* style.css */

.glyphicon:before { margin-right: 5px; }

 



answered Jul 31, 2016 by avibootz

Related questions

1 answer 218 views
3 answers 310 views
2 answers 472 views
1 answer 294 views
...