![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Dear all, My monitor was set to 1600x1200 so the fonts in IE is too small for me even when I set the "View->Text Size->Largest"... I don't have previlage to change the monitor resolution... so I have to try to "hardcode" IE to display any webpage by a scale of 200%... in Netscape there is such a scale factor 200% and even 300%, I like that, but IE does not have that one. I was told that CSS can do this job... so I have written the following .CSS file to be setup in IE "Tools->Internet Options->Accessbility->Using user style sheet" |
#3
| |||
| |||
|
|
* I don't really know what IE's doing with your stylesheet, but since * has the lowest specificity of all selectors the page's own CSS is "winning". |
|
You might like to try explicitly setting BODY, P, TD, TR, TH with ! important and then let other fonts scale from there, |
#4
| |||
| |||
|
|
My monitor was set to 1600x1200 so the fonts in IE is too small for me even when I set the "View->Text Size->Largest"... I don't have previlage to change the monitor resolution... |
#5
| |||||||
| |||||||
|
|
gino wrote: I don't have previlage to change the monitor resolution... Ack. Why not? Do you have privelages to change the system font size? |
|
in Netscape there is such a scale factor 200% and even 300%, I like that, but IE does not have that one. Why don't you use Netscape if it does the job? |
|
I was told that CSS can do this job... so I have written the following .CSS file to be setup in IE "Tools->Internet Options->Accessbility->Using user style sheet" body { font-size: 110% !important; } Hm. Not sure why you need to set the font-size to larger than 100%. Have you tried that? |
| If I set up IE "Tools->Internet Options->Accessbility->Ignore webpage font size", then all the texts on the webpage become large Too large? Or just the right size? This is important for the user css. |
|
table size is still very small, that's to say, the table size does not change accordingly, so many characters in that table becomes squeezed and overlapped into a column... If an author codes font size in pixels, and then sets width for elements (e.g., table cells) in pixels, the design is fragile, and may break for you. I hope the following can be done: all fonts scale 200% uniformly, with respect to their original size; smaller fonts become still smaller relative to other fonts, after the scaling... Sure, that's possible. But ISTM that you need to set your font size once, and make it exactly as big as you want. Then enforce that font-size via user css. and column/table size should change accordingly, but change line smartly, i.e., I don't want to use horizontal scrolling, because my mouse can only do vertical scroll using the mouse wheel... so the texts should display screen-wide, but without the horizontal scroll, I really hate reading text by horizontal scrolling... These are the symptoms of bad web design. |
|
Please help me on such a CSS style sheet... how to write that one? First, try to set the font-size for your system to something that you like. Then, try this: |
| body, p, table, tr, td, li, div { font-size: 100% !important; } table, col, td, th { width: auto !important; } |
#6
| |||
| |||
|
|
Do you mean that I need to fix the font-size to be 20pt, etc.? But I don't want that, because I know that the websites have their different size of fonts, I just want all texts to scale 200% uniformly... that's to say, original 20pt texts -> 40 pt texts original 30pt texts -> 60 pt texts, original 10pt texts -> 20 pt texts, |
#7
| |||
| |||
|
|
Dear all, My monitor was set to 1600x1200 so the fonts in IE is too small for me even when I set the "View->Text Size->Largest"... |
|
I don't have previlage to change the monitor resolution... |
![]() |
| Thread Tools | |
| Display Modes | |
| |