Is there a way after testing to see if a member is logged in to serve a css file that will allow printing. On the flip side, if a member is not logged in they get body {display:none;}.
If it were me, I would use PHP to write a conditional. Something like: if the user is logged in, then you get <body class="logged-in"> else <body>. Then you can apply any CSS code you wish.
Is there a way after testing to see if a member is logged in to serve a css file that will allow printing. On the flip side, if a member is not logged in they get body {display:none;}.
If it were me, I would use PHP to write a conditional. Something like: if the user is logged in, then you get
<body class="logged-in">else<body>. Then you can apply any CSS code you wish.