MyBB Community Forums

Full Version: Board messages..
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I'm using the board messages plugin, same as on this site..

I don't understand how I can colour the band..

There's "class", but I don't understand how to change the colour..
Any ideas..
Thanks.
If its using <span> tags then it should be

<span class="yaldaram">YOUR TEXT GOES HERE</span>

and insert the following in your global.css stylesheet;

.yaldaram{
color: #000000;
background-color: #FFFFFF;
}

something like, adjust colors yourself.
(2010-11-21, 09:31 AM)Yaldaram Wrote: [ -> ]If its using <span> tags then it should be

<span class="yaldaram">YOUR TEXT GOES HERE</span>

and insert the following in your global.css stylesheet;

.yaldaram{
color: #000000;
background-color: #FFFFFF;
}

something like, adjust colors yourself.

Didn't work..
Or just use
<span style="color:#fff; background-color:#ccc;"></span>