[Resolved] Sticky add to cart change

Home Forums Support [Resolved] Sticky add to cart change

Home Forums Support Sticky add to cart change

  • This topic has 3 replies, 2 voices, and was last updated 5 years ago by Tom.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #878244
    Pedro

    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!

    #878280
    Tom
    Lead Developer
    Lead Developer

    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%);
        }
    }
    #878289
    Pedro

    Hello Tom!

    It worked perfect! Many thanks

    #879251
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.