MyBB Community Forums

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

I have a problem with the forum icons, actually it looks like this

[Image: axEwhzf.png]

But if you see, it's a bit bugged because it repeats itself or idk.

I want to it looks like this

[Image: pnsse4Z.png]

CSS

.forum_status {
	height: 30px;
	width: 30px;
	display: inline-block;
}

.forum_on {
	background-position: 0 0;
	background-image: url(images/on.gif);
}

.forum_off {
	background-position: 0 -30px;
	background-image: url(images/off.gif);
}

.forum_offlock {
	background-position: 0 -60px;
	background-image: url(images/offlock.gif);
}

.forum_offlink {
	background-position: 0 -90px;
	background-image: url(images/offlock.gif);
}

I don't know what happens :noh:

Also

[Image: qKtE8Gy.png]

It should be like

[Image: LMGQTkv.png]

PS: The theme is the default MyBB 1.8.

Forum: http://www.bitkoin.cl/
Change "forum_status" class, use this:

.forum_status {
    height: 32px;
    width: 32px;
    display: inline-block;
}
(2015-04-24, 01:54 AM)eNvy Wrote: [ -> ]Change "forum_status" class, use this:

.forum_status {
    height: 32px;
    width: 32px;
    display: inline-block;
}

It worked, thank you so much eNvy.
(2015-04-24, 02:22 AM)Lektz Wrote: [ -> ]
(2015-04-24, 01:54 AM)eNvy Wrote: [ -> ]Change "forum_status" class, use this:


.forum_status {
    height: 32px;
    width: 32px;
    display: inline-block;
}

It worked, thank you so much eNvy.

You're welcome ^^.