I am able to add it to my template's index.php file. But it always appears at the top of the page, even when put inside of another div section.
The resultant code is
<div id="system-message-container">
<dl id="system-message">
<dt class="message">Message</dt>
<dd class="message message">
<ul>
<li>Your event has been saved and is under review</li>
</ul>
</dd>
</dl>
</div>
I'm thinking the div class is defined to a location somewhere else. Unfortunately, I don't see system-message-container defined anywhere, and system-message doesn't appear to be giving a hard location. Investigating further...
PittCaleb