MyBB Community Forums

Full Version: add a title on header
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want add a title on header
I want the backgrond of title is red and text written in yellow and the border is black like that

http://gyazo.com/b30de324d33f095b8515a4c17ef8a849
Use the following code in your header template;
<div class="header_notify">YOUR TEXT GOES HERE</div>

and then add the following class in your global.css;
.header_notify{
color: #FBF440;
background: #FD1F34;
border: 1px solid #000000;
}