printing web page

  • Thread starter Thread starter Jesse Hand
  • Start date Start date
J

Jesse Hand

Does anyone know how to remove the header (page title) and footer (page
number) when printing a web page from FP2002?

--

-Jesse

http://www.pixelpages.net/jesse

Disclaimer: Spelling & grammar errors are made on purpose for those who are
fulfilled by correcting others.
 
Hi Jesse,
you'd make a print stylesheet like this

<style type="text/css" media="print">
..noPrint{
display: none !important;
}
</style>
and then give anything you dont want to print the class noPrint -
<p class="noPrint">This text won't print</p>

Jon
Microsoft MVP - FP
 
If you mean for ones you are printing, it's a printer setting. There's an option
to turn off printing headers and footers.


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
Ah...clueless me. Thanks for catching that Steve.

But that CSS Print info is still pretty good. :)
 
Thanks everyone for your help. I am amazed every time I ask for help in here
how quick everyone is to help.

Thanks

--

-Jesse

http://www.pixelpages.net/jesse

Disclaimer: Spelling & grammar errors are made on purpose for those who are
fulfilled by correcting others.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

autosaving as .html not .htm 3
vertical line? 4
uninstalling and reinstalling FP 2002 extensions 4
CSS style sheets 10
default font type and size 2
add ins newsgroup? 6
rename subweb? 4
font size and style 1

Back
Top