In Reports the "PDF" button only creates A4 portrait pdf files

Hello.

I think the “PDF” button on reports is really useful and saves me a lot of clicks.

How can i instruct Manager, when i press the “PDF” button, to create a document in another format let’s say A3 page or/and landscape?

You change the following part of your Theme code:

		/* PAGE SETUP - Controls print layout and margins */
		@page {
			/* A4 size is default but some web-browsers do not offer "Scale" option if A4 is set explicitly */
			/* Uncomment to force A4 paper size: */
			/*
			size: A4;
			*/
			
			/* Page margins - adjust these for more/less white space around content */
			margin: 20mm;
			
			/* Uncomment if you want page number in the footer */
			/*
			@bottom-center {
				content: counter(page);
				font-size: 0.8em;
			}
			*/
		}

If this is to much for you, you can ask the Theme Enhancer AI to do it for you.