Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to tell Firefox the margins for printing as well as what can or should be in the header or footer? I would like it if I could leave the page numbers on the footer, but take the URL and title off the top. I was wondering if there was a CSS option or something that would specify this that I could put in the webpage I am working on.

share|improve this question

3 Answers

up vote 1 down vote accepted

Unfortunately the latest version of Firefox (7) and possibly some earlier versions do not allow adjustment of the margins, at least not in the Ubuntu/Linux version.

share|improve this answer

For margin size you can use the @page rule.

From http://www.w3.org/TR/CSS21/page.html#page-margins:

@page {
  margin: 3cm;
}

Avoid px, em, and percent, and use mm, cm, pt, or in.

I'm not aware of any way to change what prints in the header/footer other than in the browser.

share|improve this answer

Yes - File -> Page-Setup -> margins&header/footer , then type in 0.25 for each(etc)

share|improve this answer
1  
Quote: I was wondering if there was a CSS option or something that would specify this that I could put in the webpage I am working on. – Tim Withers Oct 9 '11 at 16:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.