Safari Printing Issues

For some unknown reason, the "Standard" print presets in the latest Safari, changed to the landscape format at 85% rather than the customary "Portrait" view @ 100%. This first occurred after installing the Safari 4.0.5 update; and this unwanted default setting is present in the presets for all three of my printers. Safari is the only application where I see this, all others print in the default portrait view.
I have tried making a custom preset (Standard-1), and setting the print dialogue to "Last Used Setting," but that does not work and defaults to the landscape view @ 85%, even though the "custom" setting is portrait @ 100%.
There must be a simple way to correct this but, I cannot find a way to change the Safari print presets. How can this be accomplished? Thanks.
Message was edited by: Lynn Poos

Thanks Bee, but I am fully aware of the ability of adding new presets in the print dialogue; however, that is what does not work. Safari had a default "Standard" preset of Portrait @ 100% scale. This is the default preset for all applications; however, for some reason Safari 4.0.5 mysteriously changed its default Standard preset to Landscape @ 85% scale.
I added a NEW preset and saved it as "Portrait Standard" in the portrait orientation @ 100%. The first page printed correctly as they always did after changing the orientation; however, when I tried to print the same page again, using the new Portrait Standard Preset, the orientation showed as Landscape @ 85% scale. This is what I am trying to correct.
What is strange is that this only happens on this computer and only with Safari 4.0.5. What I am hoping is that someone knows how to make the Standard preset default once again to its original settings.

