Re: [WSG] Accessible websites

2009-07-03 Thread Richard Stephenson
I think this may be the service to which you refer...

http://www.typekit.com

http://blog.typekit.com

-- 
DonkeyMagic: Website design  development
http://www.donkeymagic.co.uk


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] SPRI accesibility

2009-06-08 Thread Richard Stephenson
I'd have thought the biggest issue with Magento accessibility is it's
reliance on JavaScript for the checkout process? It's impossible to
order anything without JS enabled. Although I'm not sure that is such
an issue with WCAG 2. Anyone else know?

Rich

 Checkpoint 9.5 -

 Provide keyboard shortcuts to important links (including those in
 client-side image maps), form controls, and groups of form controls.
 [Priority 3]



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] @import rule

2008-08-06 Thread Richard Stephenson
 Just working on someone else's website and they are using the @import rule to 
 include their CSS. I usually use the link rel method. I am wondering, is 
 there really any reason not to use @import, be it Accessibility, standards, 
 etc? I don't want to pull in other stylesheets into the one I'm using, so I 
 have no need for the @import.

According to Steve Souders research in his very handy book High
Performance Websites there are some performance issues with @import.
It can cause unexpected ordering of how components are downloaded to
the browser. You can compare the effects;

Using link rel - http://stevesouders.com/hpws/css-top.php
Using @import - http://stevesouders.com/hpws/css-top-import.php

Hope that helps,

Rich
--
DonkeyMagic: Website design  development
http://www.donkeymagic.co.uk
http://www.awadigital.com


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



Re: [WSG] Standards compliant slideshow

2006-03-13 Thread Richard Stephenson
 Can anyone please recommend a standards compliant slideshow script that
 uses a list of images within the HTML markup to dynamically
 create the show.

http://slayeroffice.com/code/imageCrossFade/xfade2.html

--
DonkeyMagic: Website design  development
http://www.donkeymagic.co.uk
**
The discussion list for  http://webstandardsgroup.org/

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



Re: [WSG] DOM Scripting

2006-03-02 Thread Richard Stephenson
Hi Darren, what's happening is the form is doing the validation but
it's still submitting. In you preparePage() function  you need to add
an event handler for the form.onsubmit() that returns false unless the
form validates.

something like

function prepareForms() {
for (var i=0; i  document.forms.length; i++) {
var thisform = document.forms[i];
thisform.onsubmit = function() {
return validateForm(this);
}
}
return false;
}

Jeremey has an example on
http://www.domscripting.com/domsters/contact.html or have a look at my
comments form.

Best of luck,

Richard

--
DonkeyMagic: Website design  development
http://www.donkeymagic.co.uk
**
The discussion list for  http://webstandardsgroup.org/

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



Re: [WSG] Accessible drop down menu

2006-02-01 Thread Richard Stephenson
 One option would be to use Javascript to submit using onchange, then
 hiding the submit button in a nosript tag for those who don't have jscript
 turned on. Does anyone have a better idea?

Hi Paul,

Don't know if its exactly what you are after but i did a little script
a while ago that turns a list of links into a select box that acts as
a jumpmenu that loads a new url onchange. If the user has no js they
just get the list of links.

http://www.donkeymagic.co.uk/listselect

Richard
--
DonkeyMagic: Website design  development
http://www.donkeymagic.co.uk
**
The discussion list for  http://webstandardsgroup.org/

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



Re: [WSG] Alternate Navigation

2006-01-31 Thread Richard Stephenson
 With the use of the object tag is it possible to include an alternate
 ul navigation, should FLASH fail?

I don't know if you can do that directly with the object tag but you
could look at using unobtrusive javascript to add your flash to the
page, replacing an existing ul.

Have a look at Bobby van der Sluis's Unobtrusive Flash Objects (UFO) v3.0
http://www.bobbyvandersluis.com/ufo/


Richard
--
DonkeyMagic: Website design  development
http://www.donkeymagic.co.uk
**
The discussion list for  http://webstandardsgroup.org/

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



Re: [WSG] addEventListener

2006-01-19 Thread Richard Stephenson
Use the onclick event;

