Single icons
CSS sprite icons
CSS
Don't forget to add the CSS which set the background image:
.icon {
background: url(../ident/icons/icons.png) no-repeat top left;
}
If you are using the HTML code in the site demo's which makes use of the CSS Sprites remember to add the following CSS
ul{
list-style-image: none;
list-style-position: outside;
list-style-type: none;
margin: 0, auto;
padding: 0;
}
.profile-list .icon{
width: 16px;
height: 16px;
float: left;
margin: 0.1em 0 0.1em 0;
}
.icon-label{
float: left;
margin-left: 0.4em;
}