Doubt about HTML, changing wordpress template

1

I have some doubts that I am not able to resolve in my page . At the bottom where the social icons, there are squares instead of facebook icons, instagram, etc ..., instead on this other page yes you can see all of them.

I imagined that it is a problem of forwarding, but looking in the database I have not found anything related to the name of the element fa fa-facebook , fa fa-instagram , etc ... so I have chosen to enter the code and try to change it, but the truth is that I do not have too much idea.

The code of the footer in question is this: link and the corresponding piece of code is:

 /* facebook */
 if( !empty($zerif_socials_facebook) ):
   echo '<li><a'.$attribut_new_tab.' href="'.esc_url($zerif_socials_facebook).'"><span class="sr-only">' . __( 'Go to Facebook', 'zerif-lite' ) . '</span> <i class="fa fa-facebook"></i></a></li>';
 endif;

I tried to insert the image with src , but I have not achieved it and I do not know how to save it, I guess the i class , is what the image indicates, but I have no way of locating it.

I need help to display my icons on my page as they do in the other example.

    
asked by romanturbo 06.11.2016 в 13:57
source

1 answer

0

The icons come from the fontawesome font. On the page that works, the source is being taken from this URL:

http://www.meganfc.net/wp-content/themes/zerif-lite/fonts/fontawesome-webfont.woff2?v=4.6.3

It is common to use fontawesome font for icons. Here I leave the link to use the facebook.

link

Check that you are loading the source from your page. He does not let me access it so I can not verify it myself.

    
answered by 05.12.2016 / 15:27
source