MyBB Community Forums

Full Version: Show announcements
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

How to display announcements like community.mybb.com displays on index page?
[attachment=35077]

I know MyBB have a built-in feature for announcements but that just displays as link and visitors have to click it to open, while the style of display mybb community forums uses is better.

I found css for it 

.blog_updates{
text-align: center;
border: 1px solid #ccc;
border-radius: 5px;
padding: 8px 12px;
margin: 10px 0 0
}
.blog_updates.release{
background-color: #fff6bf;
border-color: #ffd324;
}
.blog_updates.latest{
background-color: #D6ECA6;
border-color: #8DC93E;
}

but not sure where and how to display it.


Regards
Thank you.