Hidden basket when empty – custom position
-
Hi, I encounter a slightly annoying issue with your plugin since recently, or I didn’t notice it.
When the cart is empty or the user not logged in You’ve set a rule to hide it and move it 150px on Y axe. Unfortunately this interferes with my mobile version. Since I moved it slightly up, it goes over my bottom menu button.
I tried to add this CSS :
#xt_woofc .xt_woofc-inner {
opacity: 1 !important;
transform: scale(1) !important;
}
to unset this one :
.xt_woofc .xt_woofc-empty.xt_woofc-pos-bottom-right:not(.xt_woofc-force-visible):not(.xt_woofc-cart-open) .xt_woofc-inner,
.xt_woofc .xt_woofc-empty.xt_woofc-pos-bottom-left:not(.xt_woofc-force-visible):not(.xt_woofc-cart-open) .xt_woofc-inner */ {
transform: translateY(150px);
opacity: 0;
}But I don’t understand why my code is just not loaded at all !? It looks that your JS or so is avoiding any override.
Is there any way to override this style OR could you please change the valu from 150 to 250 or more for example ?
Regards.
- The topic ‘Hidden basket when empty – custom position’ is closed to new replies.