Adding Images and Text to an ATML Test Results 6.01 or 5.0 Report Header or Footer
- Updated2025-07-23
- 2 minute(s) read
You can modify the XSL code that generates report headers and footers. Complete the following steps to add images and text to report headers and footers.
- Open the .xsl file you want to change.
- Search for the ADD_HEADER_INFO comment and uncomment the following lines of
code to add a company logo and Computer Motherboard Test text
to the header of the report:
<img src = 'C:/Images/CompanyLogo.jpg'/> <span style="font-size:1.13em;color:#003366;">Computer Motherboard Test</span>
The HTML <img> tag provides additional functionality, such as aligning the image to the left, right, or center. Refer to the W3Schools website, located at www.w3schools.com, for more information about the <img> tag. - Search for the ADD_FOOTER_INFO comment and uncomment the following lines of
code before the closing </body> tag to add the text
TestStand Generated Report to the footer of the report:
<span style="font-size:1.13em;color:#003366;">TestStand Generated Report</span>
- Add CompanyLogo.jpg to the C:\Images directory.
TR6_Horizontal.xsl or TR5_Horizontal.xsl
The following figure shows a modified report header using the TR6_Horizontal.xsl or TR5_Horizontal.xsl file.
The following figure shows a modified report footer using the TR6_Horizontal.xsl or TR5_Horizontal.xsl file.
TR6_report.xsl or TR5_report.xsl
The following figure shows a modified report header using the TR6_report.xsl or TR5_report.xsl file.
The following figure shows a modified report footer using the TR6_report.xsl or TR5_report.xsl file.
TR6_Expand.xsl or TR5_Expand.xsl
The following figure shows a modified report header using the TR6_Expand.xsl or TR5_Expand.xsl file.
The following figure shows a modified report footer using the TR6_Expand.xsl or TR5_Expand.xsl file.