'Google Blogspot (post-share-buttons) social media removed

There is a share button on my blog I would like to remove all social media and leave only functional (link).

I can edit the HTML, but I can't find the code I need :-(

`https://pastebin.com/raw/6Ef8WigQ`

My blog

I want to remove

Thx help me.



Solution 1:[1]

If what you want is something like: https://skeleton08.blogspot.com/

Add the following to the CSS section or make those sections passive from the theme layout section.

CSS solution:

/* your other CSS */

.post-share-buttons, .post-header, .snippet-thumbnail, .snippet-container, .post-bottom {
    display: none;
}

or if you want a simple template like: https://skeleton001.blogspot.com/

enter image description here

template code: https://pastebin.pl/view/f12d550a

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1