How Do I : Add a disclaimer text to the footer?

Where exactly do you want to add it?
In the footer bar, on the same row as the copyright text or lower?

There was a thread yesterday asking how to add links so that might provide some help: http://xenforo.com/community/threads/how-to-create-a-box.9828/

In general though you can either edit the footer template and add your text inline either as text or a phrase.
Or you can create a separate template and include it in the footer template.
 
You can add your content just above the second last </div> on the footer template.

Code:
            <span class="helper"></span>
        </div>
Your content here
    </div>
</div>
 
Thanks Brogan,

I actually added it here as I wanted it under the copyright div:

<span class="helper"></span>
</div>
My Content
</div>
</div>

--
Now when there is a sw update does it overwrite the change?
 
If you want to do inline styling then something like this:
Code:
<div style="text-align: center; padding: 0 60px">Your content here</div>


You could though move that css to EXTRA.css as a class and then use e.g.
Code:
<div class="my_disclaimer">Your content here</div>
 
Here is how I did it for reference:

Code:
<span class="helper"></span>
</div>
<div style="text-align: left; color: #646464; padding: 0 180px">my content</div>
</div>
</div>

Thanks
 
Top Bottom