Reputation: 909
https://blendbee.com/shop/black-tea-blends/minty-black/
If you click any of the "Add to Cart" buttons for either Sample, 1/4 Lb, 1/2 Lb, a message appears at the top saying that the product was successfully added to the cart.
But the blue "View Cart" button in the message does nothing in Android Chrome on my Samsung Galaxy S5. It works fine in Windows 8 Chrome though.
I viewed the HTML source on each device and in Windows I can see:
<div class="woocommerce-message"><a href="https://blendbee.com/cart/" class="button wc-forward">View Cart</a> "Minty Black" was successfully added to your cart.</div>
But in Android I can't see that HTML in the source, although the button is visible in the browser.
This is a strange one...any ideas?
Upvotes: 0
Views: 210
Reputation: 909
This CSS did the trick:
@media screen and (max-width: 767px) {
#shop-sidebar {clear:both}
}
Upvotes: 1