- Moderator
- 1044
New Bug: When clicking on the buy button when you hover over the product thumbnail, the grey spinning "circle" image that pops up showing the site is working, is displayed behind the product thumbnail images.
It happens on your demo site as well.
It happens on your demo site as well.
Hi Thomas,
Thank you for your feedback!
We have fixed that issue. You can easily integrate the fix manually on your site so that you do not need to update the theme itself. Just open the Plugins\SevenSpikes.Nop.Plugins.AjaxCart\Styles\common.css file and edit is as shown below:
line 246:
.nopAjaxCartPanelAjaxBusy, .miniProductDetailsPanelAjaxBusy {
position: absolute;
z-index: 1003;
width: auto;
height: auto;
background: url('images/loader.gif') no-repeat fixed 50% 50%;
opacity: 0.7;
/*filter: Alpha(opacity = 70);*/
}
The number in bold is the changed one!
Thanks again!