Force Accepted
SpideyMod
Community Support Moderator @Experts Exchange
Main Topics
Browse All TopicsHi guys...
is there a way to check a user's browser settings when they visit your website. my website has many frames with text in them, and I've set the fonts to size 2. but after testing on a computer with the text settings set to large. the letters are resized and everything goes out of place. I was wondering if there is a way to overwrite browser settings with dreamweaver, or if someone can be kind enough to share a piece of html, asp, or dhtml code that can check the browser settings and overwrite them to what I want...I've searched the web and can't find any tutorials or help on this.
thanx for all your help,
Jovix
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Also consider that browsers are made to adjust to the user's needs. It's all wonderful that your page looks great in its 10pt font, but then when someone with limited eyesight comes in, they won't be able to read it at all. The best pages will be user-friendly and fit the USER's needs, not the designer's desires.
Business Accounts
Answer for Membership
by: MHenryPosted on 2002-08-21 at 10:09:10ID: 7233988
As with most things web, there is no perfect answer.
But for 4.0+ browsers, your answer is simple. Don't use font size 2, use CSS and set your font size like this:
P {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; line-height: 14px;
}
(assumes an external CSS file)
If you use CSS and remove the font tags in your html, changing the view size to large will not change your text size on the screen. You will have to remove ALL the font tags in your html code for this to be effective. Please note, your pages will not print out the same way they will look on screen. If that's a problem, you may just have to design the page to accommodate both print and screen.