How to Print FOR SALE large A4 Landscape

  • Thread starter Thread starter Guest
  • Start date Start date
Paper sizes have no relevance to web pages. How does this question
relate to FrontPage?

Use a very large font in WordPad or Word, and set the document in
Landscape.
Or, use a paintbrush and paint.
 
The print button fails, however, on IE5/Mac, so why bother? If you must,
this is the best you can do -

Put this in the head of the document -

<script type="text/javascript">
function print_page(where){
var is_mac=(navigator.platform.indexOf("ac") != -1);
(document.all && is_mac)?
alert("Select \"Print\" from the menu") : where? where.window.print() :
window.print();
}
</script>

Put this in the body of the document -

<a href="javascript:print_page()">Print this</a>

Personally, I'd use CSS to size it.
 
Back
Top