State Farm's bill pay has no print this page option, which causes junk on the left side to print and important content on the right side to be cut off. If I use print to fit, then everything prints, but it's too small to read. So far State Farm has ignored my requests to provide a better print formatting option. So I'm trying to do my own with css. I'm currently testing in FF 4.0b6, but presumably this issue would be no different for SM 2.1b1pre.
Naturally only if you can login yourself can you test the URL I've been retrying on: https://ebillpay.statefarm.com/csp/CSPServlet/SmartMakePayments?marker=URL&brId=2469&eventName=SmartMakePaymentsRSEvent&memId=12645614 The following @imported via userContent.css file content never hides the left and top divs I want hidden: @-moz-document domain(statefarm.com) { @media print { #subMenuDiv, #topMenuDiv, #bannerDiv {display: none !important;} } } The following always hides the left and top divs I want hidden: @-moz-document domain(statefarm.com) { #subMenuDiv, #topMenuDiv, #bannerDiv {display: none !important;} } How do I get the hiding to only work when printing? -- "The wise are known for their understanding, and pleasant words are persuasive." Proverbs 16:21 (New Living Translation) Team OS/2 ** Reg. Linux User #211409 Felix Miata *** http://fm.no-ip.com/ _______________________________________________ dev-tech-layout mailing list [email protected] https://lists.mozilla.org/listinfo/dev-tech-layout

