Hi there I would like some help on how to create a facebook share button , I need a step by step help beacuse it’s the first time i try to create something like that and i’m totally new to that !
I already read some article in the forums about and also the “How to dynamically embed Twitter share buttons with Webflow CMS” but I’din’t understand it . So I would like to help me from scrach if that is possible
If you want to have a custom share button for twitter, all you need is to make a link block with the class and design you want, then make an html embed with this code:
`<a class="put your class here" href="https://twitter.com/intent/tweet?" target="_blank" title="Tweet" onclick="window.open('https://twitter.com/intent/tweet?text=%20Here goes text of your tweet ' + encodeURIComponent(document.title) + ':%20 ' + encodeURIComponent(document.URL)); return false;"></a>`
Then where it say’s put your class here just add the class name of that link block.
Also it says Here goes the text of your tweet, you should probably change that too.