![]() |
| | #16 | ||
| Mysterious C++ User Join Date: Oct 2007
Posts: 14,099
| Quote:
Code: body {
font-family: Verdana, Tahoma, Arial, sans-serif;
line-height: 1.3em;
margin: 0;
padding: 0;
font-size: 11px;
color: #626262;
}
__________________ 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 | |
| | #17 |
| subminimalist Join Date: Jul 2008 Location: NYC
Posts: 3,946
| Yeah, as I said you do have the option of doing it the wrong way. That will override your default. However, it will not override your minimum. Notice there are three fonts specified in "order or priority", ending with sans-serif which is really a generic catch all. My system does not have "Verdana, Tahoma, or Arial", so I will end up with Helvetica, which is sans-serif. Too many choices for the muddle brained makes a muddly thing methinks. The combination of serif, sans-serif, monospace, italic, bold, color, and relative size is enough to create clear and consistent distinctions in any document. Beyond that, you are just being asinine. Most entire books usually use only three fonts (bold, italic, normal) in a few sizes. Of course, they are are specific (eg. "typeset in myface") but that is kind of besides the point. Plus, if you want a real fancy font for a title, you can just use an image and make it shiny, 3D, in 256 million colors. I suspect this option exists becomes enough people have insisted on it, and they want something like a pdf or postscript file, the form of which is immutable. But that is not a good model to apply on the web, with the restrictions of the client-server setup*. * me personally, I don't think the restriction is so bad. Fonts are for letters, letters are for words, words are for writing, writing is for CONTENT. If you are a bad writer with little content to convey, you are bound to be obsessed with "fonts" to disguise your air-head products as real work. Some people will be distracted by anything, no matter how inconsequential or irrelevant.
__________________ Accuracy and integrity mean nothing if you don't make it past the censors...PYTHAGORAS Last edited by MK27; 07-07-2009 at 08:03 AM. |
| MK27 is online now | |
| | #18 | |
| and the hat of copycat Join Date: Sep 2007
Posts: 393
| Quote:
For a background color of #101010 and a foreground color of #626262 which i think is used for the content part of the OP's website, Juicy Studio: Luminosity Colour Contrast Ratio Analyser says that the font size should be larger. So now the question is, are you a bot?
__________________ Not everything that can be counted counts, and not everything that counts can be counted - Albert Einstein. | |
| stevesmithx is offline | |
| | #19 | ||
| (?<!re)tired Join Date: May 2006 Location: Portugal
Posts: 5,220
| Quote:
A representative portion of the web is made up of carefully "drawn" websites that try to explore at most all aspects of presentation. This is true of many corporate websites including publicity, art, fashion, or games, to name a few. Many of these websites try to enforce very specific font choices so they can "visually work". Meanwhile, and taking that aside for the moment, the decision to make of the website a visual experience is a legitimate one. Carefully planned fonts, and font sizes is perfectly acceptable as a practice, under this context. Web Standards aren't broken in any way because of this choice. At most, accessibility rules may. But this is a perfectly legitimate decision. And sometimes even a necessary one. Not that it matters though; No browser will stop render a webpage because the defined font wasn't found on the user machine. As for the web standards themselves... anyone wanting to create 100% Web Standard obeying websites should be the one having their head examined. Quote:
__________________ 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 | |
| | #20 | |
| subminimalist Join Date: Jul 2008 Location: NYC
Posts: 3,946
| Quote:
I appreciate the art* and I enjoy web programming. Once again WRT a bit of text, you still have
* in which composition includes the concept of clutter, eg "myspecialfont 17"
__________________ Accuracy and integrity mean nothing if you don't make it past the censors...PYTHAGORAS Last edited by MK27; 07-07-2009 at 10:09 AM. | |
| MK27 is online now | |
| | #21 |
| Senior software engineer Join Date: Mar 2007 Location: Portland, OR
Posts: 5,381
| 12 px (pixels) or 12 points? Whether 12 pixels is too small depends on the DPI of the display device and the quality of the font itself. This is one of the reasons why specifying font sizes in pixels is completely bogus in the first place. If you meant 12 POINTS, a measurement which actually has some physical significance, then again I disagree -- 12 point text is for children. It's a pointless waste of screen and page real estate and it makes me feel like I'm reading from a 4th grade ruled notebook. If you have vision problems, you can use the browser zoom feature, or install a local stylesheet as described below. At any rate, since the site is using CSS the point is moot. You can install a local stylesheet which overrides the base font size entirely. That's the whole point of stylesheets. If you don't like the designer's choices you can override them.
__________________ "Congratulations on your purchase. To begin using your quantum computer, set the power switch to both off and on simultaneously." -- raftpeople@slashdot |
| brewbuck is offline | |
| | #22 | |
| (?<!re)tired Join Date: May 2006 Location: Portugal
Posts: 5,220
| Quote:
The decision to make a website design depend on a specific font is made often based on practical and aesthetical needs. Practical, because the font style may help establish an environment or emotion and this is for some reason deemed important, or even because it follows the official guidelines (many companies use specific fonts in other media). And aesthetical,... because. This in fact has been a limitation of the HTML/CSS combination. Contrary to what you seem to imply, the push is exactly to try and create a more structured usage to fonts on the web. Right now, there's only two options available to designers; Either get away from HTML/CSS and design using other technologies like Flash, or provide an alternative website. I can't blame anyone who decides against both.
__________________ 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 | |
| | #23 | |
| subminimalist Join Date: Jul 2008 Location: NYC
Posts: 3,946
| Quote:
I do remember having this personality defect once (pouring over different fonts looking for "just the right one") and I am very happy to be over it now. There are many, many, many more expressive and significant ways to get creative with web pages. As I said, if you turn off "site specific fonts" in your browser you won't miss them after about 10 minutes -- except for sites which are nothing but a collection of dippy fonts. The site you refer to seems to be recommending consuming more bandwidth just so the browser can download the proper fonts for a page. This will have to be optional, so fortunately I can disable that sad joke if it ever comes to pass.
__________________ Accuracy and integrity mean nothing if you don't make it past the censors...PYTHAGORAS Last edited by MK27; 07-07-2009 at 10:42 AM. | |
| MK27 is online now | |
| | #24 |
| (?<!re)tired Join Date: May 2006 Location: Portugal
Posts: 5,220
|
__________________ 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 | |
| | #25 |
| Senior software engineer Join Date: Mar 2007 Location: Portland, OR
Posts: 5,381
| Well, I guess not all of us can be idealists sitting in our basements producing nothing of value...
__________________ "Congratulations on your purchase. To begin using your quantum computer, set the power switch to both off and on simultaneously." -- raftpeople@slashdot |
| brewbuck is offline | |
| | #26 | |
| subminimalist Join Date: Jul 2008 Location: NYC
Posts: 3,946
| Quote:
__________________ Accuracy and integrity mean nothing if you don't make it past the censors...PYTHAGORAS | |
| MK27 is online now | |
| | #27 |
| Banned Join Date: Mar 2009
Posts: 533
| I'm on the 2nd, but I have really good shades to keep out the sun (It's like nighttime 24/7)
__________________ ╔╗╔══╦╗ ║║║╔╗║║ ║╚╣╚╝║╚╗ ╚═╩══╩═╝ |
| ಠ_ಠ is offline | |
| | #28 |
| Registered User Join Date: Jan 2006
Posts: 38
| wow I never expected so many replies, and thanks for all the suggestions ill definitely be making some modifications.
__________________ Come give my Website a visit and try my new program, all you gamers will love it! www.AzA-Productions.com Click on applications and download Key Control! Also I have tons of extra space available so, if you have a project or application you want the world to see just give me an email at admin@aza-productions.com and ill see what i can do for you. Asbo60 |
| asbo60 is offline | |
| | #29 | |
| Registered User Join Date: Dec 2006
Posts: 1,780
| Quote:
There are so many sites on the Internet now, that people get to be very picky (except for a few very important sites, for them). For me, for example, I almost always hit the "back" button immediately when I see "Please view the site in Internet Explorer", even if most of them do work with firefox. Likewise, when I see a site with small fonts, I hit "back", since that's 1 less keypress than "ctrl-+" (and "ctrl--" to change it back when I leave the site). Rule of thumb - don't expect the user to change their browser settings (or change browser, or screen resolution, or browsing behaviour) to view your site. Most people view a few hundred sites every day. They don't have time for that. If your site hosts the best pr0n on the internet, users MAY be willing to give you an extra 30 seconds. But when it's just 1 out of a few million search results... | |
| cyberfish is offline | |
| | #30 | |
| subminimalist Join Date: Jul 2008 Location: NYC
Posts: 3,946
| Quote:
My eyesight is perfect (and clue: I want to keep it that way), but I know people who are not so lucky who use minimums of like 28 or 30 pts. That is why *all* browsers make it *easy* to set a minimum size, and I promise there is a significant number of users who do. I'm kind of baffled and amazed that people who are software programmers are ignorant of this and twice as baffled that they seem to have such a problem grasping the concept.
__________________ Accuracy and integrity mean nothing if you don't make it past the censors...PYTHAGORAS Last edited by MK27; 07-08-2009 at 08:42 AM. | |
| MK27 is online now | |
![]() |
| 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 |