Firefox prints pieces of a single page on multiple pages

Firefox prints pieces of a single page on multiple pages. For example, if a page is only one page long in IE, it will print one page. But if I print the same page in FF, it will print 5 pages, and each page would have a different section of the original web page. Same thing is valid for web images. I have tried upgrading to the latest version of FF 3.6.12, and I have tried uninstalling and reinstalling my print driver (Brother MFC-7420), and have tried rebooting my PC, and have tried changing the print settings from within the Printer's menu and the Firefox print settings.

Check the paper size that is selected in your printer's preferences when viewing those prefs through Firefox. Or maybe the left & right page margins are set unusually wide for that printer within Firefox.
http://kb.mozillazine.org/Problems_printing_web_pages#Prints_to_a_small_portion_of_the_page

Similar Messages

  • Printer printing single page as multiple pages and on sometimes only print part of the page

    The problem may not be with the printer it could be with the computer instead and I would think that maybe that is the problem.  The computer is an HP 255 as well, and both units belong to my school so I don't have administrative functions. The computer runs Mircosoft windows 7-professional version 32 bit.  I used to be able to print normally with no problems.  However, recently I tried to print my paystub and it blew it up so wide and long that it only printed a third of the page down and half the page across.  Today I tried to print out some other paperwork and for a single page it was printing as three pages but some pages it printed in their entirety with no problems.  I've tried to run the diagnostic check and it downloads but refuses to let me open it no matter what program I try to use.  I've tried to check the printing perameters but it tells me that it's set at 10 by 11 with no margins and is set to portrait.  If I try it on my Asus desktop, it seems to print things just fine so I'm inclined to believe it is the computer but I have no idea what's wrong or how to fix it.  Thanks.

    BMack,
    Have you thought about having a 2-page document where the second page is a duplicate of the first page?
    Jerry

  • Scroll Bar Problem after Printing a web page containing multiple page data

    Hi All,
    I have a web application which has two DIV, one is main and one is child. I am having problem in printing multiple pages. There is a lot of data in the child DIV and i am using JavaScript functions to control the print functionality. When i print using window.print(), only the data on the main page currently being showed is printed. I further researched and checked out the Style.Overflow property.
    Now i am using divMain.style.overflow = "visible"
    After this the complete print comes. But in Firefox, the scroll bar disappears and only single page is left with no scroll bar .
    Now if after print i give divMain.style.overflow = "Auto" OR divMain.style.overflow = "Scroll", still the scroll bar doesn't come and if it comes then its inactive. I am unable to see the complete data on the page after the print is taken.
    The problem is not coming in I.E and the full data with scroll bar is recovered in I.E.
    Please help me how to get the normal page with full data and scroll bar after printing in Firefox.
    Thanks,
    Manuj

    hi, i would update my reader first to the newest version.
    does the size of the textfield never change, independant how much text is in it?
    perhaps check your subforms, if they are type "position" size does not change in my opinion, except your parent subforms expand to fit....
    or use "flowed" subforms...and regard the parent subforms too!

  • Need to print in image with good quality in multiple pages

    rinting of the image display area is to small to read on some large displays
    Need to restrict the image resizing in generating the print output to a minimum size (to allow it to be readable) and allow the printed output to flow into a multiple pages wide by multiple pages in length if necessary. Currently it is restricted to one page.
    below is the code
    public int print(Graphics g, PageFormat pageFormat, int pageIndex) throws PrinterException {
    if (pageIndex != 0)
    return NO_SUCH_PAGE;
    Graphics2D g2d = (Graphics2D) g;
    Rectangle2D.Double printBounds = new Rectangle2D.Double(
    pageFormat.getImageableX(),
    pageFormat.getImageableY(),
    pageFormat.getImageableWidth(),
    pageFormat.getImageableHeight()
    // Print the header and reduce the height for printing
    float headerHeight = printHeader(printBounds, g2d);
    printBounds.y += headerHeight;
    printBounds.height -= headerHeight;
    // Carve off the amount of space needed for the footer
    printBounds.height -= getFooterHeight(g2d);
    // Print the nodes and edges
    printDisplay( printBounds, g2d, 0 );
    if (footer != null) {
    printBounds.y += (printBounds.height + 15);
    printFooter(printBounds, g2d);
    return PAGE_EXISTS;
    =================================
    protected void printDisplay( Rectangle2D.Double printBounds, Graphics2D g2d, double margin ) {
    // Get a rectangle that represents the bounds of all of the DisplayEntities
    Rectangle r = null;
    for (Enumeration e=displayManager.getEntitySet().getEntityEnumerati on();e.hasMoreElements();) {
    DisplayEntity de = (DisplayEntity)e.nextElement();
    if (r == null)
    r = de.getBounds();
    else
    r = r.union(de.getBounds());
    // Get that as doubles, rather than ints, and expand by half the margin
    // height in all directions
    Rectangle2D.Double entityBounds = new Rectangle2D.Double(r.x,r.y,r.width,r.height);
    entityBounds.x -= margin/2;
    entityBounds.y -= margin/2;
    entityBounds.width += margin;
    entityBounds.height += margin;
    // See if height and/or width was specified
    Unit specifiedSize = configuration.getHeight();
    double printHeight = (specifiedSize != null) ?
    specifiedSize.getValueAsPixels((int)printBounds.he ight) :
    printBounds.height;
    specifiedSize = configuration.getWidth();
    double printWidth = (specifiedSize != null) ?
    specifiedSize.getValueAsPixels((int)printBounds.wi dth) :
    printBounds.width;
    // Figure out the ratio of print-bounds to the entities' bounds
    double scaleX = 1;
    double scaleY = 1;
    // See if we need to scale
    boolean canExpand = configuration.expandToFit();
    boolean canShrink = configuration.shrinkToFit();
    if (canExpand == false && canShrink == false) {
    scaleX = scaleY = configuration.getScale();
    else {
    if ((canShrink && canExpand) ||
    (canShrink &&
    (entityBounds.width > printWidth ||
    entityBounds.height > printHeight)) ||
    (canExpand &&
    (entityBounds.width < printWidth ||
    entityBounds.height < printHeight))) {
    scaleX = printWidth / entityBounds.width;
    scaleY = printHeight / entityBounds.height;
    if (configuration.maintainAspectRatio()) { // Scale the same
    if (scaleX > scaleY)
    scaleX = scaleY;
    else
    scaleY = scaleX;
    above methods am using for printing image. but in large display i cant able to read letters.
    Thanks in advance
    Srini

    Your renderer is wrong.... try this (untested):
       class myCellRenderer extends DefaultTableCellRenderer {
         public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int col) {
            if (value!=null) {
              ImageIcon icon = new ImageIcon(image);     // assuming image is defined elsewhere and is accessible
              setIcon(icon);
              setText(value.toString());
            } else {
              setIcon(null);
              setText("");
            return this;
       };o)
    V.V.

  • Footer should be print on last page in multiple page format

    Hi expert,
    I designed form for invoice print ,in that for multiple pages footer should be print on last page only and hight of the main window should be increase (means if footer will display on last page then space of footer should be used for main window in multiple
    page format) 
    for eg .if i have 12 item so 5 items displyed on each page but i want to print 10 item on first page and remaing on second and after that i want to print footer.
    Regards,
    Jyotsna

    Hi,
    Has you tried to create a "new page" copy of FIRST, and make it the LAST_PAGE... On it you are going to create the desired footer.
    The Page Secuence will be something like this:
    If you are trying to print 12 items, then PAGE 1 (10 items) -> LAST_PAGE (2 remaining items).
    Hope it helps you...
    Alexis Sanchez N.
    SAP ABAP Development Consultant
    Molen Services and Consulting, C.A.

  • Header line only prints on first page of multiple page document

    Hi, I've created a SmartForms table and it has the Header, Main, and Footer sections. I've created table lines for the Header and Main sections. In the Header section, I've checked 'at Start of Table' and 'at Page Break'. The form prints multiple pages fine, BUT the header line only prints on the first page and not at any of the multiple page breaks.
    Does anyone have any suggestions as to what might be causing this?
    Thanks,

    Hi,
    Remove that 'at Start of Table' check box and check it.
    Regards
    Muthappan.

  • Spreading a single form across multiple pages

    I'd like to implement a single record form that spreads it's items across multiple pages for the purpose of grouping related information on each page such as "Contact Details"," Education Profile" etc. There are way too many columns for a single page.
    In Oracle forms you can create a form across multiple canvases or on different tabs of a tabbed canvas. Each item has a property to position it on which canvas.
    Is this possible in ApEx? I can see that transaction processing could be complex.
    How do I avoid, for example, inserting the record a second time if I commit from a different page?
    Any comments appreciated.
    Paul P

    Another way to do this without javascript and ajax that works pretty well is to setup a list that represents the logical "sections" and display it as a sidebar list.
    Create a hidden item on the page called PX_ACTIVE_SECTION and set the visibility of each region on the page based on the value of this item. For example: :PX_ACTIVE_SECTION = 'Contact Details'. You can also have multiple regions associated with a single tab. Set the default value to whatever section you wish to display first.
    Next, set each list item to be "current" when :PX_ACTIVE_SECTION is equal to that item ('Contact Details', 'Education Profile', etc.). Also set the URL destination of each item to: javascript:doSubmit('section name');
    Finally, add a branch back to the current page that sets PX_ACTIVE_SECTION to &REQUEST.. This traps the doSubmit call so you can set the hidden item. (Add a condition, if needed, to prevent this branch from executing due to other buttons and requests).
    The result is that the user can switch freely between sections and save after all data is entered. The page does refresh (since it doesn't use AJAX), but if your regions aren't too big, it should be reasonable.

  • I want a new tab to open as my home page not multiple pages

    I want any new tab to open with my home page google and not multiple pages which are of no interest to me. It seems if you switch the option off you only get a blank page. If you use the add on feature it does not now work. this 'upgrade' is a nuisance.

    '''Home page in New Tab'''<br />
    There have been several ways suggested to do that, but the easiest for many users has been this add-on --> https://addons.mozilla.org/en-US/firefox/addon/custom-new-tab
    '''Additional question/comment'''<br />
    Paddy71 said: ''"If you use the add on feature it does not now work."''
    If you are referring to the search in the Add-ons Manager (''Firefox button > Add-ons'' or ''Tools > Add-ons'') that problem seems to have been corrected late yesterday afternoon. If you are referring to something else, you will need to give more details about what you are trying to do, the steps your are taking, what are the results of your action(s), and what you expect as a results.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • How do I populate my date fields placed on Master Page for multiple pages?

    I have a dynamic form with flowing fields. I inserted date fields using the Master Pages tab within Adobe LiveCycle Designer ES2, Windows 7 OS. I have only 1 Master Page. Everything on the form is working properly, except when I have multiple pages, the date fields are blank on all but the first page. One of the date fields has javascript in the exit event to calculate the second date field. I can manually edit the subsequent page(s) date fields, but I don't want the end user to have to do that. I want the date fields on the new pages to equal the date fields on the first pages. Below is my output with notes to provide a visualization of what I'm looking for.
    Many thanks in advance for anyone who can help me with this issue!
    Caroline

    Hey Mandy,
    Yes, both date fields are on the Master Page. The first one is set to "User entered - Required" and the second to "Calculated - User Can Override"
    And that's right, I used your script to calculate the second date field. The only thing I changed was the field name, and used 6 days instead since I wanted the calendar days to only run a full week, like start on a Monday and end on Sunday.
    Thx,
    C

  • Question: How to Redact a selected area (not a whole page) across multiple pages?

    Hello all,
    I often have to work with large PDF Documents using Adobe Acrobat Pro 9, almost all of which are scanned PDF files.
    As scanned documents often do, certain pages (and usually large page ranges) have blemishes or markings that I wish to redact (the most common of which are hole punch marks down the middle left hand side, or other markings at the top right, where I need my page numbers to be unobstructed).  I can manually select the hole punch marks on each page separately, and then redact, however, such blemishes are always in the same spot across a number of pages.
    Twice I have managed to select a particular area, then redact that area across a page range I specify using Adobe Acrobat 9.  Of course, after having done it both times, I promptly forgot how I did it.
    All of the forums talk about redacting entire pages across a page range - no one seems to need to redact only a specific selection of part of a page across a number of pages.  Does anyone know how to do this in Adobe Pro 9?  I know how to do it in Adobe Pro 8, but it appears to have been moved elsewhere in 9.
    Any help would be greatly appreciated!
    Thanks in advance,
    Alex.

    accobb wrote:
    Simple, right? Help is still needed.
    I think Adobe is aware we'd all like all adjustments to be localizable, but doing so is not "simple" given Lr's design (paraphrasing Eric Chan of Adobe). I mean, it's simple in a layers-based app, like Photoshop, but not Lr, due in part to performance considerations, and maybe other things.. If you want to weigh in for HSL, you can do it here:
    http://feedback.photoshop.com/photoshop_family/topics/hsl_controls_for_adjustment_brush_an d_gradient_tools
    Note: with a combination of colorization, white balance, and saturation adjustment, there is some limited capacity to "remix" local color.
    ~R.

  • Printing multiple copies per page, not multiple pages per sheet

    How can I print multiple copies of page per sheet of paper?
    I've got an image or PDF that I'd like to print 4 or more of per sheet of paper. But it can easily fit on one sheet. When I choose to print 4 copies and in the Layout section choose 4 copies per page what I get is for pages printed out with the image scaled down to a quarter of a page.
    What I'd like is the one image scaled down and printed 4 times on a single piece of paper.

    I don't completely believe that this is completely
    due to the drivers from the printer manufacturer.
    Nor did I say that it is. The software from which the doc is being printed is
    even more important re page layout options.
    Your statement of "It is a function of the printer driver..." is what led to that misunderstanding.
    I completely agree that the idea of 'print to PDF' is misleading and that I was mislead that all the print dialog options (like the quartz filters that do work in outputting to PDF and the # of copies that do not) should apply to creating PDF files using the print dialogue. It now says 'save to PDF' in 10.4 instead of 'output' or 'print'. I think some of my confusion is carrying over from UI decisions in 10.3.
    Obviously it wasn't designed to work this exact way
    or it would work this exact way.
    I have no idea what this statement means.
    It's stating the obvious in reply to your statement of the obvious ("the feature you are trying to use isn't designed to work that way."). If it were designed to work in the manner that I was wanting it perform I would have never posted a question about it.
    You can say it's not commonly done and that would
    apply to anything other than printing off one full
    sized copy of any single page. Using Quartz filters
    isn't "commonly done" but it's available.
    Not true... mailing labels, multipage spreads, thumbnails, reductions/
    enlargements, ad infinitum are far more frequently done than printing
    the same content on the same sheet multiple times. As I said, however,
    there are provisions for doing so when the need arises.
    You missed the point. Functionality is presented that is far less utilized than what I was desiring to do on this platform/set of applications as compared to other platforms/sets of applications. This is why I specifically mentioned the quartz filtering. I have personally met only one other person who uses quartz filtering yet I know over a dozen that want to print in the manner I originally posted about.
    I'm sure you have seen such results & I have done
    the exact same type of output hundreds of times on
    both Windows & Mac platforms as well as others...
    but not in the manner you are attempting to get it
    done. As you've found out, that just doesn't work.
    And I've seen it performed in the manner I was attempting, furthering the frustration.
    In any program you typically do specify page layout
    before number of copies... in fact, that is the cruxt of the
    issue. But getting the same content to repeat on a single
    page is not a matter of page layout and is not a function
    of the print operation unless you're dealing with commercial
    devices.
    I guess I've just been spoiled by those big office Xerox machines. I never thought of that functionality being at all special in any way.
    Thank you for the assistance.
    PowerMac G4 Digital Audio, iBook G3 500, iPod, radioShark   Mac OS X (10.4.3)  

  • How to add a single Button to multiple pages

    .....using Acrobat 9 pro Extended?
    I wish to place a single Button, (containg the same action), onto nearly 1000 pages in the same document, without having to laboriously copy/paste to each and every page. How can this be achieved please?
    I have tried selecting all the thumbnail pages in the Navigation pane, but the Paste function becomes disabled.
    Any assistance would be much appreciated.
    Nigel
    Message was edited by: Rafflesnh

    Just the ticket! Works a treat and saved me many hours of frustrating tedium. Thank you so much for taking the trouble to respond and so promptly.
    Kind regards and best wishes,
    Nigel

  • Single Thumbnail activate multiple page(image) slideshow?

    I want to be able to have a single thumbnail from a lightbox slideshow visible on a webpage. That when clicked activates a slideshow with multiple images...not mulitple images on a single page like in the tutorial where the social network icons pop up, but rather that triggers an independent multipage slideshow.
    Whenever I add an image it adds a thumbnail. I want one thumbnail to be seen for a 7 image slideshow. I can't figure out how to do this with the triggers. The tutorial also doesn't seem to address this.
    Right now what I'm doing is creating a lightbox slideshow, turning all the thumbnails in all states transparent, then hiding the collection of thumbnails behind an image (the image being the single thumbnail I want displayed) but this is getting cumbersome with some many transparent lightboxes next to each other.
    Is there a easier way. Its for a portfolio site, and each thumbnail should trigger a new project slideshow.

    I am having the exact same issue as englishm87. I would like to have a portfolio page with a grid of theumbnails. Each thumbnail will then trigger the multipage slideshow. There is an example on the Adobe Muse website here:
    http://www.adobe.com/products/muse/eliana-t-stein.html
    I don't quite understand how you can nest the composition widget with the slideshow widget...
    Could you provide more of a step by step answer?
    Thanks!

  • Why is Windows 7 showing firefox tabs open on a single window as multiple firefox windows on the taskbar?

    if i open an extra tab, an extra firefox icon gets added to the taskbar (stacked icons turned on) If i close a tab, an icon disappears.

    You can try to set some browser.taskbar.lists.* prefs to false on the about:config page.
    * browser.taskbar.lists.enabled
    * browser.taskbar.lists.frequent.enabled
    * browser.taskbar.lists.tasks.enabled
    I'm not on Windows 7 so I don't know which effect those prefs have.
    See http://kb.mozillazine.org/about%3Aconfig

  • Smartform : Print only selected pages from multiple pages

    Hi,
    I've a smartform with six pages: Pag1, Page2 ...Page6. (all six pages are one smartform )
    My driver program has six check boxes corresponding to the above six pages, based on my check box selection I want to print the pages.
    Does it possible with one smartform ? and How ?
    Do I need to create six different smartforms ?
    Your comment on this is highly appreciated.

    Dear Raja
    You have two option to full fill your requirment
    1,
    create a alternative in your main window.
    right click-> create-> flow logic -> alternative.
    Alternative hold two conditions namely true an false.
    This alternative acts as a if else condition. So give your condition in true and start creating your windows and tables/templates under it.
    And false condition create what all you require if true condition fails.
    With this you can control pages with the conditions.
    2.
    Create pages as per your requirement.
    In the global definition > initialization tab>
    if w_page = 1.
    control_parameters-startpage = '%PAGE1'.
    else.
    control_parameters-startpage = '%PAGE2'.
    ENDIF.
    w_page is the variable what you pass in the driver program
    Hope this will help you.

Maybe you are looking for