Hi
You used this to change your shopping bag icon:
.shopping-bag-item a i {
background: url("http://test.freshfolds.nl/wp-content/uploads/2015/03/mand.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
display: inline-block !important;
height: 16px !important;
margin-right: 4px;
opacity: 1 !important;
vertical-align: middle;
width: 16px !important;
}
This effects the other icons
You should change it to:
.shopping-bag-item a.cart-contents i {
background: url("http://test.freshfolds.nl/wp-content/uploads/2015/03/mand.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
display: inline-block !important;
height: 16px !important;
margin-right: 4px;
opacity: 1 !important;
vertical-align: middle;
width: 16px !important;
}
– Kyle