MyBB Community Forums

Full Version: modify sticky threads
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I want to modify my sticky threads!! so they ll look different from normal threads!!! any plugins??? or help???
You mean adding a Prefix in front of Sticky Thread Title ? If so then you may use this guide: http://community.mybb.com/thread-61140.html
What do you mean exactly? What exactly do you want to look different?
I mean in color or some affect... I saw a plugin for that few days ago...but failed to find now...
(2011-05-23, 05:03 PM)Yaldaram Wrote: [ -> ]You mean adding a Prefix in front of Sticky Thread Title ? If so then you may use this guide: http://community.mybb.com/thread-61140.html
I already have sticky threads....so want to do some modify...like color, bigger font etc
You don't need a plugin. You can do it with css. In AdminCP > Templates & Style > Templates > (your theme) > global.css. In Advanced Mode add this to the bottom of the textbox:
.forumdisplay_sticky
{
    background-color: red !important;
}

Of course you can use any (hex) color you want.
I found this on web, but this is a paid plugin....can anyone download it for me???


http://forums.mybb-plugins.com/Thread-Hi...hreads-1-1
(2011-05-23, 05:36 PM)Aohor Wrote: [ -> ]I found this on web, but this is a paid plugin....can anyone download it for me???


http://forums.mybb-plugins.com/Thread-Hi...hreads-1-1


Its paid and copyrighted to their website. You can request here to make a plugin but don't request it to get free.
(2011-05-23, 05:24 PM)Aries-Belgium Wrote: [ -> ]You don't need a plugin. You can do it with css. In AdminCP > Templates & Style > Templates > (your theme) > global.css. In Advanced Mode add this to the bottom of the textbox:
.forumdisplay_sticky
{
    background-color: red !important;
}

Of course you can use any (hex) color you want.
(2011-05-23, 06:00 PM)Aries-Belgium Wrote: [ -> ]
(2011-05-23, 05:24 PM)Aries-Belgium Wrote: [ -> ]You don't need a plugin. You can do it with css. In AdminCP > Templates & Style > Templates > (your theme) > global.css. In Advanced Mode add this to the bottom of the textbox:
.forumdisplay_sticky
{
    background-color: red !important;
}

Of course you can use any (hex) color you want.


Thanks.I edit with your code.
can I change the size of the font with this???

Try this;

.forumdisplay_sticky
{
    background-color: red !important;
    font-size: 11px;
}

Replace 11px with what ever size you want to use.
Pages: 1 2