Re: [WSG] Controling Windows DPI settings

2008-02-27 Thread Felix Miata
On 2008/02/23 18:14 (GMT-0800) Hayden's Harness Attachment apparently typed: I have Windows Vista Home Premium and use 96 DPI. I am told repeteated ly that my fonts are to large. Probably you should offer example URLs of pages about which that complaint is made. I have even tried font-size:

Re: [WSG] Site review - alachua co library

2008-02-27 Thread Felix Miata
On 2008/02/27 18:39 (GMT+1100) John Hancock apparently typed: Here's a screenshot of a typical moderately high resolution environment: http://mrmazda.no-ip.com/SS/SC/sc-alaclib1.jpg and the setup source: http://mrmazda.no-ip.com/tmp/sc-alaclib1.html Just a thought, but a moderately high

[WSG] input type=submit and IE6 and 7

2008-02-27 Thread Nancy Johnson
Does anyone know why in IE6 and 7 there is a black outline around buttons that use input type=submit instead of input type=button, and is there a work around to rid of the outline? Webaim.org suggests using 'submit' or 'reset' instead of 'button' to define the input type.

Re: [WSG] input type=submit and IE6 and 7

2008-02-27 Thread Diego La Monica
Hi Nancy, the reason for the black outline around the submit button in IE6 and 7 is that IE renders the buttons with the system API, and if you view each Windows interface, the default button that fires the click event with the enter too is outlined black. I think that It would not be at any

[WSG] multiple css style sheets

2008-02-27 Thread Michael Horowitz
Just inherited a site and saw pages with multiple style sheets. Is there a reason for that and how does the browser determine what to use if there is a conflict -- Michael Horowitz Your Computer Consultant http://yourcomputerconsultant.com 561-394-9079

Re: [WSG] multiple css style sheets

2008-02-27 Thread Rick Lecoat
On 27 Feb 2008, at 16:55, Michael Horowitz wrote: Just inherited a site and saw pages with multiple style sheets. Is there a reason for that and how does the browser determine what to use if there is a conflict Michael, I assume that you mean that the page referenced several external

Re: [WSG] multiple css style sheets

2008-02-27 Thread Thomas Thomassen
You specify different stylesheets for different medias. The most common ones are to target handhelds, print and screenreaders. The user-agent will use the MEDIA attribute to pick the correct stylesheet. It is also possible to provide multiple stylesheets which the user can select from. Though

Re: [WSG] multiple css style sheets

2008-02-27 Thread Joseph Taylor
I see no reason not to use multiple stylesheets other than a smaller download time. Each stylesheet should be separated only if it serves a purpose of course. For example, most of my sites currently use this formula: !-- CSS -- link rel=stylesheet type=text/css media=all href=/css/global.css

[WSG] Linux Page Test Please

2008-02-27 Thread Joseph Taylor
Good Linux users: Can I ask you to take this page for a spin and reply off-list if you encounter a problem? http://allturf.sitesbyjoe.com/ Thanks! -- Joseph R. B. Taylor /Designer / Developer/ -- Sites by Joe, LLC /Clean, Simple and Elegant Web Design/

RE: [WSG] Screen Standards - was alachu

2008-02-27 Thread John Hancock
Hi David, There are actually standard screen sizes, which is why screens like HP's 1280x768 14 screen and Apple's 15 screen were retired quietly. They were new and different, then different, then became non-standard when 14.1 and 15.4 devices preserved a 16:10 aspect ratio. The manufacturers of

Re: [WSG] multiple css style sheets

2008-02-27 Thread Kane Tapping
Hi , How do browsers determine the winner in a conflict... well, AFAIK, they take the first style that is most relevant to the element. That would be the LAST style that is most relevant to the element. (unless !important is used to override the cascade.) It also worth noting that multiple

Re: [WSG] multiple css style sheets

2008-02-27 Thread Michael Horowitz
Is there a difference or specific reason to use the @import Michael Horowitz Your Computer Consultant http://yourcomputerconsultant.com 561-394-9079 Kane Tapping wrote: Hi , How do browsers determine the winner in a conflict... well, AFAIK, they take the first style that is most relevant

RE: [WSG] multiple css style sheets

2008-02-27 Thread Thierry Koblentz
On Behalf Of Kane Tapping Sent: Wednesday, February 27, 2008 6:25 PM To: wsg@webstandardsgroup.org Subject: Re: [WSG] multiple css style sheets How do browsers determine the winner in a conflict... well, AFAIK, they take the first style that is most relevant to the element. That would be

Re: [WSG] multiple css style sheets

2008-02-27 Thread Andrew Tetlaw
To be a little pedantic, the cascade includes both of those things so it's incorrect to say they override the cascade. My understanding of the cascade is that it includes all the following steps: 1. Sort by importance (i.e. !important or not) 2. Sort by specificity 3. Sort by source order

Re: [WSG] multiple css style sheets

2008-02-27 Thread Kane Tapping
Hi , I believe @import was originally used by designers to create styles Netscape Navigator 4 would not implement incorrectly. Some other reasons why you might use this rather then multiple link rel declarations, include: You can declare the @import within a CSS file style or style= (you can

RE: [WSG] multiple css style sheets

2008-02-27 Thread Tim MacKay
I think its also improper markup to have more than one stylesheet link so @import might be a way to keep the code modular and still only have one style sheet link. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kane Tapping Sent: Thursday, 28 February 2008 4:59 PM To: