Re: [WSG] lost my data

2010-04-04 Thread Robert Turner
Marvin, did you delete the data or is the drive faulty? If it is a faulty drive, try putting the drive in a sealed plastic bag and leave in the freezer for a few hours (or overnight). Sometimes you can get around 30 mins or so use out of the drive (until it warms up again). I've had success

Re: [WSG] css tutorial

2010-01-14 Thread Robert Turner
Hi Marvin, The w3schools tutorial is handy: http://www.w3schools.com/css/css_intro.asp The reference is useful too: http://www.w3schools.com/css/css_reference.asp Cheers, Rob Marvin Hunkin wrote: hi. well a member of blind geeks. and asked to write a short basic tutorial on css. did learn css

Re: [WSG] unbalanced q tags for extended quotations?

2009-09-30 Thread Robert Turner
There is quot; and apos;, but I don't think IE supports apos;. I think the Unicode entity is something like #39; or #37;. You could also declare quot as an entity in your doctype to assist IE (IE needs help). Would that solve your problem? T. R. Valentine wrote: Quotations which are more

Re: [WSG] Form question

2009-07-15 Thread Robert Turner
try the following link: http://webstandardsgroup.org/join/unsubscribe.cfm Axiotis, Vicky wrote: Hi Please remove me from your email distribution list. I am not sure why I am being Bc'd into these emails. Thanks Vicky -Original Message- From: li...@webstandardsgroup.org

Re: [WSG] My best practice HTML sheet

2009-06-25 Thread Robert Turner
Thanks! very handy =] Keryx Web wrote: Hello all! I have updated my best practice table at http://keryx.se/resources/html-elements/ I've switched from XHTML to HTML and I've added an experimental layout with rotated column headers in Firefox 3.5 (JS required, but progressive enhancement is

Re: [WSG] The weirdest IE bug I've ever encountered.

2009-06-03 Thread Robert Turner
Try adding borders to all block level elements (ie. p, div etc). Firebug does this for you in Firefox, but you'll need to do it manually for IE. To make it much more obvious, set a background color too (eg. p, div {background-color: #00f;} ). If there are unclickable links then chances are

Re: [WSG] The weirdest IE bug I've ever encountered.

2009-06-03 Thread Robert Turner
Sorry, I misread your message, looks like this is not the problem. Please disregard. Robert Turner wrote: Try adding borders to all block level elements (ie. p, div etc). Firebug does this for you in Firefox, but you'll need to do it manually for IE. To make it much more obvious, set

Re: [WSG] The weirdest IE bug I've ever encountered.

2009-06-03 Thread Robert Turner
Dropping the DOCTYPE declaration appears to fix it... Breton Slivka wrote: I see I have still not conviced you of the weirdness of this bug. I've updated my version to have a 1px border, and more items in the list, which are NOT covered by the P element. None of them are clickable,

Re: [WSG] Login/password app?

2009-04-29 Thread Robert Turner
Hi Brooke, If you're looking for a lite solution and only have a handful of users, you could configure a .htaccess http://en.wikipedia.org/wiki/.htaccess file for authorization/authentication in Apache. This is done at a directory level. There should be plenty of tutorials out there if you

Re: [WSG] Code management advice needed

2009-03-08 Thread Robert Turner
no problem :-) I still have to learn more about SVN with respect to selectively checking out code (I don't need the full code base for each branch) and retagging. To get the subdirectory you want, just check it out and give it a name: eg. svn co

Re: [WSG] Code management advice needed

2009-03-05 Thread Robert Turner
Hi Jens, You need to branch the codebase. A typical SVN repository is setup as: repos/trunk repos/tags repos/branches Most people will checkout repos/trunk and just work off that. What you need to do is copy the trunk (svn cp/copy repos/trunk repos/branches/branch-version). Then keep two

Re: [WSG] Floating a sub-list level with it's parent list

2009-03-05 Thread Robert Turner
Hi Seona, Why not make the entire nav element (mainNav) positioned absolute? I'd probably use a div to contain the parent ul (if you are not already doing this). I'd start with something like: .mainNav { /* nav at top right of screen */ position: absolute; top: 0px; right: 0px; }

Re: [WSG] Floating a sub-list level with it's parent list

2009-03-05 Thread Robert Turner
Robert Turner wrote: Hi Seona, Why not make the entire nav element (mainNav) positioned absolute? I'd probably use a div to contain the parent ul (if you are not already doing this). I'd start with something like: .mainNav { /* nav at top right of screen */ position: absolute

Re: [WSG] E-commerce

2009-02-26 Thread Robert Turner
Hi Kevin, (My apologies if this comes across as blunt).. Your question is like asking what a good overall software solution is, it all depends on requirements and target environment. If you provide some more specific information I'm sure someone can help you out. =] Rob Kevin Erickson

Re: [WSG] E-commerce

2009-02-25 Thread Robert Turner
Sorry, my bad. Didn't realize you were after a hosted system, I thought you were asking about design/technologies. Please disregard my previous post. Robert Turner wrote: Hi Kevin, (My apologies if this comes across as blunt).. Your question is like asking what a good overall

Re: [WSG] meta tag questions

2009-02-24 Thread Robert Turner
Hi Bob, Bob Schwartz wrote: 2. geo.position: According to Wikipedia geo.position tags help in returning regional search requests, or as they put it: "It understandably makes little sense to look for a baker and find one who has his shop in a completely different town". If this is the case,

Re: [WSG] meta tag questions

2009-02-24 Thread Robert Turner
Thanks Bob, I've dug up some old java code that contained a snippet from the geo schema I used (in a javadoc comment). Here it is: /** ... * pRDF Vocabulary for describing points: * code * rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" *

Re: [WSG] IE and the button element

2009-02-23 Thread Robert Turner
John, I like your approach - I think I might start using it. IMO - button means button whether it is in a form or not. And button has more meaning than input type="button|submit". Don't give into design by committee, just look at how it ruined Tim Berner-Lee's original vision for the web. He