These files enable you to control some of the content displayed in the Payment Service pages.
This file adds content just below the content provided by the header.html file. You can download this file from:
The header.html file creates a specific table structure, so the tableHead.html file needs to continue this table structure through the page.
The following HTML code is provided in our default tableHead.html file:
<table class="container" cellpadding="<wpdisplay disp=wp.container.border.width>"
cellspacing="0" align="center">
<tr>
<td>
<!-- the main content table -->
<table class="containercell" cellspacing="<wpdisplay disp=wp.container.cellSpacing>"
cellpadding="<wpdisplay disp=wp.container.cellPadding>">
<tr>
<td class="title" colspan=2>
<!-- page title -->
<h1><wpdisplay msg=payServ.name></h1>
<!-- end page title -->
</td>
</tr>
<!-- end tableHead.html -->
|
The code in bold represents an area with closed tags, whereas the opening <table>, <tr>, <td> and <table> tags are to be closed in the tableFoot.html file, as shown below. |
This file adds content just before the content provided by the footer.html file. You can download this file from:
https://secure.worldpay.com/global3/payment/default/tableFoot.html.
This file needs to close off any HTML from the tableHead.html file.
The following HTML code is provided in our default tableFoot.html file:
</table>
</td>
</tr>
</table>
|
These tags enable the closure of the corresponding <table>, <tr>, <td> and <table> tags in the default tableHead.html file, as shown above. |