[WSG] Support for SMIL

2006-11-05 Thread Pat Boens








Hello,



I would like to create some animations in my web
pages. I would like to do this with SMIL 2.0. can anyone comment on the use of
SMIL in various browsers and whats the proper doctype to select for
this?



Thanks a lot,

Pat Boens







***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***


RE: [WSG] CSS technique quest for tabs

2006-08-26 Thread Pat Boens
The only problem is that, on your page at least, there are multiple elements
of your HTML code that have the same id! id=active.

It would be better to use a class so that you can have multiple tabs on the
same page.

Pat

-Original Message-
From: listdad@webstandardsgroup.org [mailto:[EMAIL PROTECTED]
On Behalf Of Tee G. Peng
Sent: 25 August 2006 04:17
To: wsg@webstandardsgroup.org
Subject: Re: [WSG] CSS technique quest for tabs


On Aug 24, 2006, at 5:54 PM, Paul Bennett wrote:

 Hi Tee,

 Code follows. A few things to work out, but I think it gets you  
 most of the way there:

Hi Paul, I see your method is working nicely and have fixed the  
padding problem that I have with my method.
Definately yours is more creative and leaner.

Thanks again!

tee


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



RE: [WSG] font standards today

2006-08-26 Thread Pat Boens
Take a look at this:

http://www.codestyle.org/css/font-family/sampler-CombinedResults.shtml

Pat

-Original Message-
From: listdad@webstandardsgroup.org [mailto:[EMAIL PROTECTED]
On Behalf Of Townson, Chris
Sent: 24 August 2006 12:55
To: wsg@webstandardsgroup.org
Subject: RE: [WSG] font standards today

 As a web developer and a designer i have been ok to use verdana, 
 trebuchet and arial in my publications
 all these years, now i am working with limits for the design 
 and ineed 
 to select from a list i found as standard
 or websafe fontsat 
 http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html
 
 Does anyone agreewith that this is the list of available fonts for 
 online publishing as nowadays...???
 

how about not setting the font at all?? (or just specifying serif or
sans-serif in your stylesheet?)

These are usually set with sensible defaults (or, in my case, with my
preferred fonts and sizes) and are guaranteed to work on _any_ platform.

The web is different from print and it is often better to abandon the
attempt at total control over appearance which one has in print design.

Chris


   
DISCLAIMER: This e-mail is confidential and should not be used by anyone who
is
not the original intended recipient. If you have received this e-mail in
error
please inform the sender and delete it from your mailbox or any other
storage
mechanism. Neither Macmillan Publishers Limited nor any of its agents accept
liability for any statements made which are clearly the sender's own and not
expressly made on behalf of Macmillan Publishers Limited or one of its
agents.
Please note that neither Macmillan Publishers Limited nor any of its agents
accept any responsibility for viruses that may be contained in this e-mail
or
its attachments and it is your responsibility to scan the e-mail and 
attachments (if any). No contracts may be concluded on behalf of Macmillan 
Publishers Limited or its agents by means of e-mail communication. Macmillan

Publishers Limited Registered in England and Wales with registered number
785998 
Registered Office Brunel Road, Houndmills, Basingstoke RG21 6XS   




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



RE: [WSG] More than one style in one class atribute ?

2006-08-26 Thread Pat Boens
The doc says that this is a list, so here you go ... you can use several
classes should you wish to.

Pat,
We serve TEA
Technique - Excellence - Aesthetics
http://www.fastwrite.com



-Original Message-
From: listdad@webstandardsgroup.org [mailto:[EMAIL PROTECTED]
On Behalf Of Raven
Sent: 26 August 2006 13:36
To: wsg@webstandardsgroup.org
Subject: [WSG] More than one style in one class atribute ?

Good time of day.

We can use more than one style in class attribute.
Like:
div class='style1 style2'/div

This works in any browser, i try.
And w3c Validator is silent.
But IS this practice good?
Some times it can be pretty net.
Any catch in this method ?

__

Yours sincerely. Raven.
Night folk studio.



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



RE: [WSG] Screen Readers, abbr and code

2006-08-14 Thread Pat Boens
Use abbr or acronym ... but abbr is better. Please also notice that
this tag may not be recognized by some browsers. Therefore, it is
recommended to embrace the abbr tag with a span tag that will do
basically the same thing.

abbr title=...span title=...acronym/spanabbr

Pat Boens
www.fastwrite.com


-Original Message-
From: listdad@webstandardsgroup.org [mailto:[EMAIL PROTECTED]
On Behalf Of Sean Fraser
Sent: 14 August 2006 23:31
To: wsg@webstandardsgroup.org
Subject: [WSG] Screen Readers, abbr and code

My question is Is it better for screen readers when ALL abbreviations are
identified by abbr? Or, instead of using abbr, should I wrap the code
with code? 

Sample code:

!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd;
html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en-us lang=en-us
meta http-equiv=content-type content=text/html; charset=utf-8

I cite code in my articles. [Please see
http://www.elementary-group-standards.com/archives/site-standards/why-xhtml.
html
for an actual page which has fifty such code inclusions.]

I know (or, at least, as stated in various articles) screen readers read'
abbr as characters as opposed to attempting to pronounce them as
words. I haven't been able to find any explanations of how screen readers
render - read or pronounce or ignore - text set inside of code.

I am willing to use abbr for all instances on all abbreviations but I do
not know which is best for screen readers, abbr or code.

So. Use abbr? Or, use code?

Any assistance would be very much appreciated.

Sean Fraser
www.elementary-group-standards.com



**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**




**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**