0

I use Font Awesome and 4/5 icons are show correct, but last one (stackoverflow icon, does not show):

HTML:

<ul>
  <li><a href="#"><i class="xcon-facebook"></i></a></li>
  <li><a href="#"><i class="xcon-twitter"></i></a></li>
  <li><a href="#"><i class="xcon-linkedin"></i></a></li>
  <li><a href="#"><i class="xcon-instagram"></i></a></li>
  <li><a href="#"><i class="xcon-stackoverflow"></i></a></li>
</ul>

CSS:

.xcon-facebook:before { content: '\f09a'; } /* '' */
.xcon-twitter:before { content: '\f099'; } /* '' */ 
.xcon-linkedin:before { content: '\f0e1'; } /* '' */
.xcon-instagram:before { content: '\f16d'; } /* '' */
.xcon-stackoverflow:before { content: '\f16c'; } /* '' */

How they look:

here

So i tried to change this line, like this:

.xcon-stackoverflow:before { content: '\f16c'; font-family: 'Font Awesome 5 Free';} /* '' */ 

Without change.

2 Answers2

1

stack-overflow belongs to "Brands icons" so you need to include the right font-family:

.icon::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.foo::before {
  /* won't work */
  font-family: "Font Awesome 5 Free"; content: "\f16c";
}

.bar::before {
  /* works */
  font-family: "Font Awesome 5 Brands"; content: "\f16c";
}
<link href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" rel="stylesheet"/>
<nav>
  <ul>
    <li><span class="icon foo"></span></li>
    <li><span class="icon bar"></span></li>
  </ul>
</nav>
Vucko
  • 20,555
  • 10
  • 56
  • 107
0

Use Brands instead of Free

To set them in one line(as in image) use display:flex;

.xcon-facebook:before { content: '\f09a'; font-family: 'Font Awesome 5 Brands'; }
.xcon-twitter:before { content: '\f099'; font-family: 'Font Awesome 5 Brands'; } 
.xcon-linkedin:before { content: '\f0e1';  font-family: 'Font Awesome 5 Brands'; }
.xcon-instagram:before { content: '\f16d'; font-family: 'Font Awesome 5 Brands'; } 
.xcon-stackoverflow:before { content: '\f16c'; font-family: 'Font Awesome 5 Brands'; } 
ul{
display:flex;
 list-style: none;
}
li{
padding:5px;
}
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<ul>
  <li><a href="#"><i class="xcon-facebook"></i></a></li>
  <li><a href="#"><i class="xcon-twitter"></i></a></li>
  <li><a href="#"><i class="xcon-linkedin"></i></a></li>
  <li><a href="#"><i class="xcon-instagram"></i></a></li>
  <li><a href="#"><i class="xcon-stackoverflow"></i></a></li>
</ul>
NoobTW
  • 2,466
  • 2
  • 24
  • 42
לבני מלכה
  • 15,925
  • 2
  • 23
  • 47