Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
7answers
5k views

How to see the print media CSS in Firebug?

Firebug is an excellent tool to to show a screen media CSS for some HTML element, but is there a way to look at the print media CSS too? Or is there any other tool to see the print media CSS?
3
votes
2answers
4k views

How do I Make Firefox Print a Background-Color Style?

I have some simple CSS: #someElement { background-color:black; color:white; } It looks ok in the browser, but when I go to print it in Firefox it comes out as black text on a white ...
1
vote
1answer
155 views

Printing fieldsets in firefox

I've been adding some new css to an existing project (using media="print") in the page header. It's going smooth and (for once!) IE is giving nice, expected results, but Firefox does not... The ...
1
vote
1answer
73 views

if we are providing a seperate “printer friendly page” for each page of site then do we need to use print media css in site?

if we are providing a seperate "printer friendly page" for each page of site then do we need to use print media css in site? only screen css is enough in this case?
0
votes
1answer
9 views

Generate a report for screen view and for print view using css

I have a webpage with a report that is paginated while displaying on the screen. This is done using displaytag. Only the number of records to be displayed on screen are queried. While printing, ...
0
votes
3answers
36 views

External print.css file - How to make element visible on print only, not visible on screen?

I am currently using the following as my external print.css file: /* Remove unwanted elements */ hiddenedit, #hiddenbuttons, #header, #nav, .propertyselector, li.hiddentab, ul.hiddentab { ...
0
votes
0answers
99 views

Magento print.css not working in IE

Magento includes the print.css sheet out-of-the-box. We have styled ours to accurately display what we want displayed whenever someone tries to print. In Chrome and Firefox, this works 100% with no ...
0
votes
2answers
202 views

I'm trying to use a print.css to print one div per page, and I'm failing

An example of my code is this: <div class="print"> This div needs to be on one page. </div> <div class="print"> This div needs to print on a separate page. </div> I have a ...
0
votes
2answers
82 views

Should we put print css at bottom?

Would it be better if we put print css at bottom just before </body> like yahoo's recommendation for js because only few people will take print and if we will put at bottom then it will be ...