How to add a box above the forums

Hello,

On one of my MyBB forums, I had a box above the forums with some small images in it, but I have no idea how to do it in XenForo. You can see what I am talking about here (the server status box).

Can this be added to Xenforo?
 
There will be several ways to do it once 1.1 is available.

Using the ad_ template as principia has suggested.
Using the new Notices feature.
Adding a custom template to the forum_list template.

I would recommend one of the first two methods though, to avoid manually editing the template.
 
HTML:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr><td class="thead"><strong>Server Status:</strong></td></tr>
<tr><td class="trow1">
<div align=center>
<CONTENT HERE>
</td></tr>
</table><br>

What would I need to change in that code to make it work with XenForo?

Thanks Brogan. Where would I find the notice settings? I'm completely new to XenForo so I'm not sure where anything is. :|
 
Top Bottom