[css-d] how do you filter pages calling @media print ?

2006-10-13 Thread Mike
hi, we have a cascading style sheet that defines a @media print selector @media print { #left_side {display:none; } #right_side {display:none; } etc ... } In some pages we want to print the left side but not the right side etc ... We do not want to

Re: [css-d] how do you filter pages calling @media print ?

2006-10-13 Thread Bradley Wright
On 13/10/2006 14:03, Mike wrote: In some pages we want to print the left side but not the right side etc ... We do not want to define several print selectors, is there a way to specify in this @media print selector the sides not to display, depending on which HTML page i am printing from ?

Re: [css-d] how do you filter pages calling @media print ?

2006-10-13 Thread Mike
hi, thanks for your reply. No, we do not want to modify the HTML page, only the CSS files. Is there a way to do it ? Thanks Bradley Wright [EMAIL PROTECTED] wrote: On 13/10/2006 14:03, Mike wrote: In some pages we want to print the left side but not the right side etc ... We do not want to

Re: [css-d] how do you filter pages calling @media print ?

2006-10-13 Thread Barney Carroll
Where is your site, Mark? Forgive me if I'm not getting the whole story but surely if the right side can be specifically styled at all, then a print media css can define it and any other unnecessary elements as {display:none;}... Mike wrote: hi, thanks for your reply. No, we do not want to