MyBB Community Forums

Full Version: Where do i find this icon?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

Where can i find this image so i can change it to white in photoshop?

Thanks
It will be inside you theme folder in FTP with the name forum_icon_sprite.png
Example -
FTP/images/THEME_IMAGES_FOLDER/forum_icon_sprite.png

Regards
WallBB
font awesome icons are used through global.css stylesheet of the theme
.forum_on {
color: #3e3e3e;
}

.forum_off, .forum_offlock, .forum_offlink {
color: #333;
}

.forum_off i {
opacity: .4;
}

color & opacity can be changed as required
See the forumbit_depth2_forumforumbit_depth2_cat templates in ACP, under the theme's templateset -> forumbit templates.

Look for this:

<i class="fa fa-gamepad"></i>

Also see this tutorial on how to change them:

 http://community.mybb.com/thread-156711.html
Ah so i can't change the color of it to white then?
Quote:color & opacity can be changed as required
(color codes | css opacity)
Is it not white already on that black background? In any case you can change the colour to anything you like

<i style="color:#fff" class="fa fa-gamepad"></i>
ah ha! Thanks a lot Ashley.