Hide page numbers in generated PDFs

I want to hide the page number, that is printed on the bottom of every pdf page.
I googled quite a bit, but only found topics that are over 5 years old and don’t seem to work anymore.

I found suggestions to create a custom a custom print format.
I did that, but cannot find an option for that.

Does anybody know the css class of the wrapper, so that I can just display:none it with CSS?

1 Like

Ok, I have found it.
It is very simple by just using:

     .page-number  {
        display: none!important;
    }
1 Like