Similar Messages

  • Safari printing issues in Yosemite

    Anyone else experiencing weird issues with printing websites from Safari in Yosemite? The print pagers are rendering weird, including printing full urls for all hyperlinked text in parentheses next to the hyperlink. Frames are also printing in individual pages. Another example: I tried to print a New Yorker article and it said it would be 119 pages!! The article was about 5,000 words. That's not 119 pages.
    Anyone else experiencing issues?

    Anyone else experiencing weird issues with printing websites from Safari in Yosemite? The print pagers are rendering weird, including printing full urls for all hyperlinked text in parentheses next to the hyperlink. Frames are also printing in individual pages. Another example: I tried to print a New Yorker article and it said it would be 119 pages!! The article was about 5,000 words. That's not 119 pages.
    Anyone else experiencing issues?

  • ICal | Safari printing issues

    Hello everyone,
    I have searched the posts and have not found anything helpful on this topic.
    I have an iMac OS X 10.6.7
    epson workforce 30
    after the latest Mac update, I have found Safari and iCal not printing at all. The print box appears but it is not sending anything to the print que. I have removed the printer driver reinstalled, updated the driver, etc. Chrome prints, word, excel, etc. all print just not safari or iCal.
    Can someone please help me?
    Thank you!!

    Did you ever solve this problem.  I have the color on the calendar but when it prints it doesn't show up? Also I can't figure out how to put a header on the calendar.  When it prints it has the July on it but it goes to the left .  It is a puzzle to me.
    rthietje

  • New MacBook Pro has real printing issues.  Is it just me??????

    Hi
    I love my MacBook Pro but I am having horrible printing issues.
    When I move my MacBook Pro from work to home I have to reboot everytime to make printing work otherwise I get error messages printing from Safari. Microsoft Office docs will print BUT only if I press the print button, if I go via the print menu I cannot press the print button.
    This is causing me all sorts of pain.
    Printers are an HP PSC2500 at home and an HP PSC2700 at work.
    Machine was all 'transferred' from a Powerbook 1.67Ghz that was working perfectly.
    Does anyone else have this problem or any idea what the fix could be??????
    Cheers.
    Robin

    Try Reset Printing System, a manu choice in the Printer Setup Utility.

  • Archive & Install, now printing issues

    Hi all,
    I have two printers: an HP6110 AllinOne, and an Epson Stylus Photo 1200. I recently performed an archive and install of my system, and then Software Update updated my system to OS10.4.11 (it was 10.4.10 before the archive and install).
    There are two parts to my current problems.
    1. The original Epson driver does not work anymore. (Version 1.29 is what I have, can't find anything later.) The CUPS/Gutenprint driver does work but doesn't access all the features of my Epson printer. So, what that means is that the color calibration settings I have for the Epson driver are no longer accessible. I need to be able to print color that is correct and calibrated to my monitor color.
    2a. Printing a page to the HP6110 off the internet results in a blank page being spit out, followed by a page that is cut off at the top, meaning only the bottom half of the page is printed on the paper. I have tested this printing from FireFox and Safari.
    Page setup seems normal.
    The HP driver version is 2.7.2. I have tried to download from the HP site but it always times out, so I don't know if I have the latest driver or not. (I think it's something with my firewall settings, but I haven't been able to figure it out. One thing at a time.)
    An internet page prints normally when sent to the Epson, but the HP is my workhorse printer. The Epson can do large format, so I usually keep large paper in it and just use it for that and for color correct printing. (Greg S., if you're out there, I tried to download the HP driver from OpenPrint with no luck.)
    2b. Although I can print to the HP6110, the color looks terrible--all washed out. I will admit that I have not gone into Adobe Bridge yet to see if my color settings survived the Archive and Install. So that may fix it for my Adobe apps. Word docs are not the same as they were, but not as badly off as the Adobe docs.
    Thanks, Folks! --D

    Update: Re Issue 2b: I checked the color settings in Adobe Bridge for my Adobe apps. They are all set to my original settings, using the calibrated profiles, so all is well there.
    I have been reading about other printing issues and may try some of those solutions offered:
    1. unplug everything for a while--although why this would solve it who knows? Crazy! But easy, so worth a try.
    2. download and reinstall the 10.4.11 update from the Apple web site, instead of running it via Software Update.
    3. reinstall OS10.4.x from the original disks and then download updates only through when you could last print, 10.4.9 or 10.4.10.
    I will post my results!

  • Safari Browser issue on Mac with crystal report viewer JSP

    Safari Browser issue with crystal report viewer JSP
    This is my configuration:
    Operating System : Mac X
    Browser : Safari Browser 3.1.4
    Crystal Report : XII Release 2
    Application Server : Jboss 4.2.0
    I am using the following code to view the crystal report in jsp.
    <%@ page import="com.crystaldecisions.report.web.viewer.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.application.ReportClientDocument" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.reportsource.IReportSource" %>
    CrystalReportViewer theViewer = null;
    ReportClientDocument document = null;
    IReportSource reportSource = null;
    theViewer = new CrystalReportViewer();
    reportSource = document.getReportSource();
    reportSource.refresh();
    theViewer.setReportSource(reportSource);
    theViewer.setOwnPage(true);
    theViewer.setHasExportButton(true);
    theViewer.setHasPrintButton(true);
    theViewer.setHasRefreshButton(true);
    theViewer.setHasLogo(false);
    theViewer.setEnableParameterPrompt(true);
    theViewer.refresh();
    theViewer.processHttpRequest(request, response, getServletConfig().getServletContext(), null);
    theViewer.dispose();This code is working fine when the browser is IE or Firefox on Mac X.
    But it is giving me error message when the browser is Safari on Mac X.
    If there is no parameter in the report then the error message is:
    Null Totaller
    If there is parameter in the report then the error message is:
    Parameter prompting is not supported
    Please Help.
    Thanks
    Edited by: VINCEJOHNSON on Jul 30, 2008 7:11 AM

    I am having this exact same issue, only on an ASP.NET page. I can print the report, but it does not display at all.

  • Printing Issues with HP OfficeJet 100 and Windows 8.1

    We use HP OfficeJet 100 mobile printers and have a printing issue.When we print the printer acts as if it is going to print and then prints one blank page.Printer will not print even though it is showing as default printer.Printer will just stop printing in the middle of a document, even in the middle of printing out a page. We are printing via the USB cableWe are using Windows 8.1We are connecting to laptopsWe have been using the HP mobile range of printers since 2004 and have only experienced these issues since we moved the laptops onto Windows 8/8.1 We have:Uninstalled and reinstalled the printer drivers – this fixed this issue for a short while and then it reappeared againCalled HP support and they directed us to the driver support page which had the latest print drivers, uninstalled and reinstalled drivers with them on the phone. This initially fixed the problem and then it returned a few days laterAfter trawling the support forums found directions to change the print processor to “WinPrint” – No effect as the processor was already on this settingDownloaded the HP diagnostic tool – HP Print and Scan Doctor – didn’t fix anything Any further help would be much appreciated.

    Hello there Lawrence, Welcome to the Forums! I hope you enjoy your experience
    I noticed your post about the troubles you are running into when you attempt to install your OJ 6100 printer on your Windows 8.1 laptop. I read all of your attempts and seen you have tried several methods to try and get the installation to complete successfully.
    I would like to make some suggestions that may help. Let me know how it goes!
    1. Check that Internet Explorer pop-up blockers are turned off before downloading the installer
    Internet Explorer Pop-up Blocker: How do I turn off Pop-up Blocker?
    Try to install
    2. If you're running McAfee Live Safe or any other firewall, please temporarily disable the "real time scanning".
    How to disable realtime scans
    Try the install
    3. Go to the start screen (you may also press the windows key + R to open the run box) and type %WINDIR% this should show the windows folder.
    Click on the folder and scroll until you see files. Look for a filed named "HPWINS*.DAT" (the * is for a number that varies) remove this file and try the installation.
    Try the install
    Enjoy your Monday!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • HP ENVY 100 D410 Printing issues...

    I have an HP ENVY 100 that has recently started having printing issues.  We recently upgraded to Mountain Lion and had no problems in the upgrade nor have we had any other software that we've changed.  The problem seems to be somewhat random and the results are always the same.  When commanded to print the printer acts as if it is running out of ink and then distorts the fonts creating vertical lines on the page and skipping rows creating what almost looks like a bar code. It's most peculiar and the only way I can find to solve the issue is to completely restart both my system and the printer.  Thinking that I had a driver issue on my Mac I used the utility on the printer to update drivers and none were found.  To insure that the problems wasn't isolated to just my machine I tried our laptop as well and it seems to have the same problem.  Has anyone had a similar problem?

    Hi Talon,
    That more liekly related to the software indeed, I would suggest trying the following steps:
    Reset the printing system as listed below:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&dlc=en&docname=c01371980
    Open the Applications folder, then Hewlett-Packard and then open the Device Utilities folder, launch the HP Setup Asisistant and follow the steps to reconfigure the device.
    If there is no Hewlett-Packard folder simply re-add the printer by clicking the plus button under Print & Scan.
    Now try printing and follow for any difference.
    If the same persists uninstall any HP Software by following the HP Uninstaller under the Hewlett-Packard folder.
    If there is no Hewlett-Packard folder follow the steps listed under Mac OS X 10.6, 10.7, and 10.8 > I used Apple Software Updates to install the product software below:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02440673&tmp_task=useCatego ry&cc=us&dlc=en&lang=en&lc=en&product=5157536#N1305
    Download and isntall the latest Lion Software below:
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-97934-2 &cc=us&dlc=en&lc=en&os=219&product=4073738&sw_lang=
    Once completing the installation click the Apple icon and install any available Software Update.
    Shlomi

  • New airport extreme and printer issues

    OK here is the deal
    I have the new airport and a hp psc 750 printer. I have a new macbook which can not print on this printer. It will recognize it thru bonjour but will not install the driver - the odd thing is that I have a pc connected directly and a windows based wireless laptop which both are able to print via this airport. I also have an external hard drive that is connected to the airport. All of the computers are able access this drive. So all appears in order except for the macbook-printer issue. I contacted tech support and they claimed driver issue. Anyone have any ideas - I have updated the most recent drivers for this computer and I was able to install this printer via a usb connection. Thanks

    There have been a few posts about issues with HP printers working or not working as the case may be through the extreme. I can't remember what they say, but a search for HP in this forum may well help you.
    Sorry to be so vague, just thought it might be a start for you.

  • Printing issue

    I just replaced my b/w cartridge which was working for about 10 copies and now trying to print a colored copy and while the color print is fine, the black ink is coming out blurry/smudged.     The screen indicates "Print cartridge problem  (Black) Refer to device documntatnion to troubleshoot"   I took out the cartridge, shook it, put it back in - no luck - help! Thanks

    Hi @LYNNHAAG , and welcome to the HP Forums!
    I see you're experiencing print issues.  I would love to try and help you, but I do need a little information first. I am linking a few HP Support documents below that will show you how to find your product number. Also, please include which operating system you are using. Also, if you're using Windows, please include whether your operating system is 32-bit or 64-bit. With this information and the product number we can provide you with accurate information.
    How Do I Find My Model Number or Product Number?
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please let me know what you find.  Thanks for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Need help diagnosing cause of printing issue w/ image distortion

    Hello, I'm looking for some expert advice for my print issue with image distortion (see above) on my files once setup and proofed by my printer.
    I have a large PSD background file out of photoshop (CMYK, 170mb psd) that is being placed into an InDesign document. No preflight errors, all correct SWOP cmyk settings, and I keep having issues where images distort on my printers proofs - they seem unable to explain the issue and can't offer any other suggestions beyond ("just try resaving/uploading again" which of course has an added fee with each upload...).
    The files are all fine on our end: on-screen, on our cmyk proofs, and our saved PDFs/packaged files. But everytime our printer opens these they seem to have these distorted image problems - scrambled images (almost as if there was a ghosted transparent image in the distorted area), strange lines (see above, and color distortion (usually greens and pinks, see above).
    Is this an issue with my settings/file formats? Maybe the issue lies on our printers end? I'll keep checking this throughout the day and provide quick answers to anyone who can help me get to the bottom of this.
    Adobe forums have been a huge help in years past so I decided this was by best bet for a resolution from those who know more than myself (or my printer), thanks for taking the time to help!
    - Ian

    Hello, I'm looking for some expert advice for my print issue with image distortion (see above) on my files once setup and proofed by my printer.
    I have a large PSD background file out of photoshop (CMYK, 170mb psd) that is being placed into an InDesign document. No preflight errors, all correct SWOP cmyk settings, and I keep having issues where images distort on my printers proofs - they seem unable to explain the issue and can't offer any other suggestions beyond ("just try resaving/uploading again" which of course has an added fee with each upload...).
    The files are all fine on our end: on-screen, on our cmyk proofs, and our saved PDFs/packaged files. But everytime our printer opens these they seem to have these distorted image problems - scrambled images (almost as if there was a ghosted transparent image in the distorted area), strange lines (see above, and color distortion (usually greens and pinks, see above).
    Is this an issue with my settings/file formats? Maybe the issue lies on our printers end? I'll keep checking this throughout the day and provide quick answers to anyone who can help me get to the bottom of this.
    Adobe forums have been a huge help in years past so I decided this was by best bet for a resolution from those who know more than myself (or my printer), thanks for taking the time to help!
    - Ian

  • Auto adjustment of page orientation causes printing issues with documents that have a page width greater than its page height.

    Hi,
    Since an upgrade from Word 2003 to Word 2010, we are experiencing printing issues with certain
    documents that have a page width greater than its page height.
    In Word 2003, it was no problem to set the page width greater than the page height while setting the page orientation to "portrait".
    In Word 2010, this seems impossible: despite leaving the page orientation to "portrait", if one changes the page width/height as stated,
    Word 2010 automatically adjusts the orientation to "landscape". Resetting the orientation to "portrait" will flip the page's width/heigth settings.
    This behaviour causes printing problems: the page prints out 90° rotated.
    I do not believe this is a printer driver issue: I tried several different printer drivers, and all give the same (bad) result. Setting the printer driver's page orientation settings (before printing) makes no difference, as
    Word 2010 seems to force the page orientation settings.
    Inserting the documents 90° rotated is not an option, since it causes problems with the printing margins.
    This is very annoying, since we have to print official documents of a municipality (driver's licences).
    Is there a workaround for this issue?
    Regards,
    Laurent Grandgaignage
    Sysadmin Gemeentebestuur Stabroek, Belgium

    Hi
    Thank you for using
    Microsoft Office for IT Professionals Forums.
    From your description, we can follow these steps to test this issue
    Step 1: Repair Office 2010
    1.      
    Click
    Start, and then click Control Panel.
    2.      
    Click
    Programs and Features.
    3.      
    Click the
    Office 2010 program that you want to repair, and then click
    Change.
    4.      
    Click
    Repair, and then click Continue. You might need to restart your computer after the repair is complete.
    Step 2:
    Rename the global template (Normal.dotm)Follow the steps for the operating system that you are using:
    Windows Vista and Windows 7
    a)      
    Exit Word 2010
    b)      
    Click
    Start.
    c)       
    In the
    Start Search box, type the following text, and then press
    ENTER:
    1.      
    %userprofile%\appdata\roaming\microsoft\templates
    d)      
    Right-click
    Normal.dotm, and then click Rename.
    e)      
    Type
    Oldword.old, and then press ENTER.
    Microsoft Windows XP
    a)      
    Exit Word 2010
    b)      
    Click
    Start, and then click Run.
    c)       
    In the
    Open box, type the following text, and then press ENTER:
    %userprofile%\Application Data\Microsoft\Templates
    d)      
    Right-click
    Normal.dotm, and then click Rename.
    e)      
    Type
    Oldword.old, and then press ENTER.
    f)       
    Close Windows Explorer.
    How to troubleshoot print failures in Word 2010, Word 2007, and Word 2003
    http://support.microsoft.com/kb/826845
    Please take your time to try the suggestions and let me know the results at your earliest convenience. If anything is unclear or if there is anything
    I can do for you, please feel free to let me know.
    Hope that helps.
    Sincerely
    William Zhou CHNPlease remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Remote Desktop Connection and printing issues

    Hi, 
    I am using Windows 7 on my desktop and also connected to Windows Server 2008 R2 to run applications in Windows Server. However, I noted there is problem with the printer issues. Sometimes, when I tried to print some documents using applications
    in Windows Server with my local printer in my room connected to desktop, it won't work.
    Moreover, I need to go to Windows Server, Component Service to restart printer spooler so it will work again. This is a pain. 
    I also noticed there is about 30 seconds wait to process any document to print.
    Unlike if I print documents directly from my local desktop computer running Windows 7 and connected to local printer, it only takes seconds to print.
    My desktop is connected to Windows Server 2008 via local area network. I should not expect such a significant delay in printing. 
    I also wonder why printer spooler needs to be restarted when printer is not working.
    Can anyone advise me about this? Can Microsoft looks into this problem and release updates to fix the bug to improve the system?
    Thanks
    Regards,
    Clement

    Hi,
    Please check if you turn on this settings:
    You need to set this up just before you connect. The setting will be saved so that you won't need to change it the next time you connect.
    1. Open Remote Desktop Connection by clicking the Start button, clicking
    All Programs, clicking Accessories, and then clicking
    Remote Desktop Connection.
    2.Click Options, and then click the Local Resources
    tab.
    3.Under Local devices and resources, select the Printers check box.
    4.Click Connect to start the session.
    Make sure that you select your printer in the Print dialog box each time you print.
    Karen Hu
    TechNet Community Support

  • Firmware upgrade?? Printing Issues?? HP Designjet Z6100ps

    I have a Designjet purchase as a demo in 1/2008. The last firmware upgrade that is currently installed is GG-GG_9.0.0.4. I am having printing issues where it prints about 4" of my prints from Apogee Printdrive (which comes from a windows computer) and then wants a restart with the firmware error code. Prints from the MAC are fine and will go straight thru. I have tried multiple firmware upgrades (the latest is GG-GG_11_00_00-2_mvl40-x86-opt_B.dmg) and it is all invalid. After a week of trial and error and trying different upgrades from different computers I am at my whits end. We print to the this printer presslayouts to look at before plating for press. Printing Banners from the MAC is no problem. Anyone have any suggestions. And of course, warranty and service is nill.

    I am linking you to the the Designjet forums below. Please just repost your question their it will have better chance of getting answered.
    Designjet forum

  • Hp laserjet pro mfp m126nw printing issues in windows server 2008 r2 standard

    hp laserjet pro mfp m126nw printing issues in windows server 2008 r2 standard
    printer  installed but print not coming ...
    please give me solutions of this problem

    go to http://www.hp.com/go/tools may help resolve the issue.
    Give Kudos to say "thanks" by clicking on the "thumps Up icon" .
    Click "Accept as Solution" if it solved your problem, so others can find it.
    I work on behalf of HP.

