My 'add to cart' is not working on mobile. When I open my site in my pc, add to cart work fine, but when I open it in my mobile it's not working.
I am using opencart 2.0.0.0. My site is http://www.webfrance.design/
My 'add to cart' is not working on mobile. When I open my site in my pc, add to cart work fine, but when I open it in my mobile it's not working.
I am using opencart 2.0.0.0. My site is http://www.webfrance.design/
Add to cart is working although your button get hidden
by CSS
Change Below media query from below css file : Line no: 61
http://www.webfrance.design/catalog/view/theme/default/stylesheet/stylesheet.css
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
display: inline;
}
To
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
display: inline-block !important;
}