MyBB Community Forums

Full Version: Footer message
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
http://mods.mybb.com/view/board-messages

That, but also for the footer. The very bottom. Below my stats and shoutbox, yes.

I already use that one, but I need another one that is basically exactly the same but for the site's bottom.
Hi!, First, don't use plugins, use HTML & CSS,

1. Add this to your global.css
.board_message {
   background: #efefef;
   color: #333333;
   border: 1px solid #d4d4d4;
   padding: 5px;
   margin-bottom: 10px;
   text-align: center;
}

.custom_board_message {
   background: #efefef;
   color: #333333;
   border: 2px solid #d4d4d4;
   border: 2px solid #d4d4d4;
   padding: 5px;
   margin-bottom: 10px;
   text-align: center;
}

Then, go to the index template, and add this where you want the announcement:
<div class="custom_board_message">Text of the announcement here!</div>

See you later Toungue