usually print css has a print type for printing. just delete the media definition and use it instead of the main stylesheet
<link rel="stylesheet" type="text/css" media="print" href="print.css" />
change to
<link rel="stylesheet" type="text/css" media="all" href="print.css" />
source share