Makneto if they are anything like the older version go into your theme, Active Preset, and then go to Custom CSS in the dropdown menu
.icon-basket - Default Basket Icon when Basket is Empty
.icon-basket.filled - Icon when Basket has items in it.
.icon-user - Users Icon next to My Account
Make sure you go to the File Editor, CSS/glyphs.css and delete the
.icon-basket
.icon-user
from the glyphs.css file or you will have 2 icons showing.
.icon-basket {
background: url(../images/cart_before.png) no-repeat;
;
margin-right: -4px;
width: 36px;
height: 24px;
}
.icon-basket.filled {
background: url(../images/cart_after.png) no-repeat;
;
margin-right: -4px;
width: 36px;
height: 24px;
}
.icon-user {
background: url(../images/user.png) no-repeat;
;
margin-right: -5px;
width: 36px;
height: 24px;
}