-1

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/

halfer
  • 19,824
  • 17
  • 99
  • 186
  • Would you add into your question an example of what doesn't work that does not involve an external link? The problem with pointing to the live site is that once you have fixed it, the question won't make a lot of sense to new readers. – halfer Jun 01 '16 at 11:08
  • When you add some product to the cart and then you consult the cart is always emplty. this is the problem. – Rania Khlif Jun 02 '16 at 08:08
  • What mobile device are you using? Does the same happen with a device emulator? – halfer Jun 02 '16 at 08:17
  • I'm using samsung and iphone. – Rania Khlif Jun 02 '16 at 09:05

1 Answers1

0

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;
}
Noman
  • 4,088
  • 1
  • 21
  • 36