23" screen how do I get the pages to stay big enought to see? I use ctrl++ then I restart and they are small again don't want to hit crtl ++ 20x every time

I used some new add on but didn't work... Font only make font bigger word went over picture make it to hard to read. Want entire page bigger.
I bought a new 23" monitor so I could see the print... internet explore pages got bigger no problem but I can not get the ones on firefox (the one I use most of the time) seem smaller then they were on my 19" monitor. I want it to stay big not have to hit ctrl++ 20x for each page Please help me fix this before I have to figure out a different browser

There is an extension called NoSquint that might help.
* https://addons.mozilla.org/en-US/firefox/addon/nosquint/
After I got a 27" screen, I had problems with the interface text being too small as well. That can be fixed with Mozilla applications if you set up a userChrome.css file in the profile inside a subdirectory called chrome. The code I used:
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
*{font-family: Trebuchet MS !important; font-size: 15px !important;}

Similar Messages

  • How do I get the page on the screen larger and to stay larger all the time?

    my pages on my screen were large; all of a sudden the pages are display smaller on the middle of the screen. I can zoom a particular, but I have to zoom each time I go to another website or another page. How can I get the page to display larger without having to zoom each page displayed on the screen?
    == This happened ==
    Every time Firefox opened
    == After i downloaded updates to Adobe Reader 9.

    Reset the page zoom on pages that cause problems: '''View > Zoom > Reset''' (Ctrl+0 (zero); Cmd+0 on Mac)
    See [[Text Zoom]] and [[Page Zoom]] and http://kb.mozillazine.org/Zoom_text_of_web_pages
    If you need to adjust the font size on websites then look at:
    Default FullZoom Level - https://addons.mozilla.org/firefox/addon/6965
    NoSquint - https://addons.mozilla.org/firefox/addon/2592

  • HT1689 I need to get my iPod to no longer be associated with the original i store account. My husband set it up through his account but now I have my own account. I don't want to go through his every time I want to make a change. how do I make this change

    I need to get my iPod to no longer be associated with the original i store account. My husband set it up through his account but now I have my own account. I don't want to go through his every time I want to make a change. how do I make this change?

    I am trying to stop using my I-pod under my husband's I-Tune account.  It was set up under his account and the only way I can use it under my account is to erase all of the songs my husband loaded on for me.  I had heard there is a duration that I-Pods are locked into to one account only, and I am trying to discover how I can use my account without having to erase everything on the I-Pod.  I know it sounds confusing but that's the way I-tunes have set it up.  thanks for asking.

  • Have picture of apple on screen  how do I get home page from there ?

    have picture of apple on screen, how do I get home page from there ?

    It sounds like your iPod is frozen on the startup logo.  Have you tried a hard reset yet?  To do this, press and hold both the Sleep/Wake and Home buttons together long enough for the Apple logo to appear.
    See this article for more troubleshooting.
    http://support.apple.com/kb/TS3281
    B-rock

  • How do I get the page to shift up by as little as 1/8" so it does not cut off the bottom coding of

    How do I get the page to shift up by as little as 1/8" so it does not cut off the bottom coding of official documents? There is usually plenty of white space at the top. Center command does not seem to help.

    You cannot change pdf files in Reader. You can set it to print with a shrink to fit option.

  • How can i get the icons to stay at the bottom of my screen?

    How can I get the icons to stay at the bottom of my screen even after closing the application?

    When it's open, control-click its Dock icon and choose Keep in Dock.
    (72521)

  • How do you get the page count on an old hp 1012 laserjet printer?

    How do you get the page count on an old hp 1012 laserjet printer?

    You should find this information on the configuration page. To print a configuration page, press and hold the green GO button until all of the lights cycle, approximately five seconds, then release the button. The Configuration Page will print.
    You can find more information in this document: Identifying Page Count.
    I am an employee of Hewlett Packard.
    - - Please mark Accept As Solution if it solves your problem so others can more easily find the answer - -
    - - Please click the Kudos star if you would like to say thanks - -

  • How can I get the page to curl when turning to the next page in iBooks author?

    How can I get the page to curl when turning to the next page in iBooks author?

    I don't think you can. If you need that effect, you should use ePub (that can be authored via Pages) not iBA.
    I hope Apple give us the option in the future though.

  • HT5557 I've always been able to see the clock at the top of the screen in iPad iBooks, but the clock has now disappeared unless I tap at the stop of the screen.  How can I get the clock to stay at the top of the screen?

    I've always been able to see the clock at the top of the screen in iPad iBooks, but the clock has now disappeared unless I tap at the stop of the screen.  How can I get the clock to stay at the top of the screen?

    cktan124:   I searched around and found the iPad does not have a PRAM.
    Anyone else want to guess?
    I found many folks here trying to hide of the clock, but I need the clock.  I use a PDF on my iPad for my notes when I am speaking in front of an audience.  I need the clock so I can kep track of time.

  • How do I get the Interval to keep from repeating after it's used once?

    How do I get the Interval to keep from repeating after it's used once? Because I tried clearInterval but I couldn't get it working.
    When my code looks like this, with ClearInterval, it refuses to execute my action, which is to change scenes after a short interval:
    (Pardon if there is some formating errors, I had to reformat it for the Internet)
    Code with clearInterval command
    stop(); 
    Kollektiv.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_2);
    function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void{
       gotoAndPlay(29);   
       var myInterval:uint = setInterval(fl_ClickToGoToNextScene_14,3000);   
       clearInterval(myInterval);
    function fl_ClickToGoToScene_14(event:MouseEvent):void{
        MovieClip(this.root).gotoAndPlay(1, "Testside");
    However, when my code looks like this it refuses to stop looping:
    Code without ClearInterval command
    stop();
    Kollektiv.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_2);
       function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void{
       gotoAndPlay(29);
       setInterval(fl_ClickToGoToNextScene_14,3000);
    function fl_ClickToGoToScene_14(event:MouseEvent):void{
        MovieClip(this.root).gotoAndPlay(1, "Testside");
    Any ideas? Also, feel free to dumb your answer down, because I am completely new to Flash, Actionscript and coding.

    If you insist on using setInterval - you need to declare interval id in a higher scope so that you can clear it later:
    stop();
    var myInterval:uint;
    Kollektiv.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_2);
    function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void
              gotoAndPlay(29);
              myInterval = setInterval(fl_ClickToGoToNextScene_14, 3000);
    function fl_ClickToGoToScene_14():void
              clearInterval(myInterval);
              MovieClip(this.root).gotoAndPlay(1, "Testside");
    I suggest you use Timer instead:
    stop();
    import flash.events.TimerEvent;
    import flash.utils.Timer;
    var timer:Timer = new Timer(3000, 1);
    timer.addEventListener(TimerEvent.TIMER, fl_ClickToGoToScene_14);
    function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void
              timer.start();
              gotoAndPlay(29);
    function fl_ClickToGoToScene_14(event:TimerEvent):void
              timer.stop();
              MovieClip(this.root).gotoAndPlay(1, "Testside");

  • How do I get the watch to stay awake longer?

    I noticed that when I am using the watch, it only stays awake for a matter of seconds before going dark.  For example, I was using the Stop Watch app and while trying to time something, the watch went dark after a few seconds.  This caused me to have to lower and raise my wrist again to access the app again.
    How do I get the watch to stay awake longer when using some of the apps?
    Thanks!

    I Think it varies with what app you're using, I just went on the message app & left it & it lasted for a good 10/15 secs before going dark plus like what DonCote said you can always just tap the screen to get the screen back up instead of flicking your wrist. Not sure whether apple will change this as they'll want to do anything to help battery performance...

  • How can i get the backlight to stay on longer on ipad2

    how can i get the backlight to stay on longer on ipad2...when i play "words with friends" the screen turns dark in a minute or so

    Got to Settings > General > Autolock to set the lock time.

  • I accidentally erased a music album that I purchased on iTunes. How can I get the iTunes store to recognize that it is no longer in my iTunes library and download it again?

    I accidentally erased a music album that I purchased on iTunes. How can I get the iTunes store to recognize that it is no longer in my iTunes library and download it again?

    Delete the broken links in iTunes then look at your purchased list to redownload.
    If this happened because you were deleting files from the iTunes folder in Finder, don't.  You have to let iTunes do all the deleting and moving or you will end up with broken links.

  • Thanks in advance..apple newbie here.  Have 12 photos/videos on camera roll, but only 3 appear on photostream (which is on), how do i get the rest over so that i can see them on apple tv.  thx so much

    Thanks in advance..apple newbie here.  Have 12 photos/videos on camera roll, but only 3 appear on photostream (which is on), how do i get the rest over so that i can see them on apple tv.  thx so much

    FAQ photo stream http://support.apple.com/kb/HT4486

  • I can't find preferences for the notes app. and every once in awhile some of my notes just disappear at start up, I see the name and then it refreshes and they are gone, very annoying. Can anyone tell me why it does this and how to stop it? thanks

    I can't find preferences for the notes app. and every once in awhile some of my notes just disappear at start up, I see the name and then it refreshes and they are gone, very annoying. Can anyone tell me why it does this and how to stop it? thanks

    Hi again, I am on an iMac using OSX 10.7.5, I"ve taken screenshots to show you I think my settings are correct

Maybe you are looking for