How to prevent users from resizing the font on my web site?
|
|
In fact, you should allow font resizing for accessibility reasons. |
||||
|
You can't. Font resizing takes place on the client side over which you simply have no control. Users are free to increase or decrease the font size as they please. If you're worried about your page markup breaking at bigger font sizes, then simply ignore it. There is no way to create a more or less sophisticated design resilient to any possible font size variation. And if the user chooses to play around with it, then it's ultimately their fault if the markup breaks. But they are likely accustomed to seeing broken pages already. Anyway, modern versions of browsers (IE, FireFox, Opera) simply scale the rendered page leaving relative proportions of elements intact. The problem is solved. |
|||||
|
|
Two options:
Here's the javascript for the font-size detector: http://www.alistapart.com/d/fontresizing/textresizedetector.js And now all you have to do is attach a resize function to the listener and surround all your markup in a div with id, "bodyContent" (that way the font event listener won't catch your compensation functions:
Then add the readjustment itself:
REMEMBER: Provide an alternative to those who can't see your defined font size. It's the right thing to do. You can put access to your alternative (e.g., via a pop-up question) within the PS. Also remember you can specify ALL of your element widths (images, etc.) in ems so that font resize adjusts everything, BUT it's a bit messy, there are different browser interpretations that must be compensated for, and you can't use sprites (because ems would just show more of the sprite subsection that you want. PSS. Specifying in px won't do you any good on modern browsers...don't know why that seems to be a popular answer here. |
||||
|
|
|
what about converting your text to image. |
|||||||||||||||||||||
|
|
I don't know if is your case, but sometimes when people ask this is because their layout is fixed. Web is not meant to work like that. Remember The Web is not Print |
|||
|
|
|
Technically you cant, but what you can do is:
Thats it. MOST of users cant resize the font now, unless they know how to hack =) Do it, if you: 1. Have lots of time 2. Want to experiment new things 3. Dont mind waste your time and energy (lol) |
|||
|
|
|
You can't do that. Browser's "zoom" controls are not in the power of the developer to adjust. Besides, the "font" will be different based on different screen resolutions (if your font size is in pixels, for example). |
|||
|
|
|
Its the law in the UK that you should not provide a website/servic that restricsts access to those with disabilities.
Although this law is not enforced, it is seen as "The Code of Practice which specifically mentions websites". Its only a 'code of practice', and not everyone follows it. |
|||
|
|
|
While generally a bad idea, the situation is not as clear cut as previously mentioned. As of now (Sep 2012), it currently is possible to prevent users of Google Chrome and Safari from resizing the rendered font. The method below, is provided for the sake of completeness, and to raise awareness. Please avoid the temptation to utilize this folks, as it seriously breaks usability and accessibility guidelines.
As per this Mozzila discussion, the extension was intended for mobile, but it unfortunately worked its way into the WebKit powered desktop browsers. It is non-standard, and hence a prefix must be used. The corresponding extensions for Firefox and IE, Additionally, there is a WebKit bug logged regarding the issue. Example: There has been horrible abuse of this, on a number of sites. Facebook's Social plugin, is one such case. Viewing the above link, in Safari or Chrome, will currently not allow resizing via Ctrl+ [Lin/Win] or ⌘+[OS X] |
||||
|
|
|
I guess what you really want is to keep the image-text-ratio as it is, because your customer insists that the user gets a consistent, fixed layout (even though you tried to tell him that this is not how the web works). In that case, an easy workaround is to specify font sizes in |
|||