This topic is locked
[SOLVED]

Remove Headers and Footers from single page

1/2/2025 11:25:13 AM
PHPRunner General questions
A
AbriaCloud author

How do I remove the headers and footers from a given page via the custom CSS in the Designer page? What are the elements?

S
safesurf 1/2/2025

For the printer-friendly page use the events before display.
//Remove Header and Footer
$xt->assign("header", "");
$xt->assign("footer", "");

A
AbriaCloud author 1/3/2025

Well, that was just too easy.

Thank you very much. That solved the problem.