Hi,
1. I think that you'll probably find a solution through this
thread
:
You'll just have to :
- Go to "Hikashop->Display->Views"
- Edit the "Cart" file of the "Product" view of your front-end template
- Change this line :
$emptyText =JText::_('CART_EMPTY');
By :
$emptyText = '<img src="YourImgLink" alt="cart empty" height="42" width="42">'.JText::_('CART_EMPTY');
Note that you'll have to replace the YourImgLink text by the link to your image.
2. You'll also have to edit the code of your
cart file or your
product view to do that
.
3.You'll probably find a solution through this
thread
:
Ok, If you want to apply your code through the add to cart button I think that you should probably use this CSS class :
.btn.button.hikashop_cart_input_button.art-button {
}
Also If your code don't seems to be applied; you can for example "force it" by changing this kind of property :.btn.button.hikashop_cart_input_button.art-button {
background-image:url(../images/button.jpg);
}
Like this :.btn.button.hikashop_cart_input_button.art-button {
background-image:url(../images/button.jpg) !important;
}