Hi, currently on mobile my add to cart button in the single product is displayed as a sticky bar.
How do I make it a classic button?
Hello @Armando_Fiore
We don’t have that option. However, you can fix it with the following CSS snippet:
@media (max-width: 575px) {
.singular-shop #shop-now:after {
display: none;
}
#shop-now.has-buy-now .tbay-buy-now.button {
position: relative;
bottom: auto;
width: 100%;
right: auto;
left: auto;
}
#shop-now.has-buy-now .single_add_to_cart_button {
width: 100%;
position: relative;
right: auto;
left: auto;
bottom: auto;
margin-top: 15px;
margin-bottom: 15px;
}
}