Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Firefox scrunches text

  1. #1
    Join Date
    Oct 2005
    Location
    Rome, Ga
    Beans
    2,339
    Distro
    Ubuntu 12.04 Precise Pangolin

    [SOLVED] Firefox scrunches text

    How can I get firefox to stop doing this?




    See in the yellow circle? I see that on quite a few sites, and it's annoying. Only happens in Ubuntu, not windows. Is there something I can do?
    Last edited by BLTicklemonster; May 4th, 2009 at 02:35 PM. Reason: Problem solved, thank you. quickly, too if I might add.

  2. #2
    Join Date
    Feb 2009
    Location
    Baja Oklahoma
    Beans
    1,652

    Re: Firefox scrunches text

    Change the text size, using Ctrl-+/Ctrl--.

  3. #3
    Join Date
    Jul 2006
    Location
    Here
    Beans
    11,187

    Re: Firefox scrunches text

    set the minimum font size to none.

  4. #4
    Join Date
    Oct 2005
    Location
    Rome, Ga
    Beans
    2,339
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Firefox scrunches text

    Quote Originally Posted by kerry_s View Post
    set the minimum font size to none.
    Thank you. That's been driving me nuts for a while now!

  5. #5
    Join Date
    Oct 2005
    Location
    Rome, Ga
    Beans
    2,339
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Firefox scrunches text

    Bah, it's still scrunching.

  6. #6
    Join Date
    Jul 2007
    Location
    Burlington, NC
    Beans
    1,995
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Firefox scrunches text

    New feature in Version 3 ...

    "View -> Zoom -> Zoom Text Only"

    This is off by default but I have to keep it on - effectively reverting to Firefox2 behaviour.
    Firefox3 will remember the zoom level for each individual site
    but "Zoom Text Only" applies globally to all sites.

  7. #7
    Join Date
    Oct 2005
    Location
    Rome, Ga
    Beans
    2,339
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Firefox scrunches text

    Doesn't make any difference for me.

  8. #8
    Join Date
    Jul 2007
    Location
    Burlington, NC
    Beans
    1,995
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Firefox scrunches text

    Hmmm, interesting, could you post a link to a site known to do it regularly?

  9. #9
    Join Date
    Oct 2005
    Location
    Rome, Ga
    Beans
    2,339
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Firefox scrunches text

    foxnews.com and www.intellicast.com for starters.

  10. #10

    Re: Firefox scrunches text

    The problem in Fox's case is:

    #story .gallery_container p.caption { top: 27em; }
    When ‘minimum font size’ is set to None this is fine, it lines up with the ‘height’ of the containing grey box (which is also specified in ‘em’, but it's a bigger ‘em’ because the font-size of the caption is smaller than that of the containing box).

    However when ‘minimum font size’ is larger than the stated caption text size, this causes the font-size of p.caption to be artificially increased. This in turn changes the size of ‘27em’ as used in the ‘top’ property. So the top-position gets bigger (moves downwards). But the grey containing box does not get bigger to match because its own font-size has not been affected, and consequently the text falls out of the box onto the article text, rendering it unreadable. It's not a bug; Firefox is doing what it's told, and other browsers with text-size hacks will exhibit the same behaviour.

    It's unusual to lay out your whole page (including images!) in ‘em’ units. In principle it should generally work, but it will always risk breakage by crude text-size hacks like text zooming and ‘minimum font size’. Best to avoid these features and stick to page zooming (View->Zoom in Firefox 3 with ‘Zoom text only’ turned off) when the text is too small, if you want to preserve page layouts as the authors intended.

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •