Button gets loaded before the page

0
Hi, I have a button with ‘position fixed’ css. The button is getting rendered before the page gets loaded. While performing the on click action itself,  the button can be viewed in the current page. Can someone suggest a solution for this issue. ThankYou
asked
1 answers
2

Page elements are loaded offscreen in an .mx-incubator. But position: fixed elements don’t care about being offscreen, so they will already show on your page either way. I use the following css snippet to prevent that from happening:

    .mx-incubator {
        .yourbuttonclass {
            display: none;
        }
    }

 

answered