Hi boris,
It would be the same thing but the base css class would be td.page-header and td.page-footer-content
so for example -
CODE
body.privacy-policy-page td.page-header{display:none;}
body.privacy-policy-page td.page-footer-content{display:none;}
If you are needing help determining what css classes to use there is a great tool out there that will tell you this information. It is called webdeveloper for FireFox -
https://addons.mozilla.org/en-US/firefox/addon/60Simply install this then when you want to edit something on the toolbar go to CSS >> View Style information. Then if you click on say the footer, or header, whatever it will then display what css classes are used. Then where it displays that information there is a tab called Edit CSS. You can use this to make live realtime edits to your css files to see what the changes will look like on your site. Then once you have the changes that you like you simply need to make those changes to your real css files.
Joe