MyBB Community Forums

Full Version: Highlight Sticky Thread
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Can we have the plugin that the sticky thread is highlight with yellow color
anyone see this plugin?i also need this type of sticky
Would love something like this, too.
I think we can change the background table color for sticky topic only,but i dont know which one should i change
can be done with css,...
add:
.sticky {
color: #FFFFFF;
background: #C50000;	
}
at the end of your global.css, change the hex for the colors to fit your needs

change your forumdisplay_sticky_sep template to:
<tr>
<td class="trow_sep" colspan="{$colspan}"><div class="sticky">{$lang->sticky_threads}</div></td>
</tr>
[attachment=14819]

this changes the sticky seperator color, i didnt find the stickys in any other templates like forumbit or something
Is this hardcoded?
[b] snake tht's a very nice tut
can i ask smth
if i want Important Threads the written text shld scroll is tht possible
[Image: i70dqf.jpg]

is yes plz tell how thanks Smile
you need to have the marquee plugin installed
forumdisplay_sticky_sep template:
<tr>
<td class="trow_sep" colspan="{$colspan}"><div class="sticky"><marquee>{$lang->sticky_threads}</marquee></div></td>
</tr>
Pirata nervo has a plugin for this, you need to subscribe though to download it.
(2009-08-14, 09:25 PM)JonP Wrote: [ -> ]Pirata nervo has a plugin for this, you need to subscribe though to download it.

i know this, i think i know all the plugins around here and in the resource forums,...
i dont need this,...for me its enough what i made with css Toungue
Pages: 1 2