Archived topic
Whatsapp button chat right side
6 replies · Started by Giovanni on August 25, 2022
Hi all,
I followed the guide I found here on the forum but I can't get the result I want.
I want the button to be positioned at the right corner of the screen at the bottom and must always follow the movement of the scroll.
Instead it is now fixed at the top.
How can I do?

Hi there,
Any chance you can link us to the site in question?
You can use the private information field.
https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Let me know :)
Image setup



1. You need to add the sticky-social-icons class to the button block.
https://wordpress.com/support/wordpress-editor/adding-additional-css-classes-to-blocks/
2. There should be a . before the class name in your CSS, so it would be:
.sticky-social-icons {
position: fixed;
right:20px;
bottom:20px;
}
Thank you Ying !!!
No problem :)