Hi there,
so.. i have question about css and printing in M. Outlook. I have made some HTML email templates for some company. Is there any possibility to hide images, which are on this html template, when i want to print email in my Outlook ? Images are bottom aligned, and when i print it, it print two pages instead of one.
Is there any possibility to do that with css ? i tryed, but with no succes. Was this done by anyone ? I would really appreciate it... thx and by...
CSS in Microsoft Outlook
The regular CSS route would be to assign your stylesheet to media="screen". You can then add a second CSS reference file with the <link> tag which has media="print".
The print CSS file would specify the offending image as display: none; as so as it will not show up on the printed sheet.
All sounds nice n' easy. But, factor in Outlook and Microsoft and I'm not entirely sure if it will adhere to such standard CSS facilities.
CSS in Microsoft Outlook
Thx ... but I already tried this way, but no luck at all.
so .. if anyone...