Why are the Internet printouts soooo tiny? I have to switch to chrome to get a decent copy!

The question is self-explanatory. Often I need a hard copy of information from a website. The result is so small that I can hardly read it. When I switch to Chrome (which is becoming more and more enticing as a browser) I get a readable clear copy.

What is the '''Scale''' set for in Page Setup?
https://support.mozilla.org/en-US/kb/how-print-websites#w_changing-the-page-setup
100% or Shrink to Fit is best.

Similar Messages

  • Why are the movie and television icons missing from my Apple TV menu?

    Why are the movie and television icons missing from my Apple TV menu?

    likely because it does not have a working connection to the internet
    check the settings and maybe reenter the wifi pasword

  • I've just started using the App Tabs. I think this feature could be handy but why are the sites not updated when I start Firefox. Now I have to manually update the site which is somewhat of a downer. Does any of you know where I'm going wrong?

    I've just started using the App Tabs. I think this feature could be handy but why are the sites not updated when I start Firefox. Now I have to manually update the site which is somewhat of a downer. Does any of you know where I'm going wrong?

    To answer the post title FireFox save all downloads automatically in the download folder, which you can find in the Documents folder. If you want to choose where to save your downloads go to tools>options>check always ask me where to save files.
    Secondly, I am assuming you have IE 8 installed as this is the only version that supports this fix that is currently not in beta. Go to control panel>internet options>advanced tab and reset the settings at the bottom. This may or may not fix the problem but it is a good first step.

  • Why are the photos I copied onto a DVD from I-Photo not viewable by a Windows PC?

    Why are the photos I copied onto a DVD from iPhoto not viewable on a Windows PC?

    Because you did it wrong? It's hard to know unless you tell us what you did.
    What should work:
    Select the photos you want to share
    File -> Export and export them to a folder on the desktop. Burn that to the disk with the Finder.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue.

  • Why are the apps on my IPad scattered across the whole thing and when I open them they turn to little rectangles in the corner of the screen and I can't even use them or tap on anything. Also when I turn my iPad it doesn't flip the screen over

    Why are the apps on my IPad scattered across the whole thing and when I open them they turn to little rectangles in the corner of the screen and I can't even use them or tap on anything. Also when I turn my iPad it doesn't flip the screen over.

    Hi The next thing to do is to Restore back to Factory Settings this will get rid of any bugs . After Restore use same Apple ID /Password then you should get all your Apps & data back If you still have this problem make an Appointment at Apple Store . Cheers Brian

  • Why are the iPhotos not listed in the finder?

    why are the iPhotos not listed in the finder?

    There are many, many ways to access your files in iPhoto:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.  If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    If you want to access the files with iPhoto not running:
    For users of 10.6 and later:  You can download a free Services component from MacOSXAutomation  which will give you access to the iPhoto Library from your Services Menu.
    Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and 10.5 Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    Show File:  a. On iPhoto 09 and earlier:  Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.    3.b.
    b: On iPhoto 11 and later: Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected.

  • Why are the threads start and terminate randomly?

    Hi there,
    I got the program below. I am wondering why are the threads start and terminate randomly? Everytime, I run the program, it produces different results.
    I know that these four threads have got same normal priority (should be 5), and under windows there is something called timeslice. Then these four threads rotate using this timeslice. How do we know what exactly the timeslice is in seconds? If the timeslice is fix, then why the results are ramdom?
    Thanks in advance!
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package mythreadone;
    * @author Administrator
    public class MyThreadOne implements Runnable {
    String tName;
    Thread t;
    MyThreadOne(String threadName) {
    tName = threadName;
    t = new Thread(this, tName);
    t.start();
    public void run() {
    try {
    System.out.println("Thread: " + tName);
    Thread.sleep(2000);
    } catch (InterruptedException e) {
    System.out.println("Exception: Thread "
    + tName + " interrupted");
    System.out.println("Terminating thread: " + tName);
    public static void main(String args[]) {
    // Why are the threads start and terminate randomly?
    new MyThreadOne("1");
    new MyThreadOne("2");
    new MyThreadOne("3");
    new MyThreadOne("4");
    try {
    Thread.sleep(10000);
    // Thread.sleep(2000);
    } catch (InterruptedException e) {
    System.out.println(
    "Exception: Thread main interrupted.");
    System.out.println(
    "Terminating thread: main thread.");
    1. Firstly, I set in the main function:
    Thread.sleep(10000);
    and I run the program it gives:
    Thread: 1
    Thread: 4
    Thread: 2
    Thread: 3
    Terminating thread: 1
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: 2
    Terminating thread: main thread.
    BUILD SUCCESSFUL (total time: 10 seconds)
    Run it again, it gives:
    Thread: 2
    Thread: 4
    Thread: 3
    Thread: 1
    Terminating thread: 2
    Terminating thread: 1
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: main thread.
    BUILD SUCCESSFUL (total time: 10 seconds)
    And my question was why it outputs like this? It suppose to be:
    Thread: 1
    Thread: 2
    Thread: 3
    Thread: 4
    Terminating thread: 1
    Terminating thread: 2
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: main thread.
    BUILD SUCCESSFUL (total time: 10 seconds)
    Why these four threads start and finish randomly each time I run the program? I use Windows, suppose there is a timeslice (i.e. 1 second), these threads have the same priority. Then the threads should start and finish in turn one by one. Am I right?
    2. My second question is:
    When I change the codes in the 'main' function into:
    Thread.sleep(10000); -> Thread.sleep(2000);
    it gives me the results like:
    Thread: 1
    Thread: 4
    Thread: 3
    Thread: 2
    Terminating thread: main thread.
    Terminating thread: 1
    Terminating thread: 4
    Terminating thread: 3
    Terminating thread: 2
    BUILD SUCCESSFUL (total time: 2 seconds)
    Run it again:
    Thread: 1
    Thread: 2
    Thread: 3
    Thread: 4
    Terminating thread: 3
    Terminating thread: main thread.
    Terminating thread: 4
    Terminating thread: 2
    Terminating thread: 1
    BUILD SUCCESSFUL (total time: 2 seconds)
    I tried several times. The main thread always terminates before or after the first child thread finished.
    My question is why it doesn't output something like:
    Thread: 1
    Thread: 2
    Thread: 3
    Thread: 4
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: 2
    Terminating thread: main thread.
    Terminating thread: 1
    BUILD SUCCESSFUL (total time: 2 seconds)
    or
    Thread: 1
    Thread: 2
    Thread: 3
    Thread: 4
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: 2
    Terminating thread: 1
    Terminating thread: main thread.
    BUILD SUCCESSFUL (total time: 2 seconds)

    user13476736 wrote:
    Yes, my machine has multi-core. Then you mean that if I got a one core machine the result should always be:
    Thread: 1
    Thread: 2
    Thread: 3
    Thread: 4
    Terminating thread: 1
    Terminating thread: 2
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: main thread.
    BUILD SUCCESSFUL (total time: 10 seconds)
    ???No.
    >
    How to explain my second quesiton then? Why the main thread always terminates before some of the child threads end? Thanks a lot.

  • Why are the application in the apple store are not compatible with the iPod touch 4g? Apple please realize there are some of us who still have the iPod touch 4g!

    Why are the application in the apple store are not compatible with the iPod touch 4g? Apple please realize there are some of us who still have the iPod touch 4g! I just want to know.

    Once I find the game i will truly screenshot that it states "not compatible for these models". I just find it RIDICULOUS that my iPod touch is in good condition and some of the applications that I want download sometimes are not compatible with my iPod touch 4g. I am not going to buy an ipod 5th generation if my 4g is still going strong since the year of 2010.

  • Why are the download options no longer categorized as in flv, WMP, MP3 etc?

    Why are the download options no longer categorized as in flv, WMP, MP3 etc?
    All one gets from the download drop-down menu is:
    (480p), (240p) or (360p) for example and the name of the video of course.
    The way it is now, I cannot identify the type of video I am downloading as I could before.
    Thanks!

    Ubi,
    Your assumptions are incorrect. Not all Youtube videos are offered in other formats; some are only offered in FLV format. Generally, only the very HD ones are offered in MP4. The format in which videos are offered are the decision of Youtube and/or the original poster of the video.
    I opted to not pay for the VDH converter. There are FREE converters that will convert FLV to other formats, but they do not interface with VDH. Even the VDH converter is a 2-step process (in both manual or automatic mode). The converter that is included free with VDH will put an ugly icon/watermark on your converted video--every frame of the video. To find a free converter, just Google "free flv converter" (with the quotation marks).

  • Why does the internet on my new macbook pro not work when my old macbook's does?

    Why does the internet on my new macbook pro not work when my old macbook's does? I'll have to turn the wifi off and back on multiple times to get the internet to continue to work on my Macbook Pro (running mountain lion but did it on lion also) when it runs fine on my old white Macbook (running lion). Is there something I can do to fix it or do I just have to deal with it?

    Here is your fix .. I have uploaded my properly calibrated profile get it here :
    http://www.megaupload.com/?d=YAJL6A9X
    And it should go to your user folder/Library/ColorSync/Profiles
    if you have one already you can rename either one ..
    and then go to system preferences - displays - color to select the profile .
    you will get rid of the blue tint while keeping correct color and gamma
    This is for the newer 2010 MBP's altho if same display was used might also give good results in the previous models as well . .

  • Why are the terms for adobe flash player appear to be written in arabic?

    Why are the terms for adobe flash player appear to be written in arabic?

    It opens on the English page for me:
    Some of your systems settings may be incorrect, so it opens on the first (Arabic) page.  But you can always click on the English bookmark to go to the English section.

  • IPhoto will not open iDraw files - why are the files "unrecognized"?

    iPhoto will not open iDraw files - why are the files "unrecognized"?

    What file format are you saving the files as?
    OT

  • Why are the conversions from pdf to word not accurrate?

    Why are the conversions I make not accurate?
    Every tiem I convert from pdf to word there are changes!

    Hi,
    Can you please share more details/examples? What changes do you usually notice? This will greatly help us further investigate.

  • My time capsule is full and when I attempt to back up, I only receive a preparing back up message and the earliest and most recent back up dates remain the same.  Why are the oldest backups not being deleted to make room for the newest backups?

    My time capsule is full and when I attempt to back up, I only receive a preparing back up message and the earliest and most recent back up dates remain the same.  Why are the oldest backups not being deleted to make room for the newest backups?

    linda mariefromharper woods wrote:
    My time capsule is full and when I attempt to back up, I only receive a preparing back up message and the earliest and most recent back up dates remain the same.  Why are the oldest backups not being deleted to make room for the newest backups?
    It may be in the process of making room.  What version of OSX are you on?    (That process can be excruciatingly slow on Leopard or Snow Leopard backups over a network;  Lion has improved it greatly.)
    A clue may be lurking in your logs.  Use the widget in #A1 of  Time Machine - Troubleshooting to display the backup messages from your logs.   That should help you figure out what's going on.  If in doubt, copy and post them here (but if the same ones repeat over and over, drop most of the duplicates).
    If you can, connect via Ethernet; it will be 2-3 times faster.

  • Why are the templates not in english? how do i change it

    why are the templates not in english? how do i change it

    dfields77 wrote:
    why are the templates not in english?
    To learn about this standard practice for template text, google "lorem ipsum".

Maybe you are looking for