Maybe you are looking for

  • How to hide day, week , list icons in ADF Calendar

    Hi I am displaying a ADF rich Calendar with activities in each cell, My requirement is I should be able to navigate to previous and next month using the arrow button provided by Calendar , but at the same time I should only display month icon , the o

  • Unable to install Cisco VPN Client on Windows 7

    Hello, After a successfull uninstallation of Cisco VPN version 4. I try to install Cisco VPN Client version 5.0.07.0290. But after launching vpnclient_setup.msi, the wizard is starting. When I click on Next button, I have the following message: "inst

  • Discussion postings display HTML code in Outlook

    When using a discussion list connected to Outlook (2010), posts will show HTML tags in Outlook (see screenshot). According to a different thread this may be caused by additional columns added to the discussion list. I would like to understand if addi

  • How to save battery life (ipad mini)

    When I'm away from home and I don't have my charger. What are some ways that will save my battery life? I know the basics like screen brightness and double tapping the home button to delete history. Are there more ways I can save lots of battery life

  • Itunes 11.0.5.5 (win 7) won't backup my 3gs 6.1.3

    1. I've rebooted both computer and Iphone 2. Deleted old backup file 3. It will Sync, but it gives a vague error message saying it was unable to backup 4. Deleted .plist file under users At a loss here.. any help would be appreciated.