Group Box with Icon

0
How to add glyph icons in the group box title.?
asked
1 answers
2

Try this

Give your group box a class e.g. group-image

Add some css in main.scss

.group-image > .mx-groupbox-header::before {

    font-family: 'Glyphicons Halflings';

    content:"\e002 ";

    color: green;

}

Find codes for glyphs here: https://glyphicons.bootstrapcheatsheets.com/#

answered