![]() |
| | #31 | |
| Mysterious C++ User Join Date: Oct 2007
Posts: 14,099
| Some text should really be smaller, some larger. Text menu items and things like that are suited for smaller font. But body text is not. So even when I set the minimum font size to 12, sites get messed up because they can't show 11px in some places where it would fit, so it not a solution. The solution is, like you said, to use relative size.
__________________ Using: Microsoft Windows™ 7 Professional (x64), Microsoft Visual Studio™ 2008 Team System I dedicated my life to helping others. This is only a small sample of what they said: "Thanks Elysia. You're a programming master! How the hell do you know every thing?" Quoted... at least once. Quote:
| |
| Elysia is offline | |
| | #32 | |
| C++ Witch Join Date: Oct 2003 Location: Singapore
Posts: 10,355
| Quote:
__________________ C + C++ Compiler: MinGW port of GCC Build + Version Control System: SCons + Bazaar Look up a C/C++ Reference and learn How To Ask Questions The Smart Way | |
| laserlight is online now | |
| | #33 | |
| subminimalist Join Date: Jul 2008 Location: NYC
Posts: 3,944
| Quote:
![]() I'm a bit of a hypocrit, because when I write websites I do use the relative size "small" and "x-small" for little things like "close" at the bottom of a pop-up menu. Of course, when I look at them normally they are still 22pt, so I have to turn that off to make sure the aesthetic is okay. But when I turn it back on, nothing gets messed up because I set my divs up correctly (that is the real #1 problem on websites today). Like I said, all the text at cboard is for me 22 pts and vBulletin handles that just fine, because it was programmed well. There are like 5 or 6 relative sizes, so I don't understand why anyone ever has to use an absolute point size*. And I do agree with everyone in the sense that I cannot see any reason to ever dictate a size for an actual paragraph of text. It should appear as the user's default size (which you do have set). *Actually I do know why they do it: these are the same designers responsible for the proliferation of the "paper width" site like this: Scientists warn carbon dioxide may soon make coral reefs extinct | Environment | The Guardian which is a fixed, absolute width in the middle of your screen. This is particularly ridiculous considering most new monitors are widescreen. It is basically just laziness in design IMO.
__________________ Accuracy and integrity mean nothing if you don't make it past the censors...PYTHAGORAS | |
| MK27 is offline | |
| | #34 |
| & the hat of GPL slaying Join Date: Sep 2001
Posts: 5,730
| MK27, I've been a web programmer (not silly Joomla template stuff like this but real programming) for some years now. I would like to say on behalf of web programmers: STFU. A web designer (which is actually what we are talking about) should not expect the user to make any changes to their browser settings in order to work. That means the font size needs to be adequate for the majority of users. Elysia: When you say a "small monitor" that typically implies a lower resolution which in turn means that the fonts are going to be appear larger since most font sizes are giving in absolute terms (pixels, xx-small, x-large, etc) and not relative (smaller, larger, em, etc). |
| Thantos is offline | |
| | #35 | ||
| C++ Witch Join Date: Oct 2003 Location: Singapore
Posts: 10,355
| Quote:
Quote:
__________________ C + C++ Compiler: MinGW port of GCC Build + Version Control System: SCons + Bazaar Look up a C/C++ Reference and learn How To Ask Questions The Smart Way | ||
| laserlight is online now | |
| | #36 |
| & the hat of GPL slaying Join Date: Sep 2001
Posts: 5,730
| Best practice yes. Common practice no. |
| Thantos is offline | |
| | #37 | |||
| Mysterious C++ User Join Date: Oct 2007
Posts: 14,099
| Quote:
As I was taught, it's easier to read shorter lines than longer. Lines should typically be around 13 words or so. That means that the text part must be fixed width. And the rest of the content is usually images and stuff and images should never stretch, so usually it becomes fixed size too. And centering the whole thing on the page instead of putting it all the way to the left or the right is just more visually pleasing. After all, the web pages must target a minimum resolution, usually 1024 x 768. Quote:
TV has resolution 1920 x 1080 and the monitor 1920 x 1200. You might have a hard time reading that small text on a 24 inch monitor for which is really suited for such high resolution.
__________________ Using: Microsoft Windows™ 7 Professional (x64), Microsoft Visual Studio™ 2008 Team System I dedicated my life to helping others. This is only a small sample of what they said: "Thanks Elysia. You're a programming master! How the hell do you know every thing?" Quoted... at least once. Quote:
| |||
| Elysia is offline | |
| | #38 |
| & the hat of GPL slaying Join Date: Sep 2001
Posts: 5,730
| 42 LCD TV != monitor I get what you are saying. From the web design perspective I doubt many people are considering how the page will look on a large screen like a 42" TV. In fact I think most people are actually looking in the opposite direction: How will the page look on a 3" screen? |
| Thantos is offline | |
| | #39 | |
| Mysterious C++ User Join Date: Oct 2007
Posts: 14,099
| Yeah, the text is somewhat readable on a 42 inch TV. But then, how will it look on a 24 inch monitor or smaller? I keep wondering that. Why do people use such small text?
__________________ Using: Microsoft Windows™ 7 Professional (x64), Microsoft Visual Studio™ 2008 Team System I dedicated my life to helping others. This is only a small sample of what they said: "Thanks Elysia. You're a programming master! How the hell do you know every thing?" Quoted... at least once. Quote:
| |
| Elysia is offline | |
| | #40 | |
| subminimalist Join Date: Jul 2008 Location: NYC
Posts: 3,944
| Quote:
And judging from the quality of a double digit percentage of professional web work out there, being a professional web designer amounts to exactly squat in my book, so sorry, your opinion is still just an opinion. I have a friend who is paid full time to maintain a corporate web site, and he does a nice job, has a great eye, etc, but I can code circles around him in anything except php (which I don't know any), and I can perl circles around his php stuff. He does not try to deny this either. "Pro" is just a title dude. About the num of words in a line thing, that is a good point, I personally just do not find this to be the case and I read a lot. That also means you would have to assume a certain font size, which is ignorant. I think sites that use the entire page width look much better IF it is done intelligently, eg without stretching images. I think it is fairly normative to use a relative size div (eg, 80% of screen width) containing divs with absolute sizes for certain things, but positioned relatively. Making them all absolute still seems lazy to me! ps. "small" "x-small" are absolute, but they are relative in the sense that the browsers dictates the actual size relative to the default.
__________________ Accuracy and integrity mean nothing if you don't make it past the censors...PYTHAGORAS Last edited by MK27; 07-08-2009 at 11:44 AM. | |
| MK27 is offline | |
| | #41 | |||
| & the hat of GPL slaying Join Date: Sep 2001
Posts: 5,730
| Quote:
Quote:
Quote:
| |||
| Thantos is offline | |
| | #42 | ||
| subminimalist Join Date: Jul 2008 Location: NYC
Posts: 3,944
| Quote:
Still, they could at least try. I use Verizon internet, which Verizon is like one of the largest telecommunication companies in the world. But I have to use their site to pay my bill, etc, and it is a very unpleasant experience. In contrast to other places, for example, using a min 22 font does screw it up. To me, that is just plain "unprofessional", but I am sure they have spent millions on their monstrosity. Quote:
The moral being, no doubt massive corps like Verizon do contract other massive corps, but it seems that all the bureaucracy and inefficiency there simply mean large numbers of highly trained but semi-competent "professionals" are kept employed. Those are the people setting the low standard which other people may be following in error, or out of insecurity...it's the science of mediocrity in action.
__________________ Accuracy and integrity mean nothing if you don't make it past the censors...PYTHAGORAS Last edited by MK27; 07-08-2009 at 12:08 PM. | ||
| MK27 is offline | |
| | #43 | |
| (?<!re)tired Join Date: May 2006 Location: Portugal
Posts: 5,220
| Quote:
You are wrong in that these are semi-competent professionals. First do everyone in here a favor and stop using words like dumb, idiot or quoting the word professionals. Until you show some credentials, a few of us in here demand a little more respect. This, of course, if you plan for this conversation to remain civil, and for you to gain some new knowledge from people far more experienced than you. Yes, that's the operative word; Experienced. But the idea of semi-competent professionals really is faulty at large. It is a clear indication of your lack of experience on the market of website design and programming. If there is no denying there less competent or unknowing people out there, there are however a lot more competent and knowledgeable people getting payed to develop poor websites. Until you get into that head of yours that many professional programming task (and just not web development) is subject to limitations of time, corporate specifications, customer choices that often change mid-project, and even pay amount, you will keep barking at the wrong tree. And be laughed at. And if that is not enough, until you realize that HTML/CSS are outdated, limited, and weak technologies with a complex set of Standards that delay development times considerably, complicate website maintenance, and do not directly answer today's web market needs, you will keep failing to understand that the real problem is not lack of competence. It is, for the most part, the lack of a better technology.
__________________ Originally Posted by brewbuck: Reimplementing a large system in another language to get a 25% performance boost is nonsense. It would be cheaper to just get a computer which is 25% faster. | |
| Mario F. is offline | |
| | #44 | |
| subminimalist Join Date: Jul 2008 Location: NYC
Posts: 3,944
| Quote:
Just to clarify: I think I am being polite. Obviously, you have received way, way too much undeserved respect in your life and now you just feel entitled. I am very skeptical about the idea that people like you have anything at all to teach people like me so I will tell you right now I do not care at all what you think about that, where I rank on your "favoured" list or whatever it is you are trying to imply. I put the word "professional"ized in quotes because I think the real term here is commercialized. I have been using the www since it started in 1993. A huge amount of it today is absolute crap and garbage done by people who clearly do not have much interest in what they are doing. I have had jobs that to me were a check, and not much more, so I won't hold the attitude against anyone; I probably wouldn't be that interested either but getting paid is getting paid. So get off your high horse: you look ridiculous on it. Extremely. No offence, Mario F, I actually think you are an insightful guy. Just I have a nasty habit of telling the truth to people I respect
__________________ Accuracy and integrity mean nothing if you don't make it past the censors...PYTHAGORAS Last edited by MK27; 07-08-2009 at 06:47 PM. | |
| MK27 is offline | |
| | #45 |
| (?<!re)tired Join Date: May 2006 Location: Portugal
Posts: 5,220
| There's no reasoning with you. Bye.
__________________ Originally Posted by brewbuck: Reimplementing a large system in another language to get a 25% performance boost is nonsense. It would be cheaper to just get a computer which is 25% faster. |
| Mario F. is offline | |
![]() |
| Thread Tools | |
| Display Modes | |
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Monster website | ssharish2005 | General Discussions | 6 | 07-03-2008 09:32 AM |
| Loading a Website | Borommakot | C++ Programming | 1 | 10-01-2002 05:07 PM |