MyBB Community Forums

Full Version: How do i change the forum status?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: 93cac5dee4b18f81d9a9a101423f4cb5.png]

the box thingy i want to change it how do i
In original MyBB theme this images are displayed via a sprite image and CSS.

Check image file:
/images/forum_icon_sprite.png

Check this CSS for icon definition:
.forum_status {
background: url(../../../images/forum_icon_sprite.png) no-repeat 0 0;
background-position-x: 0px;
background-position-y: 0px;
...
}
and this for icon positioning:
.forum_on {
    background-position: 0 0;
}
.forum_off {
    background-position: 0 30px;
}

It depends on the theme you're using. A link to your forum would be best to check your forum icons.

[ExiTuS]
(2020-02-24, 11:17 AM)[ExiTuS] Wrote: [ -> ]In original MyBB theme this images are displayed via a sprite image and CSS.

Check image file:
/images/forum_icon_sprite.png

Check this CSS for icon definition:
.forum_status {
background: url(../../../images/forum_icon_sprite.png) no-repeat 0 0;
background-position-x: 0px;
background-position-y: 0px;
...
}
and this for icon positioning:
.forum_on {
    background-position: 0 0;
}
.forum_off {
    background-position: 0 30px;
}

It depends on the theme you're using. A link to your forum would be best to check your forum icons.

[ExiTuS]
you got discord?
No discord.
Got your PM.

Your theme is using Font Awesome Icons.
So what's your intention with changing icons...
If you want to change the icon then you can choose another icon character by editing the class:
<i class="fa fa-circle-o-notch"></i>
.fa-circle-o-notch::before {
    content: "\f1ce";
}
The content can be replaced by another character. Check FA website for charcter unicode \XXXX

If you want to set your own icon/image then it needs to get rid of FA icon class and switched to background-image.
What's you desire?

[ExiTuS]