rdsoze
rdsoze

Reputation: 1768

Change image of Facebook Send Button

Is it possible to change the image of the facebook send button? I want my own image with the same functionality.

Upvotes: 2

Views: 1021

Answers (2)

suga_shane
suga_shane

Reputation: 694

You can if you give your link/image an id, and then use jquery/javascript to call the Facebook send dialog when it's clicked.

$(function () {
    $("#LINK_ID").click(function() {
        FB.ui({
            method: 'send',
            display: ...,
            name: ...,
            link: ...,
            redirect_uri: ...,
        })
    };

    ...
})

Upvotes: 3

Colm Doyle
Colm Doyle

Reputation: 3858

No, it's not possible to have that level of customisation on a Social Plugin.

Upvotes: 0

Related Questions