Printing from explorer 6

  • Thread starter Thread starter Greg Lansing
  • Start date Start date
G

Greg Lansing

When I view a webpage in IE6 and want to print it I get the last few words
cut off on the right side of the page. I usually select the part of the page
I want printed, then choose to print just the selection. Is there a setting
I need to set somewhere to enable full printing here? What can I be missing?
Thanks...
 
Greg Lansing said:
When I view a webpage in IE6 and want to print it I get the last few
words cut off on the right side of the page. I usually select the
part of the page I want printed, then choose to print just the
selection. Is there a setting I need to set somewhere to enable full
printing here? What can I be missing? Thanks...

Bad coding at the site.

If you can't fix it with View | Text Size try printing in Landscape.
 
Greg Lansing said:
It does this a lot. In fact this is a microsoft site it happened to me
today. The url is
http://www.microsoft.com/games/flightsimulator/fs2002_articles_c172_basics.as
p

As Frank said, "Bad coding at the site." Microsoft is by no means immune to
this.

For example, I found two errors that could contribute to what you are
experiencing (there are probably more):

1. Generally it is best to avoid fixed-width designs (ref.
http://thewholeinternet.com/gallery3.htm) if one is to avoid screen rendering
and/or print problems. However it is often possible to use fixed-width if
designed for 800x600 (though there will be lots of wasted space on big screen
or high resolution monitors). It appears that the MS page designer attempted
to do just that, as evidenced by the use of a header image that is exactly
800px wide, wrapped within a table that is also 800px wide (with it's padding
and spacing values set to zero). However, they forgot to take into account
"canvas size," and the fact that printers cannot print edge-to-edge (see
http://hotwired.lycos.com/webmonkey/99/41/index3a_page2.html).

2. Use of characters that are not a part of the character set (AKA, codepage
or charset) declared for the page. To wit, the phrase "artificial horizon" is
contained within smart-quotes, rather than straight quotes. Smart-quotes (in
HTML, "“" and "”") are not contained within the "iso-8859-1"
character set declared for this page (ref.
http://thewholeinternet.com/codepage.shtml). The phrase should be within
straight quotes (in HTML, """).

If you can't resolve printing issues by setting narrower left/right margins
(in File > Page Setup), then try reducing the font size (in View > Text
Size). Unfortunately, it won't help you with this Microsoft page, as they
made yet ANOTHER error by unnecessarily specifying fixed-size fonts in CSS
(ref. http://hotwired.lycos.com/webmonkey/99/41/index3a_page3.html). As a
last resort, print in landscape mode, as Frank suggested.

HTH!
 
I repeat, bad coding on the page.
If I reduce the left and right margins to 0.25 inch, everything on the page
prints.
 
Thanks folks, it helped. I'm guilty of the so called BAD coding myself on
projects just to attain the looking I'm going for. Sometimes it limits yours
like it did me just now. Thanks again for the response.
 
I am finding this problem too and it's not due to bad
coding... I'm finding that IE6 has default margin
settings to .75! Those are HUGE margins! Even the
Microsoft home page won't print correctly. I don't
remember this being an issue on other releases, but maybe
so. Is there any insight on this issue that points to
Microsoft? Why would they default to such massive margins
on their browser when it won't even print their own pages?
 
Back
Top