How can I show the text "Pinterest" instead of the pinit button using the AddThis plugin

Pinterest direct text is not displayed, not the pinit button, but text on facebook and Twitter is displayed. Pinterest text is not displayed.

here is my code:

<div class="addthis_toolbox addthis_default_style addthis_32x32_style">
<a class="addthis_button_facebook">Facebook</a>
<a class="addthis_button_twitter">Twitter</a>
**<a class="addthis_button_pinterest_pinit">Pinterest</a>**

+4
source share
1 answer

You can try to find the image of the pintrest button you are looking for and just overwrite the current image with the css rule.

.addthis_button_pinterest_pinit {

    background-image: url('path/to/new/image.png') !important;/*make sure you have !important!*/

    background-size: contain;

}
0
source

Source: https://habr.com/ru/post/1538009/


All Articles