MyBB Community Forums

Full Version: Help me
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello

Problem 1 :

I would like to put my own icons for: this forum contains no new message, this forum is locked... instead of those by default the problem, its that they are all in a single image, and I would put a php and css code to make it as a single image, so what code and or put it?

It's like his: http://img11.hostingpics.net/pics/577228491.png


I would like to her either as his: http://img11.hostingpics.net/pics/297090332.png

Problem 2 :

I would like on this white bar his poster the under category and category when we go on, I want to know the code that I need.

This white bar I want his poster top categories and subcategories as below: http://img11.hostingpics.net/pics/448368733.png

Like this: http://img11.hostingpics.net/pics/393077514.png

Thanks you !

Help me.
For the forum icons use this code.

Themes > Your theme > Global.css


.forum_status {
display: inline-block;
}

.forum_on {
	background: url(images/yourtheme/on.png) no-repeat 0 0;
	width: 45px;
	height: 43px;
}

.forum_off {
	background: url(images/yourtheme/off.png) no-repeat 0 0;
	width: 45px;
	height: 43px;
}

.forum_offlock {
	background: url(images/yourtheme/lock.png) no-repeat 0 0;
	width: 45px;
	height: 43px;
}

.forum_offlink {
	background: url(images/yourtheme/redirect.png) no-repeat 0 0;
	width: 45px;
	height: 43px;
}



Is the white bar for your breadcrumb? Just add a background colour onto your navigation in Global.css