Site logo

[Resolved] Customize button to make it floating on the right bottom of screen

Home Forums Support [Resolved] Customize button to make it floating on the right bottom of screen

Home Forums Support Customize button to make it floating on the right bottom of screen

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #2397574
    Willya

    Hi there,

    I follow this tutorial to create WhatsApp button on my site: https://www.youtube.com/watch?v=q9YyXSBpRR0
    But, I want to make it floating on the right bottom of screen and display it on all devices including mobile.

    This is the CSS I use so far:

    .sticky-social-icons {
        position: fixed;
        left:0;
        top: 30%;
    }
    #2397645
    Fernando
    Customer Support

    Hi Willya,

    Try replacing the code you have with this:

    .sticky-social-icons {
        position: fixed;
        right:0;
        top: 30%;
    }
    #2397650
    Willya

    Hi Fernando,

    I want to position it at the bottom right of the screen. I have share you the screenshoot (in private information) so that you can understand what I mean.

    #2397652
    Fernando
    Customer Support

    I see. Try this instead:

    .sticky-social-icons {
        position: fixed;
        right:0;
        bottom: 20px;
    }
    #2397654
    Willya

    As always. Thank you, Fernando.

    #2397690
    Fernando
    Customer Support

    You’re welcome Willya!

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