MyBB Community Forums

Full Version: Forum Icons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everybody,
i can't find a plugin to change the Icons from my Forums and Underforums thats compatible with myBB 1.8.
you mean these: http://community.mybb.com/images/forum_icon_sprite.png and http://community.mybb.com/images/mini_status_sprite.png


you can either create a sprite image with same name and file format and replace it with the default one.. or change the css from global.css

if you dont know how to create a sprite, you can use a online generator like http://spritegen.website-performance.org/

if you want to do the css way then first remove the background-image from .forum_status and .subforumicon and then add individual images....

.forum_status {
	background: url(images/forum_icon_sprite.png) no-repeat 0 0; //REMOVE THIS//
}

.forum_on {
	background-image: url(images/your image path.png); //ADD THIS//
}



Also have a look at this thread.....