Forum Closed Template..?

Mikey

Well-known member
So when you close the forum, the text the user specifies is put as a message to the user, where can I find the template which calls this?

The aim is to style that area, put a <p class="importantMessage"></p> around the forum closed text.. but I can't find the right area in the right templates..
 
yeah, but for example I want to have <p class="importantMessage"> around any text a user of the style enters there..

So they don't HAVE to enter the HTML into the box, just their message..

I think I figured a way about it any way.. in PAGE_CONTAINER I am thinking of having this code ..

Code:
<xen:if is="{$showBoardClosedNoticed}">
<p class="importantMessage">
</xen:if>
{xen:raw $contents}
<xen:if is="{$showBoardClosedNoticed}">
</p>
</xen:if>

Unless anyone can say if there is there a more appropriate way to do this?

edit: seems above code does not work anyway.
 
Top Bottom