MyBB Community Forums

Full Version: Hot thread icon delete
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Where can I delete the hot thread icon? I want it as a normal icon like everywhere else.
I tried to delete it in thread_status.css but it doesn't affect it even though it should.
In the themes section of your site, navigate to your current themes stylesheets.

Then open up thread_status.css and replace what you have with:
.thread_status {
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url(images/folders_sprite.png);
	background-repeat: no-repeat;
}

.thread_status.dot_folder {
	background-position: 0 0;
}

.thread_status.dot_hotfolder {
	background-position: 0 0;
}

.thread_status.dot_hotlockfolder {
	background-position: 0 -60px;
}

.thread_status.dot_lockfolder {
	background-position: 0 -60px;
}

.thread_status.dot_newfolder {
	background-position: 0 -80px;
}

.thread_status.dot_newhotfolder {
	background-position: 0 -80px;
}

.thread_status.dot_newhotlockfolder {
	background-position: 0 -140px;
}

.thread_status.dot_newlockfolder {
	background-position: 0 -140px;
}

.thread_status.folder {
	background-position: 0 -160px;
}

.thread_status.hotfolder {
	background-position: 0 -160px;
}

.thread_status.hotlockfolder {
	background-position: 0 -220px;
}

.thread_status.lockfolder {
	background-position: 0 -220px;
}

.thread_status.movefolder {
	background-position: 0 -240px;
}

.thread_status.newfolder {
	background-position: 0 -260px;
}

.thread_status.newhotfolder {
	background-position: 0 -260px;
}

.thread_status.newhotlockfolder {
	background-position: 0 -320px;
}

.thread_status.newlockfolder {
	background-position: 0 -320px;
}

Upon saving, go back to your site and hard refresh your page to see results instantly (as the page will cache settings). If using Windows hold Ctrl down while clicking the refresh button.
I just realized I had fontawesome icons and now for some reason I can't seem to bring them back, I used an image as default now but even though I reverted the code it does not seem to apply the changes again.
Just reinstall the original theme on your forum and copy and paste the original code back in then paste it here and I’ll fix it up for ya. Then you can delete the reinstalled theme after you grab the css for that area. Smile