a.onclick = function() {
  alert('not going there!');return false;
}

Its not an issue of standards it's in the javascript not the html.

Richard

--
DonkeyMagic: Website design  development
http://www.donkeymagic.co.uk
**
The discussion list for  http://webstandardsgroup.org/

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



Re: [WSG] addEventListener

2006-01-19 Thread Richard Stephenson
Fair enough. Being a bit hast there wasn't i. However the support of
the DOM2 Event handlers standards is still incomplete so as far i know
and Mozilla apperas to have a bug with the return value. That may be
your problem.

http://www.gerd-riesselmann.net/archives/2005/03/a-firefox-javascript-bug


--
DonkeyMagic: Website design  development
http://www.donkeymagic.co.uk
**
The discussion list for  http://webstandardsgroup.org/

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



[WSG] IE on the MAC is history

2005-12-19 Thread Richard Stephenson
Well you have probably all heard about this already but Microsoft is
stopping support for IE on the Mac.

http://news.bbc.co.uk/1/hi/technology/4542750.stm
http://www.microsoft.com/mac/products/internetexplorer/internetexplorer.aspx?pid=internetexplorer
http://www.webstandards.org/

but does it mean we can stop coding for it now or if not how long do
we carry on?

Richard Stephenson

--
DonkeyMagic: Website design  development
http://www.donkeymagic.co.uk
**
The discussion list for  http://webstandardsgroup.org/

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



Re: [WSG] Taking things to extremes.

2005-12-06 Thread Richard Stephenson
Separation separation separation!

Use  the DOM an onload function and some unobtrusive javascript. I'm
my experience you will always want to add more javascript. Keep
behavour layer separate.

Richard

DonkeyMagic: Website design  development
http://www.donkeymagic.co.uk

On 12/6/05, Stephen Stagg [EMAIL PROTECTED] wrote:
 If a search page were to only have one piece of Javascript attached to
 it (more specifically to the body-onload event) :

 document.F.Q.focus();

 Should this be placed in a separate JavaScript file in order to make it
 more manageable, or just declared inline?

 Stephen

 **
 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
**



Re: [WSG] CSS drop down box pushes down following content

2005-12-06 Thread Richard Stephenson
Hi Barry not sure if this would be what you were after but i have just
published an article about creating a DOM pagejump menu that works on
all modern browsers and degrades back to a list of links if there is
no javascript support. 
http://www.donkeymagic.co.uk/index.php?story=67. Thought it that might
be of use...

Richard

--
DonkeyMagic: Website design  development
http://www.donkeymagic.co.uk
**
The discussion list for  http://webstandardsgroup.org/

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



Re: [WSG] Browser check Site crit please

2005-11-30 Thread Richard Stephenson
Thanks for the advice. I've never used mailing lists before. I usually
just google stuff! but this one seems very helpful.

On 11/30/05, Rick Faaberg [EMAIL PROTECTED] wrote:
 On 11/29/05 5:59 AM Richard Stephenson [EMAIL PROTECTED] sent this
 out:

  Hi everyone, I just joined this list

 I like it when there's a site identifier in the subject of the emails.
 Doesn't have to be the site name (so your customer won't find it) but just
 some identifier like problems with Mac browsers? or float problems or
 such.

 Thanks!

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

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




--
DonkeyMagic: Website design  development
http://www.donkeymagic.co.uk
**
The discussion list for  http://webstandardsgroup.org/

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



[WSG] Browser check Site crit please

2005-11-29 Thread Richard Stephenson
Hi everyone, I just joined this list and I have just plucked up
courage to ask you all to subject me to the humilitation that is my
first site check!

I have been working on my blog

http://www.donkeymagic.co.uk

for a while and it works ok in my browsers FF an IE6 on the pc but i
have no access to mac browsers and little experince of mac css
bugs/filters.

Any help/advice/critisism will be greatfully recieved.

Thanks,

Richard Stephenson

--
DonkeyMagic: Website design  development
http://www.donkeymagic.co.uk
**
The discussion list for  http://webstandardsgroup.org/

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