MyBB Community Forums

Full Version: Change stickied threads icon
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I change the stickied thread icons? They're all the same as all the threads, but I want it to have its own icon.
test url please. IIRC, MyBB does not have a specific icon fixed for the sticky threads (checked here to confirm)
would it not be editing a piece of code somewhere in the show_thread templates or something?
if your forum has a fixed icon for all the sticky threads then it appears to be specific to the active theme.
if you switch the theme for testing, that icon might not appear.
(2013-06-19, 04:37 AM).m. Wrote: [ -> ]if your forum has a fixed icon for all the sticky threads then it appears to be specific to the active theme.
if you switch the theme for testing, that icon might not appear.
That's fine. I just want it to be on the theme I'm using. How do I get a fixed icon for stickied threads tho?
You can do this with css.

Add to your global css:

td.trow1.forumdisplay_sticky span.sticky, td.trow2.forumdisplay_sticky span.sticky { 
color: red;
}

In the forumdisplay_thread template add a span with the class of sticky and that will show on your thread.

You can see it working here:

http://blackcanvas.net/Forum-News-Suggestions-Feedback

the please read is the content of the sticky span.