MyBB Community Forums

Full Version: How to change "New posts." icon next to a Thread Title?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there any way to make custom images for "New posts.", etc?

The pictures are lined up in the "folder_sprite.png" file, which I tried to just edit on top the image yet it won't show my new edits.

Thank you.
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 thread_status.css file...

first remove the background-image from .thread_status and add individual images...

.thread_status.dot_folder {
background-image: url(images/newposts.png);
}
Thank you.