Click to See Complete Forum and Search --> : Can I add a 'print.css' to an email newsletter?
Design-is-BS
07-10-2008, 01:51 PM
I am creating an email newsletter, however when it prints it looks awful!
Am I able to add a 'print.css' to the file to make it look better? Customer need to print it and show us a coupon at the store.
I know it can't be outside of the document, so is there another way to do this?
Thanks everyone.
Declan1991
07-10-2008, 02:02 PM
<link href="print.css" media="print" type="text/css" rel="print stylesheet">
Design-is-BS
07-10-2008, 02:18 PM
Can this method be used on a email newsletter? as far as I unserstand you cannot link to an external style sheet.
http://www.anandgraves.com/html-email-guide#inline_stylesheets
Declan1991
07-10-2008, 02:49 PM
You learn something new everyday.
Design-is-BS
07-10-2008, 03:04 PM
I already know all about inline stylesheets. I was just wondering if I am able to control the printing of the newsletter. I'm guessing I cannot?
Declan1991
07-10-2008, 05:17 PM
You can, I think the way is:
@media print {
h1 {
font-size:12pt;
}
}
@media print will only work on a webpage not an email newsletter.
You have no control.
Quidam
07-11-2008, 05:53 AM
You can send them a .pdf file that has been designed for your purposes.