(2016-10-14, 01:43 AM)Starnova Wrote: I have one question though why are all the forum font awesome icons the same but one? One of them is like a glass.
Http://www.ebook-mecca.com
Because it is telling you to buy me a drink..., lol!


Really it is because of this included for further modification by the user:
For example the wine glass you are asking about:
f000
In global.css
.ficons_2 i:before {
content: "\f000";
}
.ficons_3 i:before {
content: "\f1ba";
}
.ficons_4 i:before {
content: "\f0f5";
}
.ficons_6 i:before {
content: "\f0e4";
}
.ficons_7 i:before {
content: "\f03e";
}
The only parts of this you'll want to change are the numbers and the icons. To find the number of a forum, when editing one in Forum Management, just look in the address bar for &fid=, whatever number follows that is the number to use in the CSS selector.
Finding New Icons
If you're using Google Chrome you can go here http://fortawesome.github.io/Font-Awesome/icons/ and right click > inspect element. Then expand the <i> tag and click the ::before element, which should show the icon in the right sidebar.
Note: if you don't want to use this feature just change as follows:
.ficons_2 i:before {
content: "\f086";
}
.ficons_3 i:before {
content: "\f086";
}
.ficons_4 i:before {
content: "\f086";
}
.ficons_5 i:before {
content: "\f086";
}
.ficons_6 i:before {
content: "\f086";
}
.ficons_7 i:before {
content: "\f086";
}