2011-05-23, 04:48 PM
Pages: 1 2
2011-05-23, 05:03 PM
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
2011-05-23, 05:04 PM
What do you mean exactly? What exactly do you want to look different?
2011-05-23, 05:20 PM
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.htmlI already have sticky threads....so want to do some modify...like color, bigger font etc
2011-05-23, 05:24 PM
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:
Of course you can use any (hex) color you want.
.forumdisplay_sticky
{
background-color: red !important;
}
Of course you can use any (hex) color you want.
2011-05-23, 05:36 PM
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
http://forums.mybb-plugins.com/Thread-Hi...hreads-1-1
2011-05-23, 05:38 PM
(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, 06:00 PM
(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:14 PM
(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???
2011-05-23, 06:15 PM
Try this;
Replace 11px with what ever size you want to use.
.forumdisplay_sticky
{
background-color: red !important;
font-size: 11px;
}
Replace 11px with what ever size you want to use.
Pages: 1 2