| View previous topic :: View next topic |
| Author |
Message |
kellystee
Joined: 10 Oct 2005 Posts: 243
|
Posted: Tue Oct 11, 2005 10:51 am Post subject: How to make new template titles like the ones that exist? |
|
|
I want to add one other title to the "Graphic Order Template" that are just like the titles "Ship to", "Bill to", "Item #", etc. with the boxes around them and the background shading, fonts, everything. I want it to be in the footer and to say "Special Instructions".
Are the standard titles images? And I just need to make another image or is it code? I've read through the XSL code (as best as I could) and couldn't find where it was making the titles. |
|
| Back to top |
|
Wes Site Admin
Joined: 07 Oct 2002 Posts: 7427
|
Posted: Tue Oct 11, 2005 12:41 pm Post subject: |
|
|
Hello Kellystee,
The headers you are referring to are created using tables and CSS. You could add the following code to your template to add a footer with a new header row and information in the table cell(s) below it.
| Code: | <xsl:template name="outputPageFooter">
<table id="orderdetails" cellspacing="0">
<tr class="header">
<td>Table header info here...</td>
</tr>
<tr class="orderitem">
<td>General info here...</td>
</tr>
</table>
</xsl:template> |
Please let us know if you have further questions.
Thanks,
Wes
Interapptive, Inc. |
|
| Back to top |
|
dave9455
Joined: 07 Nov 2005 Posts: 18
|
Posted: Wed Nov 23, 2005 5:09 pm Post subject: Adding Brushed Metall Template Titles |
|
|
| I would like to add title strips like the ones currently on the page that say "Packing Slip" Billing and Shipping Information" and "Order Information" for my store policies in the footer. I have already added the store polices but would like to have the title graphic that matches the other title bars. Thanks |
|
| Back to top |
|
|