Hello ;
in vmGkCartProducts module i dnt see the product images.
If you want to see the problem follow the link http://www.center-net.it/i15demo/shop/cart.html
At yr. disposal for any question.
Regards
Fabrizio
teitbite wrote:Hi
Can You please give me some examples. I've just checked and I can see images in cart module just fine:
.vmGkCartProducts img {
display: none;
}
.vmGkCartProducts > div > div {
margin-left: 0;
}
.gkPopupWrap h3 {
float: left;
text-align: left;
width: 50%;
}
teitbite wrote:Hi
Actually regular VM cart doesn't have images, so no need to replace it. You can just hide images with this css:
- Code: Select all
.vmGkCartProducts img {
display: none;
}
and to make it show a little better when images are removed:
- Code: Select all
.vmGkCartProducts > div > div {
margin-left: 0;
}
.gkPopupWrap h3 {
float: left;
text-align: left;
width: 50%;
}
I think the problem with not showing images when the product has options is that module is picking up an image of a product while options has subproducts, so maybe an image of a parent will be shown. You can try that before using the above code.