![]() | |
![]() |
| | Thread Tools | Display Modes |
#21
| |||
| |||
|
|
In article <Xns9C506495DD8CCarbpenyahoocom (AT) 85 (DOT) 214.113.135>, Adrienne Boswell <arbpen (AT) yahoo (DOT) com> wrote: Did you have a look at my earlier post? Have a look at [http://www.cavalcade-of-coding.info/usenet/testprint.html] and see if that helps. Your square brackets make it impossible for my newsreader to click on URLs you quotethis way. Just thought to mention it. |
#22
| |||
| |||
|
|
dorayme wrote: In article <Xns9C506495DD8CCarbpenyahoocom (AT) 85 (DOT) 214.113.135>, Adrienne Boswell <arbpen (AT) yahoo (DOT) com> wrote: Did you have a look at my earlier post? Have a look at [http://www.cavalcade-of-coding.info/usenet/testprint.html] and see if that helps. Your square brackets make it impossible for my newsreader to click on URLs you quotethis way. Just thought to mention it. IIRC are not "<>" the characters typically used to bound a URL? Does this work in your newsreader? http://www.cavalcade-of-coding.info/usenet/testprint.html |
#23
| |||
| |||
|
|
Did you have a look at my earlier post? Have a look at [http://www.cavalcade-of-coding.info/usenet/testprint.html] and see if that helps. |
#24
| |||
| |||
|
|
means I have to cut and paste and I am wondering how much glue I have left in my bottle. |
#25
| |||
| |||
|
|
Another option: use separate classes for block and inline elements: .onlyprint, .onlyprintinline { display: none; } @media print { .onlyprint { display: block; } .onlyprintinline { display: inline; } } |
#26
| |||
| |||
|
|
Wed, 22 Jul 2009 10:17:27 -0400 from Harlan Messinger hmessinger.removethis (AT) comcast (DOT) net>: Another option: use separate classes for block and inline elements: .onlyprint, .onlyprintinline { display: none; } @media print { .onlyprint { display: block; } .onlyprintinline { display: inline; } } This is an intriguing idea -- thanks! |
#27
| |||
| |||
|
|
Stan Brown wrote: Wed, 22 Jul 2009 10:17:27 -0400 from Harlan Messinger hmessinger.removethis (AT) comcast (DOT) net>: Another option: use separate classes for block and inline elements: .onlyprint, .onlyprintinline { display: none; } @media print { .onlyprint { display: block; } .onlyprintinline { display: inline; } } This is an intriguing idea -- thanks! The question is are the parts that would be "print-only" ever be inline? Most times the sections one either wishes to print or not print usually are are *blocks* |
#28
| |||
| |||
|
|
The question is are the parts that would be "print-only" ever be inline? Most times the sections one either wishes to print or not print usually are are *blocks* Examples like banners, footers and navbars normally excluded from printing and you may want boilerplate, copyright, disclaimers, addresses included in printing. The only inline thing I usually adjust is remove all underscores and coloring from links in the printed version (servers no purpose in print and is just distracting) |
|
The working assumption is "yes" because Stan implied up front that that was the problem he was trying to solve! |
#29
| |||
| |||
|
|
I've been assuming I needed to cover both inline and block, but I'll grep for the relevant class names and see for sure. |
![]() |
| Thread Tools | |
| Display Modes | |
| |