• Resolved jun1252

    (@jun1252)


    Hi, I have an issue and would greatly appreciate any help. On my product page of my website, when hovering over a product the “add to cart” button floats up. It worked great before but suddenly started floating. Is there a way I can make this button sticky? Thank you.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Senff – a11n

    (@senff)

    Hey @jun1252

    You can fix this with a little bit of custom CSS code.

    Go into your site’s admin Dashboard and select Appearance → Customize → Additional CSS. In the CSS textbox on the left, add the following code:

    .beshop-poroduct.style2 a.button, .beshop-poroduct.style2 a.add_to_cart_button, .beshop-poroduct.style2 a.added_to_cart {
      position: initial;
    }

    Select “Save Changes” from the top, and your changes will be applied to your site.

    If you want the button to be visible at all times, use this code instead:

    .beshop-poroduct.style2 a.button, .beshop-poroduct.style2 a.add_to_cart_button, .beshop-poroduct.style2 a.added_to_cart {
      position: initial;
      visibility: visible;
    }
    Thread Starter jun1252

    (@jun1252)

    Hey @senff

    That worked great, thank you!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Floating Add to cart button’ is closed to new replies.