MyBB Community Forums

Full Version: Board messages plugin help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I installed THIS plugin so the thing that I want is to make my text centered.
I am complete noob so,can somebody explain to me how to do that.
This is my forum: http://callofduty2.com.ba/forum/
So,I want this red colored text to be in center.
Thanks in advance
Go to AdminCp > Templates & Style > Style > (click your theme) > boardmessage.css. Click advanced mode and add text-align to the css declaration so it looks like this:
.board_message {
background: black;
color: #C10;
border: 3px solid #33A1DE;
padding: 5px;
margin-bottom: 10px;
text-align: center;
}
(2011-05-25, 08:47 AM)Aries-Belgium Wrote: [ -> ]Go to AdminCp > Templates & Style > Style > (click your theme) > boardmessage.css. Click advanced mode and add text-align to the css declaration so it looks like this:
.board_message {
background: black;
color: #C10;
border: 3px solid #33A1DE;
padding: 5px;
margin-bottom: 10px;
text-align: center;
}
Thank u m8.Solved it. Cool

You can also use html in the board messages:
<center>This is my message</center>

Because, now I think about it, if you give your message a classname it will replace the board_message class.
And how to change other options in this picture for example:
[Image: snap1dt.png]
What do I need to enter in empty fields to change font options?
Color: http://www.w3schools.com/css/pr_text_color.asp
Font Family: http://www.w3schools.com/css/pr_font_font-family.asp
Font Size: http://www.w3schools.com/css/pr_font_font-size.asp
Font Style: http://www.w3schools.com/css/pr_font_font-style.asp
Font Weight: http://www.w3schools.com/Css/pr_font_weight.asp
Text Decoration: http://www.w3schools.com/css/pr_text_tex...ration.asp

In the simple editor (like in the screenshot) you will only have to input the value of the css tag, everything between ":" and ";".
Thank u very m!!