Archived topic
Sticky add to cart change
3 replies · Started by Pedro on April 24, 2019
Viewing posts 1–4 of 4
Hello! I would like the sticky add to cart of the product page to be displayed at the top (mobile version)
How can I do it?
Thank you!
Hi there,
Try this CSS:
@media (max-width: 768px) {
.add-to-cart-panel {
bottom: auto;
top: 0;
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
transform: translateY(-100%);
}
}
Hello Tom!
It worked perfect! Many thanks
You're welcome :)
This archived topic is closed to new replies.