본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

How can I Change the fontsize if printing for the header- footerinformation?

more options

hi, is there a way to change the fontsize / font for the header / footer if i print a document or file? the problem is, that i have sometimes long url's that i wanna have printed in the header, but it doesn't fit with the fontsize of always 10pt. a little trick was to print the url in the header-center, but also then sometimes its not enough space. my idea was to somewhere set the fontsize to 8pt or 7pt. maybe there is an entry in mozilla:config i didn't found? thanks hendrik

hi, is there a way to change the fontsize / font for the header / footer if i print a document or file? the problem is, that i have sometimes long url's that i wanna have printed in the header, but it doesn't fit with the fontsize of always 10pt. a little trick was to print the url in the header-center, but also then sometimes its not enough space. my idea was to somewhere set the fontsize to 8pt or 7pt. maybe there is an entry in mozilla:config i didn't found? thanks hendrik

모든 댓글 (1)

more options

Sorry, I do not see any setting for that.

What do you think about adding the URL to the bottom of the page you're printing? You could try this code in Firefox's Web Console if you don't need this very often:

(1) Select and copy this script:

var p=document.createElement('p'); p.setAttribute('style', 'padding-top:1em; color:#000; background-color:#fff;'); p.innerHTML='URL: '+document.location.href; document.body.appendChild(p);

(2) Open the Web Console in the lower part of the tab using either:

  • "3-bar" menu button > Developer > Web Console
  • (menu bar) Tools > Web Developer > Web Console
  • on Windows, Ctrl+Shift+k

(3) Paste the script in the blank line at the bottom and press Enter to run it. The console should show a <p> tag -- success -- or an error message of some kind. Hopefully it worked, you can close the console now and you should see the new line at the bottom of the page.

There may be some layout issues with fixed position content that want to be at the bottom, but I don't want to make this any more complicated than it already is. Let me know whether this helps.