|
| |
|
|
SBO
Posts: 30 Joined: 12/30/2004 Status: offline
|
Text Size in IE Browser - 8/14/2005 18:22:01
On the toolbar in IE any user has the option of changing the font size. View - Text Size - Medium, is there any CSS code that will disable this and always give a default text size set by the developer???
|
|
|
|
Tailslide
Posts: 5972 Joined: 5/10/2005 From: Out here on the raggedy edge Status: offline
|
RE: Text Size in IE Browser - 8/15/2005 3:27:56
Exactly Caz - SBO that option to increase text size (in every browser not just IE) is there for a reason. You need to ensure your design will work at the largest text size increase in IE and also a couple of increases in Firefox.
_____________________________
"My strategy is so simple an idiot could have devised it" Little Blue Plane Web Design | Blood, Sweat & Rust - A Land Rover restoration project
|
|
|
|
SBO
Posts: 30 Joined: 12/30/2004 Status: offline
|
RE: Text Size in IE Browser - 8/15/2005 22:36:37
There are parts of my websites that I wouldn't mind increasing the font size but other parts I would. Take your website for example www.littleblueplane.com the little blue plane part is not affected by the increase or decrease in font size. I'm using css and with my code and have declared a font size for all my text. However when I change the font size it almost randomly picks some text to enlarge or decrease.
|
|
|
|
Tailslide
Posts: 5972 Joined: 5/10/2005 From: Out here on the raggedy edge Status: offline
|
RE: Text Size in IE Browser - 8/16/2005 3:28:58
The little blue plane bit on my site is an image which is why it doesn't go up and down in size! Although it's fine to use images for logos and obviously pictures (as long as they've got alt tags) you don't want to be using images of text for big areas of your site - it's not accessible for the (sizable) amount of people who need to increase the text-size of websites plus Search Engines like text content they don't give much value to images (apart from noting the alt tag) so you'd be wasting an opportunity there. If you're declaring a base text-size in the CSS then it should scale up or down relative to itself (does that make sense?) - give us a URL and we can check. BTW what sizing method are you using to declare the text-size - pxs, ems, %?
_____________________________
"My strategy is so simple an idiot could have devised it" Little Blue Plane Web Design | Blood, Sweat & Rust - A Land Rover restoration project
|
|
|
|
SBO
Posts: 30 Joined: 12/30/2004 Status: offline
|
RE: Text Size in IE Browser - 8/16/2005 4:08:55
Hava look at one of my websites www.afocus.biz In the software development section of the website I have spent a great deal of time validating my code. I have been to a number of different internet cafes to check how it looks, It looks good in nearly all of them except one which seems to enlarge the text. The problem is the section is a mixture of tables and layers and the larger text increases the size of my tables making the whole page look a mess. The table at the top of the page with Microsoft Excel, Microsoft Acess, .. has a spanned class linking to a css sheet with the following code. .headertext { font-family: Tahoma; font-size: 12.0pt; color: #FFFFFF; }
|
|
|
|
golfer
Posts: 1758 Joined: 1/5/2005 From: Bath, Wiltshire, UK Status: offline
|
RE: Text Size in IE Browser - 8/16/2005 9:39:15
Hi Just looking been looking through your site and on the software page you are displaying the W3C HTML validation logo when the page fails to pass the test. I didn't even try the CSS validation. From my understanding you are not permitted to show this logo on any page which fails validation.
_____________________________
Ian 'You'll miss me when I've gone'
|
|
|
|
BobbyDouglas
Posts: 5452 Joined: 5/15/2003 From: Arizona Status: offline
|
RE: Text Size in IE Browser - 8/17/2005 5:31:20
quote:
since it would render the site inaccessible for those with less than 20/20 vision. - I have less than 20/20 vision and I can see all normal sites perfectly fine... There does seem to be a few people that reply on the text size option in IE to modify the text size in their browser. Also, there are people with widescreen laptops that use IE, and by default, their text size is set to largest, meaning sites using %s and ems looks HORRIBLE. (Verified on Dell/Toshiba/HP laptops) Of course they can just simply change their text size, but not many will know that. By the time they realize that you can change that size, they already left your site. You kinda have to weigh what is most important... do you think your users might have sight issues? If so, how bad? Would a 2nd CSS file for larger text do the trick? Is yoru text already large enough? What about those on widescreen laptops? Just think about your users, and then modify accordingly.
_____________________________
Arizona Web Design - Mr Bobs Web Design in Arizona The Arizona Web Hosting Challenge
|
|
|
|
Tailslide
Posts: 5972 Joined: 5/10/2005 From: Out here on the raggedy edge Status: offline
|
RE: Text Size in IE Browser - 8/17/2005 6:19:18
It's a simple thing - if you're offering goods and services on the internet then your site should be accessible to all. If you use px font-sizing then your site won't be accessible to those with poor eyesight who use IE. If you use ems or % or a combination of relative font-sizing methods then your site will be accessible as regards font-size. Three of my neighbours regularly had problems looking at websites due to the text-size. These are people who wear glasses normally but wouldn't be considered to have impaired vision as such. I introduced them to Firefox and explained how to increase text size - alas most people are stuck with IE still. If widescreen laptops come with IE set to large by default then the users need to change their default setting (or preferably their browser)- this is not your responsibility. Every other system on the planet (far as I know!) comes with it's default text-size set to medium. As bobby said, which group is likely to be larger, those few with a widescreen laptop who don't know how to alter their browser setting, or the rest of the world? If you don't like using ems then use % instead - just don't use px or pt.
_____________________________
"My strategy is so simple an idiot could have devised it" Little Blue Plane Web Design | Blood, Sweat & Rust - A Land Rover restoration project
|
|
|
|
SBO
Posts: 30 Joined: 12/30/2004 Status: offline
|
RE: Text Size in IE Browser - 8/17/2005 22:29:27
Some real helpful advice here thanks guys. The page did validate at one stage, but your quite right it doesn't validate now. I've had a bit more of a look around at other websites that adjust to the increase in text size and have come to the conclusion that I need to keep this in mind with any future development.
|
|
|
|
c1sissy
Posts: 5084 Joined: 7/20/2002 From: NJ Status: offline
|
RE: Text Size in IE Browser - 8/23/2005 9:43:44
Hi SBO, just a little pointer regarding text sizing from BigJohn at Pie, in your
html, body {
font-size: 100.01%;
}
Then in the rest of your styles it is suggested that you use the em's for font sizing. Here is a great explaination of this usage. hope this helps you out a bit on the sizing issue with fonts.
_____________________________
Deb-aka-c4Ksissy high panjandurum and alpha female of the silverback tribe As decreed by Jesper 5-24-2003. The only stupid question is... the one that is never asked!! http://directory.css-styling.com http://fmsforum.com http://positioniseverything.net/ http://www.tanfa.co.uk/
|
|
New Messages |
No New Messages |
Hot Topic w/ New Messages |
Hot Topic w/o New Messages |
Locked w/ New Messages |
Locked w/o New Messages |
|
Post New Thread
Reply to Message
Post New Poll
Submit Vote
Delete My Own Post
Delete My Own Thread
Rate Posts
|
|
|