A
A
Alexander Zhigunov2016-08-13 13:04:44
css
Alexander Zhigunov, 2016-08-13 13:04:44

Who met unicode picture for VK?

There is a site WP template purchased on templatemonster, it has a style sheet for inserting social network icons

.social-list .social-list__items li > a[href*="codepen.io"]::before {
  content: '\f1cb';
}
.social-list .social-list__items li > a[href*="dropbox.com"]::before {
  content: '\f16b';
}
.social-list .social-list__items li > a[href*="facebook.com"]::before {
  content: '\f09a';
}
.social-list .social-list__items li > a[href*="youtube.com"]::before {
  content: '\f167';
}

I don’t understand where and how to insert an icon for VK =(. Now I put a stub of the view
.social-list .social-list__items li > a[href*="vk.com"]::before {
  content: 'VK';
}

Help to find a normal picture that matches the overall style of the project. For clarity, the site itself reshoevn8r.ru

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Anatoliy Lyovkin, 2016-08-13
@id_zhigunov

fontawesome.io/icon/vk
Your site head
unicode icons vk: f189
total we get

.social-list .social-list__items li > a[href*="vk.com"]::before {
  content: '\f189';
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question