Hello! Set the buttons on the article. And confused by their appearance, they seem to be double, I send a screenshot. I mean a double letter / picture. Thank you in advance. Maybe I did something wrong? http://ovrazhnaya-4.ru/blog/?p=6 
- 2can css code be? - L. Vadim
- Can you transfer the code from a third-party site here? - Vadim Ovchinnikov
|
3 answers
In style.css code
.emm-paginate a, span { padding-left:10px; } adds padding buttons, because of what their size becomes larger and due to the repetition of the background, it "doubles". Add to css code
span.ya-share2__icon { padding: 0; } |
I propose such a solution: you have a background size smaller than the button size and in order for the background not to double, you need to set this style:
.ya-share2__icon { background-repeat: no-repeat; } |
.ya-share2__icon { background-repeat: no-repeat; background-position: 50%; } |