XF 1.5 Format a disclaimer at the bottom of a page

I don't have the vocabulary to explain what I'm trying to do, so here's the best I can come up with:

I'm trying to have a disclaimer at the bottom of each page that looks like it's part of the site, offset in its own box.

Under vB this worked:

Code:
</div>
<div style="padding: $stylevar[cellpadding]px 0px 0px 0px">
  <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
    <tr>
      <td class="thead" align="center">IMPORTANT DISCLAIMER</td>
    </tr>
  <tr>
      <td class="alt1" align="center">All my text goes here.</td>
    </tr>
  </table>
</div>
But I can't figure out how to create a comparable display in Xenforo.

Help?
 
You mean something like this?
dff0f0e955335a86d631e68e107aab61.png


There is a phrase called "extra_copyright" were you can add content.

And then you can style the footer to look anyway you want :)
 
Top Bottom