Forum Moderators: open
I have a page that the user can print off, but the page is a little too large for A4.
My problem is that when the user prints in IE6 the page is not resized to fit on the A4 piece, but in other browsers it is resized automatically.
In the printing preferences section there is a checkbox to 'fit to print size' but as a default this is turned off.
Does anyone know of a way of dynamically checking this checkbox through a script, or any other way that i might be able to get round this problem.
Thanks
Ally
If you have a wrapper div with a declared fixed width, try adding the following CSS. You may just be lucky that such a simple change is all you need.
@media print {
#wrapper {width: auto}
}