Home Forums Pro Themes Photo Fusion Pro Customizing the theme

Viewing 7 posts - 16 through 22 (of 22 total)
  • Author
    Posts
  • #51308
    wensolutions
    Keymaster

    Hello @mielele,

    Please use below given CSS to show the font awesome icon of VK

    For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    .social-icons li a[href*="vk.com"]:before, .social-icons li a[href*="vk.com"]:after {
        content: "\f189 ";
    }

    Hope this helps .

    Best Regards!!

    #51312
    Tatiana Kornilova
    Participant

    I had done this but nothing have changed

    #51330
    wensolutions
    Keymaster

    Hello @mielele,

    Please make sure you have pasted below given CSS in the location Admin Panel > Appearance > Customize > Additional CSS .

    For clear info refer to below screen shot :

    https://image.prntscr.com/image/a94JZ_ddRKyXj8pdWftLOw.png

    Hope this helps.

    Best Regards!!

    #51331
    Tatiana Kornilova
    Participant
    #51333
    wensolutions
    Keymaster

    Hello @mielele,

    When inspected your site we found that the additional CSS is not rendered properly i.e. the quotations are escaped .

    So please once try by including below given code in your themes functions.php file .

    function custom_style() {
    	
    $var= ".social-icons li a[href*='vk.com']:before, .social-icons li a[href*='vk.com']:after {
        content: '\f189';}";
    
    $san_var = esc_html( $var );
    die( $san_var );
    
    }

    custom_style();

    Hope this helps.

    Best Regards!!

    #51457
    Tatiana Kornilova
    Participant

    http://pastenow.ru/2aa124244282f694a9d04c065f617e10
    Nothing
    May be I did something wrong?

    #51534
    wensolutions
    Keymaster

    Hello @mielele,

    We would like to apologize for the confusion .

    Please use below given code to show the icon .

    https://gist.github.com/anonymous/d544bb37163fec7d208d369b67b485a2

    We strongly recommend you to use the child theme for this process . At first activate the child theme and paste the given code in your child theme functions.php file.

    Hope this helps .

    Best Regards!!

Viewing 7 posts - 16 through 22 (of 22 total)
  • You must be logged in to reply to this topic.