搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

I print webpages with the URL in left footer which cuts off halfway across the page, how can that be extended to just before the right footer?

more options

The question is all in the above. I am sick of the URL in the footer cutting off halfway across the page. I previously used Internet Explorer which printed almost the full width of the footer and almost always this was enough to print the whole URL. I would like to see this in Firefox.

The question is all in the above. I am sick of the URL in the footer cutting off halfway across the page. I previously used Internet Explorer which printed almost the full width of the footer and almost always this was enough to print the whole URL. I would like to see this in Firefox.

被采纳的解决方案

thomaspz said

As you can guess it does not help but thank you anyway. I wonder if the designers would take this on board.

Wouldn't hurt to file a Bugzilla report to "request enhancement", but I wouldn't doubt that some user filed one years ago and it has either been denied with WONT FIX or no one decided that it was important enough to tackle. https://developer.mozilla.org/en/Bug_writing_guidelines

定位到答案原位置 👍 0

所有回复 (6)

more options

Sorry no, you can set Left, Center, and Right thru Page Setup > Margins/Header&Footer but unlike IE, Firefox won't print one across the page. Those are separate fields and are printed (or not) related to the user selection - they just don't merge and won't use the width of the paper or anywhere close.

That drove me nuts back in 2002 when I started using Firefox (quit using IE) and it hasn't been changed.

more options

As you can guess it does not help but thank you anyway. I wonder if the designers would take this on board.

more options

If you don't need it on every page, one option might be to add the URL to the bottom of the page you're printing. I'm guessing that could be injected with a little bit of script (or an add-on). If no one has posted that, I probably could create one.

more options

选择的解决方案

thomaspz said

As you can guess it does not help but thank you anyway. I wonder if the designers would take this on board.

Wouldn't hurt to file a Bugzilla report to "request enhancement", but I wouldn't doubt that some user filed one years ago and it has either been denied with WONT FIX or no one decided that it was important enough to tackle. https://developer.mozilla.org/en/Bug_writing_guidelines

more options

Thank you. I looked at that bug writing stuff and don't think I will live long enough to work it out. At present if I really want a printout with all the URL I copy the URL in Firefox and paste it into IE and print using that. Or if I am printing to Word or Acrobat I can paste the URL into the document. Will do me for now. Thanks again.

more options

jscher2000 said

If you don't need it on every page, one option might be to add the URL to the bottom of the page you're printing. I'm guessing that could be injected with a little bit of script (or an add-on). If no one has posted that, I probably could create one.

This is an example of what I have in mind, it's a bookmarklet, a script you save as the "Location" of a bookmark. Then to inject the URL at the end of a page, you click the bookmark.

javascript:var d=document.createElement('div'); d.setAttribute('style', 'margin:18px 0 0 0; border-top:1px solid #999; padding:9px 0 0 0; width:100%; clear:both; position:static; color:#555'); document.body.appendChild(d); d.textContent=location.href; void 0;

I would need to test it on more pages (or get feedback from others) before declaring it "done."