My FontAwesome facebook icon is not showing after X update. Ive gone from X v01 to v10 so it a big jump. As you can see below on the right hand side the facebook icon is visible, this is version 1
After the update the icon is just an X in a box, this is version 10. This menu item is controlled by the facebook-icon class and is associated to the menu item like this:The Global CSS file references this class thus:
.x-navbar .desktop .x-nav li>a>span:after {
content: "\f107";
font-size: 0.9em;
}
.facebook-icon a:before {
content: "\f09a";
display: inline-block;
font-family: "FontAwesome";
font-style: normal;
font-weight: normal;
text-decoration: inherit;
text-rendering: auto;
font-size: 22px;
text-align: center;
padding-right: 10px;
}
.desktop .menu-item.facebook-icon {
position: absolute;
right: 30px;
top: 0;
}
.x-navbar .desktop .x-nav > li.facebook-icon > a {
color: #009cbe;
}
.x-navbar .desktop .x-nav > li.facebook-icon > a:hover {
color: #7ac05f;
}
.x-navbar .desktop .x-nav > li.facebook-icon > a:hover:before {
border-color: #7ac05f;
}
.facebook-icon a:before {
border: 1px solid #009cbe;
border-radius: 50%;
height: 36px;
width: 36px;
padding: 8px;
text-align: center;
}
.desktop .menu-item.facebook-icon span{
display: none;
}
Notably the menu dropdown icon, content:"\f107" above works correctly (this got changed in the update) so it looks like its finding the FontAwesome icons. There are no instances of “data-x-icon” in the website.
I’m not quite sure how to proceed now because I cant fine a solution online that references the facebook-icon class specifically.
Any ideas
Cheers
Paul