Footer (element)
From JRapid
(Redirected from Footer)
footer is an element, child of panel.
Contents |
Description
The footer element includes raw HTML content at the bottom of a panel.
Usage
<panel ...> ... <footer> <![CDATA[ HTML CONTENT ]]> </footer> </panel>
Example
<panel name="Index2" title="Default main page">
<menu/>
<footer>
<![CDATA[
<table>
<tr>
<td>
<h3>This is footer content</h3>
</td>
<td style="width: 30px;"></td>
<td>
<h4>It is included at the bottom of the panel</h4>
</td>
</tr>
</table>
]]>
</footer>
</panel>

