Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
.XenBase .p-pageWrapper a[data-nav-id="xfmg"]:before {
content: "\f03d";
}
Tried this on flat awesome for mine but didnt work, tried 2.You need to inspect the navigation item using your browser inspect.
View attachment 9712
Look for that bit, and then you'll need to add something like this in extra.less:
Code:.XenBase .p-pageWrapper a[data-nav-id="xfmg"]:before { content: "\f03d"; }{/code] Full list here: https://fontawesome.com/cheatsheet Let me know if you need any further help.
/* Navigation Icons */
.XenBase .p-pageWrapper a data-nav-id="live_cams" :before {
content: "\f03d";
}
/****/
/* Navigation Icons */
.XenBase .p-pageWrapper a [data-nav-id="live_cams"] :before {
content: "\f03d";
}
/****/
Still nothing.
/* Navigation Icons */
a[data-nav-id="live_cams"]:before { content: "\f03d";}
/****/
Still nothing.
/* Navigation Icons */
a [data-nav-id="Live_Cams"]:before { content: "\f03d";}
/****/
If i remove the space it will place the favicon code infront of my nav tekst.Try removing the space between the a and the [.
Code:a[data-nav-id="Live_Cams"]:before { content: "\f03d";}
Past that it could be a problem with your class name.