MyBB Community Forums

Full Version: Darkness theme icons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Anyone know how i cand change the icons from category and forumĀ  from this theme :
https://community.mybb.com/mods.php?acti...w&pid=1171
forum-icons.css
.forum-icon_2 i::before {
	content: "\f233";
}

.forum-icon_4 i::before {
	content: "\f641";
}

.forum-icon_5 i::before {
	content: "\f13d";
}

.forum-icon_8 i::before {
	content: "\f1b9";
}

.forum-icon_7 i::before {
	content: "\f0d1";
}

		
category icons .css
.cat-icon.cat-icon_1::before {
	content: "\f11b";
}

.cat-icon.cat-icon_6::before {
	content: "\f004";
}
This theme uses an Icon Font. So you need to know the characters/icons of this font and change the "content".

Each "/fxxxx" is a Unicode descriptor that represents a character/icon of the font.
First get to know the Font and charset (icons) and then replace the CSS content value to your desired icon.

When this theme uses Font Awesome, go here to find all Icon-Characters with Unicode values:
https://fontawesome.com/icons?d=gallery

[ExiTuS]
i'm sorry but i'm very confused Toungue
how i get to the Font and charset (icons) and then replace the CSS content value to your desired icon ? Smile)
check if this cheatsheet helps => Link

remove first 3 characters (&#x) from the code given next to icon & use it