Clark Internet
Clark IP Web Log
Formatting printed output from Sitemaker CMS
You can make printouts of your web pages more attractive by adding a style sheet that hides the site navigation. You just add some code to the style sheet of your Sitemaker CMS site. This code precedes or follows your other custom styles in its entirety.

You can also place in in the style sheet of a single page if that is more appropriate for your situation. The technique will work with any standard Sitemaker layout. Highly stylized layouts may require additional terms.

The example shows how to hide the standard navigation areas of your page.

<style type="text/css" media="print">
#navigation,
#SM_top_menu_content,
#SM_member_bar,
#footer
{
display: none;
}
</style>