Chrome print preview disable only link location in footer and header

1k views Asked by At

I'm using Chrome print preview for printing and I want to display header and footer to have number of pages but I don't want to display link location in header and footer, for example: http://localhost/test/test.php. And also not to show date at header of print pages. I was searching everywhere but only get :

@page
{margin:0px;
} 

But this code not display number of pages. I tried this code but didn't work:

  @media print {
  a[href]:after {
    content: none !important;
  }
}
0

There are 0 answers