2013-06-18, 10:14 PM
2013-06-19, 04:01 AM
test url please. IIRC, MyBB does not have a specific icon fixed for the sticky threads (checked here to confirm)
2013-06-19, 04:22 AM
would it not be editing a piece of code somewhere in the show_thread templates or something?
2013-06-19, 04:37 AM
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.
if you switch the theme for testing, that icon might not appear.
2013-06-19, 04:47 AM
(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.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?
if you switch the theme for testing, that icon might not appear.
2013-06-19, 05:52 AM
You can do this with css.
Add to your global css:
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.
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.