I’m working on this page: https://abuyerschoice.com/join-dev/
I have a few popovers using the convert plugin. A video, an accordion and a contact form. They are manually activated when you click a button which calls their custom class.
My question is, when the user closes the popover box using the X in the upper right, how do can you set which area of the page they go back to? Currently it always take the user back to the top of the page on mobile.
Any suggestions?
UPDATE
I do have some custom css to help with the scrolling on mobile and I noticed the page background actually scrolls to the top while the popover is active.
.cp-modal {
overflow: scroll;
}
.cp-mp-open body, .cp-mp-open {
overflow: hidden;
}
