FontAwesome is no more working
-
I have used FontAwesome for search box but it is not working anymore. My css is as follows.
/* Add a magnifying glass in front of search box*/
.my-nav-menu-search .search-form:before {
font-family: ‘FontAwesome’;
content: ‘\f002’;
position: absolute;
font-size: 19px;
font-weight: normal;
top: 5px;
left: 5px;
}I read about FontAwesome version upgrade and perhaps I need to add following code at somewhere. I am not sure where should I add.
<head>
<!–core first + styles last–>
<link href=”/static/fontawesome/fontawesome.css” rel=”stylesheet”>
<link href=”/static/fontawesome/fa-brands.css” rel=”stylesheet”>
<link href=”/static/fontawesome/fa-regular.css” rel=”stylesheet”>
<link href=”/static/fontawesome/fa-solid.css” rel=”stylesheet”>
</head>
<body>
<!–user icon in two different styles–>
<i class=”fas fa-user”></i>
<i class=”far fa-user”></i>
<!–brand icon–>
<i class=”fab fa-github-square”></i>
</body>The page I need help with: [log in to see the link]
- The topic ‘FontAwesome is no more working’ is closed to new replies.