I'm trying to enter FontAwesome icons in my WordPress template but the moment I see the template in the browser, they are not displayed
in my css I put them in the following way:
nav.sociales li a[href*="facebook.com"]::before {
content: '\f09a';
}
nav.sociales li a[href*="youtube.com"]::before {
content: '\f16a';
}
nav.sociales li a[href*="instagram.com"]::before {
content: '\f16d';
}
in my functions.php file:
wp_register_style('fotawesome', get_template_directory_uri() . 'css/font-awesome.min.css', array('normalize'), '4.7.0');
and that's how they are displayed
I gave him to inspect the element in case there was an error that he showed me in the console, but it does not mark anything, can someone tell me what my error is?
Part where the icons are displayed
<!-- Inicio Redes Sociales -->
<div class="informacion-encabezado">
<div class="redes-sociales">
<?php
$args = array(
'theme_location' => 'social-menu',
'container' => 'nav',
'container_class' => 'sociales',
'container_id' => 'sociales',
'link_before' => '<span class="sr-text">',
'link_after' => '</span>'
);
wp_nav_menu($args);
?>
</div>
<!-- Final Redes Sociales -->