MyBB Community Forums

Full Version: News on Index?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What is the news plugin that this forum has on the forum index page here:

[Image: yqA9RB.png]

I know that there is THIS but that only allows you to display one message and as you can see from the image above, this forum has 3 ! Ive tried to look/search for it but with no luck Sad so any help will be appreciated ! Smile

You can do this using html and css, something like this:
<style type="text/css">
p.news{
border-top:2px solid #000000;
border-bottom:2px solid #000000;
background-color:333;
color:#FFFFFF;
text-align:center;
padding:4px;
}
</style>
<p class="news">CONTENT</P>
(2011-06-03, 11:43 PM)Sama34 Wrote: [ -> ]You can do this using html and css, something like this:
<style type="text/css">
p.news{
border-top:2px solid #000000;
border-bottom:2px solid #000000;
background-color:333;
color:#FFFFFF;
text-align:center;
padding:4px;
}
</style>
<p class="news">CONTENT</P>

It works ! Thank you so much dude !
(2011-06-04, 12:02 AM)DR - DIZZY Wrote: [ -> ]It works ! Thank you so much dude !

Happy to hear it Smile