[WSG] Some links for reading...

2004-04-20 Thread russ - maxdesign
WestCiv have just started their free course program again, kicking off with HTML and XHTML for CSS. Great stuff as always... http://www.westciv.com/courses/free/index.html An exercise in clarity: Web Standards http://www.37signals.com/svn/archives/000648.php?54 456 Berea Street - Developing

Re: [WSG] Web Essentials 04

2004-04-20 Thread russ - maxdesign
Well... The cat is out of the bag now... Although we let Sydney members know about the conference at the last meeting, we have been keeping a bit quite about it till the online registration is up and running, which will be within the next few days. We are incredibly excited about this conference

[WSG] Notes from recent Sydney WSG meeting

2004-04-20 Thread russ - maxdesign
Last week we held another Sydney WSG meeting, with guest presenters David Woodbridge and Robert Spriggs. It was a great meeting with 45 people attending - our biggest turnout yet. Talking to people afterwards, it seems there a lot of good information presented. For some people it was the first

Re: [WSG] Accessibility seminar

2004-04-21 Thread russ - maxdesign
Having said all of that, I was troubled by the discussion somewhat. It reminded me of the state of web standards back in '99-'00. There was a lot of talk about things like accesskeys and how they were a good idea but without a standard they weren't much use. I feel your pain. Accessibility

Re: [WSG] theage.com.au: new design

2004-04-22 Thread russ - maxdesign
Peter Ottery has agreed to be guest presenter at our next Sydney WSG meeting. He will be talking about the Age (and another soon-to-be launched site). He will go through the how he achieved full CSS as well as describing some of the layout decisions he made. Should be great stuff.

Re: [WSG] Trying to add... THREAD CLOSED

2004-04-24 Thread russ - maxdesign
THIS THREAD IS CLOSED - OFFTOPIC The mail list does not cover: Discussion of server-side scripting beyond that directly involved with Web Standards http://webstandardsgroup.org/mail/guidelines.cfm If you wish to help further, answer Brian (therGaphixGuy) offlist. Thanks Russ

[WSG] Some light reading...

2004-04-24 Thread russ - maxdesign
Fear of web standards ...caused by fear of the unknown, and the feeling of not having enough time and energy to spend on relearning how to do your job http://www.456bereastreet.com/archive/200404/fear_of_web_standards/ CSS Drop shadows 2 http://www.alistapart.com/articles/cssdrop2/ Stylin'

[WSG] Ten questions for Nick Finck

2004-05-12 Thread russ - maxdesign
The latest in our series of WSG Ten question interviews. This time it is Nick Finck. Nick talks about Digital Web, structure, web standards, liquid layouts and blogging: http://webstandardsgroup.org/features/nick-finck.cfm Thanks Russ The Australian Museum. Australia's first - and leading -

Re: [WSG] Is a degree necessary? - ADMIN

2004-05-13 Thread russ - maxdesign
For this thread, answers would be better directed to Gabriel offlist. Russ My question to you is this: Do you think it would be wise for me to finish the program and get the degree even though I'm not learning what I want to be learning, or should I just call it off and focus on web design?

Re: [WSG] digital web magazine redesign

2004-05-14 Thread russ - maxdesign
Of course, you can always look out next week for Ten Questions for Andy Budd - due to go live on Tuesday some time. Russ ;-) I have to admit that I don't get time to post that often so it's not surprising you didn't know I was on the roster. Nick Lo wrote: Ha funny, I've been

Re: [WSG] Is a degree necessary?

2004-05-14 Thread russ - maxdesign
Moved to discussion room: http://discuss.webstandardsgroup.org/archives/16.htm Go for it! Russ Active discussions get their head lopped off when they don't have anything to do with standards. This particular thread covered the value of a university degree in the web design business...

[WSG] WSG Design competition is closed

2004-05-09 Thread russ - maxdesign
Thanks to everyone who submitted designs for the new WSG site revamp. We will be post them online late this coming weekend for voting. The winning entry will get instant glory, fame and a free book (Web Standards Solutions: The Markup and Style Handbook). Well... maybe just the book... Get your

Re: [WSG] WYSIWYG... MOVED TO DISCUSSION ROOM

2004-05-06 Thread russ - maxdesign
This thread has now been moved to the discussion room. Add comments as you wish: http://discuss.webstandardsgroup.org/archives/15.htm Please do not reply to this thread on list Thanks Russ I use RealObjects eoPro. It produces decent valid XHTML code.

Re: [WSG] css syntactical efficiency

2004-05-07 Thread russ - maxdesign
Paul, You could use a universal selector like this: #article * { color: blue;} This saves specifying elements within the container, but it will color ALL elements within the container to blue - so it may be overkill for your needs. Well supported by modern browsers including IE5, 5.5 and 6

Re: [WSG] Forms, labels headers

2004-05-08 Thread russ - maxdesign
I might revert to tables for layout - no headaches with those. quote Stop! Before you do anything, the most important thing you can do for your learning process is accept that a) it¹s going to take time, and b) you will be frustrated along the way. /quote

Re: [WSG] Trouble with safari

2004-05-06 Thread russ - maxdesign
Be more specific please. What is problem? Russ Hi Guys, Im currently having trouble making the navigation of my site work in safari. It works in all other modern browsers but safari. Site is here -- http://www.creativeedge.net.au/wadigi/temp2.html any help is much appreciated ..

Re: [WSG] positioning 101

2004-04-30 Thread russ - maxdesign
Barb, Try this: http://www.maxdesign.com.au/jobs/css/ppc.htm It is rough as hell and there are many other ways you could do it but it meets your basic needs. Keep in mind that the recent IE's do not support min-width. Russ You have all been so patient and immensely helpful as I've waded

Re: [WSG] A tip on using multiple CSS classes

2004-04-30 Thread russ - maxdesign
It is spelled 'specificity' (I can spell it but cannot say it to save my life). In your example, they both have the same specificity so it comes down to the order in which they were specified in your css file. In your example '.bar' would be used as it is specified later in the css file. If we

Re: [WSG] Request: Is it semantically correct?

2004-05-01 Thread russ - maxdesign
'Semantically correct' is one of those tricky questions that gets us all into hot water. On one hand you have code purists who believe that there should be the absolute minimum of extra divs and classes [1]. Anything extra is clogging up the code. There are even purists who believe that any form

[WSG] Some links for light reading...

2004-05-01 Thread russ - maxdesign
A Roadmap to Standards http://www.mezzoblue.com/archives/2004/04/30/a_roadmap_to/#000571 Does Microsoft Care About Web Standards? http://www.alttags.org/archives/2004/04/29/33/ What Is Web Accessibility? http://www.alistapart.com/articles/wiwa/ Mountaintop Corners

Re: [WSG] Request: Is it semantically correct?

2004-05-02 Thread russ - maxdesign
This new example is much cleaner code - less divs etc. However, it is hard to tell if it is semantically correct without real content inside. Some may disagree, but I would have to say at present it looks like it is pushing the DL slightly more than it should as there does not seem to be a direct

[WSG] The joys of list management

2004-05-15 Thread russ - maxdesign
A note on complaints about the WSG list. First of all, we are happy to hear your complaints, suggestions and feedback. We try to take all feedback on-board, and address all criticisms where possible. However, sometimes there is no happy middle ground. For example, almost all the complaints we

Re: [WSG] The joys of list management

2004-05-15 Thread russ - maxdesign
Yes, we have discussed forums vs lists on several occasions. Each solution has positives and negatives. The general consensus is that a forum is not as effective for sharing and learning as a list - forums are more passive and people are possibly less likely to go there unless they have a problem.

[WSG] Brisbane meeting resources...

2004-05-16 Thread russ - maxdesign
Apologies for the delay... The first Brisbane meeting was a huge success. We had 28 people attend, which is quite an achievement for a first meeting. Tony Alsett did a great presentation on floats and forms. You can check out the powerpoint presentation at the meeting minutes page:

[WSG] Ten questions for Keith Robinson

2004-04-26 Thread russ - maxdesign
Interview number 2 is live: Keith Robinson (of Asterisk fame) talks about web standards, frustration, validation, accessibility, usability and the Golden Triangle. http://webstandardsgroup.org/features/keith-robinson.cfm Thanks Russ * The

Re: [WSG] small css question

2004-04-28 Thread russ - maxdesign
Paul, Before you jump for joy at this solution you should be aware that it is not supported across older browsers like the Netscape4's and IE4's. More importantly, it is not supported in Win/IE5 or Win/IE5.5. This may not be an issue. For more details, take a look at this:

Re: [WSG] Looking for feedback

2004-04-28 Thread russ - maxdesign
Nancy, try here: http://www.browsercam.com/ Dear Andy, Side note question. What is a browsercam account? With only 3% of my users using Opera, Mozilla and Safari, tend to look at Netscape and IE, but I worry about the other browsers. Thanks, Nancy

Re: [WSG] small css question

2004-04-28 Thread russ - maxdesign
Paul, The short answer is that if you want to support IE5 and IE5.5 (which are both still very popular browsers) then one method you could use is to wrap your image in a container and use text-align: center; To your other question... It is important to start any site with the usual technical

Re: [WSG] SMH launch

2004-04-28 Thread russ - maxdesign
Remember, for Sydney members, Peter will be doing a detailed presentation at our next meeting and notes will be available afterwards for all members: http://webstandardsgroup.org/go/event10.cfm It might be a bit too long to wait for some more immediate answers :) Russ Hey there Peter,

Re: [WSG] in a rule

2004-04-29 Thread russ - maxdesign
Barb, That is actually a child selector: http://css.maxdesign.com.au/selectutorial/selectors_child.htm Also worth reading is the document tree and how the child selector works: http://css.maxdesign.com.au/selectutorial/document_tree.htm

Re: [WSG] IE 6 problem

2004-04-29 Thread russ - maxdesign
This is probably just IE6 and its treatment of whitespace and carriage returns. I haven't got time to look in detail now but two quick solutions to try: 1. run the entire list and all its contents as a single line of code with no whitespace - should immediately fix the bug. 2. create a new rule

Re: [WSG] ahem class (was: Pre-Site Launch Input)

2004-04-29 Thread russ - maxdesign
Hi Will, This has been discussed a few times on this list. Generally the feeling is that the upgrade message has past its use-by date by a fair while now. More here: http://webstandardsgroup.org/manage/archive.cfm?uid=3D9FABE7-0458-48F4-623B8 948682690E4 And here:

[WSG] WSG design competition voting time

2004-05-16 Thread russ - maxdesign
Hi all, The design competition closed last week. Those who submitted entries - thank you! Surprisingly, we only had four submissions, which is a bit of a disappointment, but for those that entered there is a much higher chance of winning the prize. :) The entries can be viewed and voted for

[WSG] Ten questions for Andy Budd

2004-05-17 Thread russ - maxdesign
Andy Budd talks about web design, web standards, the Web Standards Awards and Skillswap. http://webstandardsgroup.org/features/andy-budd.cfm Thanks Russ * The discussion list for http://webstandardsgroup.org/ See

Re: [WSG] Hi I'm new here

2004-05-19 Thread russ - maxdesign
Public: http://www.mail-archive.com/wsg%40webstandardsgroup.org/ Login required: http://webstandardsgroup.org/manage/archive.cfm Thanks Russ Hi all, Is there a searchable archive of this list so I can sort of get my bearings since I'm new here? Rick Ps. Mads, are you here? ;-)

[WSG] Free W3C workshop...

2004-05-19 Thread russ - maxdesign
You are invited to a free W3C workshop on the W3C's XForms and Semantic Web Services Activities to be held at the: Location: Room 470, Level 2, Building 10, University of Technology Sydney http://it.uts.edu.au/about/maps.html Time and Date: 23rd June 2004, 2:00pm to 5:00pm (includes afternoon

Re: [WSG] Tables are bad because... Web standards fascism

2004-05-19 Thread russ - maxdesign
One of Andy's 10 questions answers reinforced this by the use of words like fascist (a fascist is a pretty nasty thing BTW) to describe some people (easily misunderstood as everyone) in the web standards community who might be overly zealous about whether or not a site validates. Not that I

Re: [WSG] Help with Float

2004-05-19 Thread russ - maxdesign
#col1 { width: 253px; height: auto; border-right: 2px dotted #5D355E; float: left; margin: 0px; padding: 0px; clear: both; } #col1 p, #col2 p, #col3 p { font: 12px/16px Arial, Helvetica, sans-serif; margin: 0px; padding: 5px 10px; } Mike, There are two small problems with this

Re: [WSG] Help with Float

2004-05-19 Thread russ - maxdesign
What you're doing wrong is that you are assume IE6 is getting it right. Floats are suppose to extend past bottom of a container. You could try adding br style=clear:both/. That statement is correct in this instance but might be slightly misleading. It would be better to say that the heights of

Re: [WSG] Re: digest for wsg... - IMPORTANT!

2004-05-23 Thread russ - maxdesign
WSG members, Peter and I have asked members on numerous occasions to avoid posting suggestions or comments directly to the list. The aim of the list is to discuss web standards, not optional ways of running the list. With 600 plus members, we cannot afford to keep having these open debates. It

[WSG] Ten questions for Patrick Griffiths

2004-05-24 Thread russ - maxdesign
Patrick Griffiths talks about HTML Dog, AAA compliance, the HR element, Elastic Design and web standards. http://webstandardsgroup.org/features/patrick-griffiths.cfm Russ * The discussion list for http://webstandardsgroup.org/ See

Re: [WSG]

2004-05-26 Thread russ - maxdesign
Jeffrey Veen caused a big debate by loudly proclaiming I don't care about accessibility - and he's right. If you code nice html, you don't need to care. While there is some truth in this, I'd be hesitant to make such a strong statement. Jeffrey Veen was trying to make the point that using

Re: [WSG] Impairment browsers (insert correct pc term here)

2004-05-26 Thread russ - maxdesign
I agree with Patrick, blind users use quick access methods like jumping through links and headings on the page that you'd need to know about. Having the tools at hand is still useful as it allows you to get a basic grasp of how they work. You can also test small parts of a page to see how it

Re: [WSG] Accessibility related

2004-05-27 Thread russ - maxdesign
This WAI country list is good but Aussies should be aware that NOIE no longer exists and AGIMO has taken over some of its responsibilities: http://www.agimo.gov.au/ A great overview of accessibility can be found here (from Andy Budd): http://www.skillswap.org/downloads/accessibility.pps Russ

Re: [WSG] Proper usage of Blockquote and Cite

2004-05-28 Thread russ - maxdesign
Bert, Cite can be used as an 'element' or as an 'attribute'. The cite element contains a citation or a reference to other sources. It is an inline element: pAs citeHarry Potter/cite said, q lang=en-usLook out!/q/p The cite attribute can be used with blockquote, q, del and ins elements: pSome

Re: [WSG] draft site check

2004-05-30 Thread russ - maxdesign
This will possibly answer your question about using more than H1 on a page: http://www.mail-archive.com/wsg%40webstandardsgroup.org/msg02718.html As always, opinions on structural markup come down to personal opinion :) Russ Thanks Russ, The reason I did that was because I wanted to have

Re: [WSG] Correct way to swap style sheets based on Browser?

2004-05-30 Thread russ - maxdesign
I was not aware of the @import and that it’s invisible to NN4 Are there any other browsers its invisible to? Anyone? There are a few different methods for importing style sheets. More info here: http://www.mail-archive.com/wsg%40webstandardsgroup.org/msg00841.html Russ The Australian

[WSG] Ten questions for Simon Willison

2004-05-31 Thread russ - maxdesign
Simon Willison is a seasoned Web developer from the UK, currently working in Lawrence, Kansas. By day, he develops web applications, specialising in both client- and server-side development, for the Lawrence Journal-World . By night, he writes about web standards and technologies on his web

[WSG] Some links for light reading....

2004-06-09 Thread russ - maxdesign
Web Standards Award winner for the month: http://www.webstandardsawards.com/previous/readymade_mag.html Web standards survey: http://webstandards.org/survey/200406 Stop Design reload II: http://www.stopdesign.com/log/2004/06/08/reloaded.html Some Fun With Valid and Some Not So Valid CSS:

Re: [WSG] Standard Hacks?

2004-06-09 Thread russ - maxdesign
Is the import hack a candidate for first (or sole) item on the list of standard hacks? It seems pretty essential to me to get version 4 browsers to degrade gracefully. CSS hacks are one of those questions (like font sizes) that bring out the fanatics from all sides. On one side you will have

[WSG] Some links for light reading...

2004-06-10 Thread russ - maxdesign
Let's start with some happy stuff... CSS Teaser Box - very nice tutorial from Roger Johansson: http://www.456bereastreet.com/archive/200406/css_teaser_box/ An insane list - Bending the Matrix http://www.orderedlist.com/examples/the_bend Then we have a bit of a validation discussion sweeping

Re: [WSG]   ma\rgin-right

2004-06-11 Thread russ - maxdesign
Here are some references http://archivist.incutio.com/viewlist/css-discuss/33559 http://www.webmasterworld.com/forum83/1177.htm Russ Hi, Where can I read about this work around? Chris * The discussion list for

[WSG] The WSG core team

2004-06-16 Thread russ - maxdesign
Hi all, The WSG has a core team who are made up from founding members and City meeting organisers. This core team is involved in overall directions and decision-making to do with the WSG. They are also around to help keep the list on topic, as Peter and I cannot be available 24 hours a day. The

Re: [WSG] Order of a state (link, visited, etc) styles in a stylesheet

2004-06-17 Thread russ - maxdesign
Does the order matter? Yes! read here: http://www.westciv.com/style_master/academy/css_tutorial/selectors/p_class_s electors.html If so why and is my order above correct? Yes, your order was correct Do we need to have all states styled? No you do not need to style all states Russ The

Re: [WSG] Accessibililty and the positioning of navigation

2004-06-18 Thread russ - maxdesign
I speak regularly to David Woodbridge, a blind user at the Royal Blind Society, Sydney. We used David to test a few of our site over the last few years. Before meeting David I always read that navigation should be last I nthe source. I asked David this when he came to talk to the WSG recently and

[WSG] Some links for light reading...

2004-06-21 Thread russ - maxdesign
Dan Cederholm asked people to send in web standards links for a free copy of his book. 485 people responded. http://www.simplebits.com/notebook/2004/06/16/contest.html In return the community has gained a huge list of web standards links, which Steve Smith has compiled into an ordered list:

[WSG] Ten questions for Molly Holzschlag

2004-06-21 Thread russ - maxdesign
Molly Holzschlag is an active and passionate member of the Web Standards Project who is dedicated to providing easy-to-access information about Web markup and design via her books, articles, courses, conference events and website Molly talks about her books, standards, CSS vs tables, the IE

[WSG] Redesigning smh.com.au amp; theage.com.au with css

2004-06-21 Thread russ - maxdesign
Project Mars - Redesigning smh.com.au amp; theage.com.au with css Peter Ottery put this presentation together for the Sydney meeting of the Web Standards Group on Thursday June 10, 2004. It outlines the process he and his team used to take the SMH and Age sites from table based layouts to full

[WSG] Free presentation for Sydney WSG members and their bosses

2004-06-23 Thread russ - maxdesign
As a preview to WE04, Web Essentials and the Web Standards Group will be hosting a free briefing in Sydney for executives and decision makers, addressing the business issues associated with web standards and accessibility. In other words, we want you to bring your bosses along for a short

[WSG] Some links for reading...

2004-06-27 Thread russ - maxdesign
Fluid Shadows: http://www.thoughtanomalies.com/archives/2004/06/20/fluid_shadows/ Structural Naming: http://www.meyerweb.com/eric/thoughts/2004/06/26/structural-naming/ Integrated Web Design: Strategies for Long-Term CSS Hack Management: http://www.informit.com/articles/article.asp?p=170511

Re: [WSG] CSS Block Element Probs...

2004-06-28 Thread russ - maxdesign
Chris, From a quick look, you seem have two problems - the box model issue and a border issue: 1. IE misinterprets the box model so your navigation div appears thinner in this browser compared to other browsers. http://css.maxdesign.com.au/listamatic/about-boxmodel.htm There are many ways to

[WSG] Ten questions for Richard rutter

2004-06-30 Thread russ - maxdesign
Richard Rutter, of Clagnut fame (http://www.clagnut.com/) talks about liquid layouts, scaling images access keys, ems, and the standards-based rebuild of Multimap. http://webstandardsgroup.org/features/richard-rutter.cfm Russ The Australian Museum. Australia's first - and leading - natural

[WSG] The man in blue - presentation to Melbourne WSG

2004-07-01 Thread russ - maxdesign
As many of you may know, Cameron (the man in blue) gave a talk to Melbourne WSG recently. He has just posted a more eloquent enunciation of the ideas in the first half of his presentation... http://www.themaninblue.com/writing/perspective/2004/07/02/ Enjoy. Russ The Australian Museum.

Re: [WSG] Looking for help and critiques on a new site

2004-07-03 Thread russ - maxdesign
Seona, Messages get missed. People are busy and help when they can. Don't read anything into it :) 1. your first problem is due to this: a name=topnbsp;/a Take out the non-breaking space and your columns will sit against the top of the viewport. It affected the left and middle column because

[WSG] Some links for light reading...

2004-07-17 Thread russ - maxdesign
The Practice of CSS Column Design: Boxes in Columns http://www.communitymx.com/abstract.cfm?cid=CB7B3 A navbar using lists http://www.westciv.com/style_master/house/tutorials/quick/list_navbar/index. html Learning CSS http://www.7nights.com/asterisk/archives/learning_css.php Per-site user

Re: [WSG] Trapping margins .. whats that?

2004-07-17 Thread russ - maxdesign
Hi Mike, Basically, the margin top of a child element can (theoretically should) poke out the top of the parent element if no border or padding are applied to the parent. To stop this occurring, top border or padding can be applied to the parent and the child's margin is 'trapped' within the

[WSG] Ten quick tests to check your web site for accessibility

2004-07-19 Thread russ - maxdesign
Ten quick tests to check your web site for accessibility http://www.accessify.com/tutorials/ten-quick-tests.asp Russ * The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on

Re: [WSG] Underlining tabbed to links

2004-07-19 Thread russ - maxdesign
Hi Ben, Please send the list a sample url so that people can see exactly what you have done and will then be better informed to help you. Russ Hi all, I have been trying to get a link to underline and change colour when tabbed to. I succeeded in getting the link to change colour when

Re: [WSG] Re:

2004-07-21 Thread russ - maxdesign
The previous email wasn¹t from me, we are looking into it. Don¹t answer or respond to it please. Thanks Russ (the real Russ) Predators Password: The Australian Museum. Australia's first - and leading - natural sciences and anthropology museum. Visit www.amonline.net.au The views in

[WSG] Sydney WSG meeting 5th August

2004-07-27 Thread russ - maxdesign
Hi Sydney members, The next Sydney WSG meeting will be held on 5th August - Thursday week. Agenda: 7.00pm - 7.15pm John Allsopp WE04 - things are hotting up! 7.15pm - 7.45pm Russ Weakley A web standards checklist How do you know your site is web standards compliant - with a detailed checklist

Re: [WSG] nested lists as menus...

2004-07-29 Thread russ - maxdesign
Hi Scott, These two lists may help: http://css.maxdesign.com.au/listamatic2/horizontal03.htm or: http://css.maxdesign.com.au/listamatic2/horizontal01.htm Russ on 30/7/04 5:18 AM, Scott Reston at wrote: thanks! just to clarify, i'm not trying to create drop-downs. just style the menu so

[WSG] Some light reading

2004-07-29 Thread russ - maxdesign
Throwing Tables Out the Window http://www.stopdesign.com/articles/throwing_tables/ These web sites are identical - or are they? http://phnk.com/design/survey/ A Programmer's Perspective of CSS http://www.uptodata.com/css/ CSS 1.0 Once-A-Day

Re: [WSG] Problem with 3 column layout

2004-07-31 Thread russ - maxdesign
I'd start in this page, which has links to many options: http://css-discuss.incutio.com/?page=AnyColumnLongest If you want to use background images you could also try these two... Fixed width layouts: http://www.alistapart.com/articles/fauxcolumns/ Liquid middle column layout:

[WSG] Updated Web Accessibility Tool bar

2004-08-03 Thread russ - maxdesign
Update on Web Accessibility Toolbar Accessible Information Solutions recently released the latest version of their Web Accessibility Toolbar: Version EN 1.1 http://www.nils.org.au/ais/web/resources/toolbar/ New features include: - one step access to enable/disable IE settings - keyboard access

[WSG] some light reading...

2004-08-04 Thread russ - maxdesign
:hover Considered Harmful: http://adactio.com/journal/display.php/20040804214738.xml What is Œthe flow¹?: http://xmouse.ithium.net/archives/2004/08/03/what-is-the-flow Centered links: http://realworldstyle.com/archives/86.html Most common CSS problems:

[WSG] Sydney WSG meeting

2004-08-06 Thread russ - maxdesign
Thanks to all those who attended last nights Sydney WSG. We had 38 people, so it was another big night. There were three topics covered. 1. WE04 update John Allsopp talked about the upcoming Sydney Web Essentials conference (http://we04.com). One exciting addition to the program will be the Web

[WSG] Adopting Web Standards - Free briefing for Education and Government

2004-08-06 Thread russ - maxdesign
Adopting Web Standards Free briefing for Education and Government Government and education are at the forefront of the adoption of web standards. To aid in this process, Web Essentials is hosting this free briefing, featuring the W3Cs Dean Jackson, and highly respected web accessibility expert

Re: [WSG] guide to CSS inheritance

2004-08-08 Thread russ - maxdesign
Inheritance gets a bit trickier when you start talking about font-sizes, as they inherit the 'computed value'. A detailed explanation here (under font size and inheritance): http://css.maxdesign.com.au/selectutorial/advanced_inheritance.htm More on computed values:

[WSG] Some light reading...

2004-08-11 Thread russ - maxdesign
Westciv's free online CSS course - week 1 of CSS Level 1: http://www.westciv.com/courses/free/index.html A Better Image Rotator: http://www.alistapart.com/articles/betterrotator/ WaSP Interviews Jim Ramsey on the redesign of The San Francisco Examiner

Re: [WSG] Image size--where should it be?

2004-08-12 Thread russ - maxdesign
Edd, Without sounding like fence sitting, the answer would be it depends on the situation and personal opinion. You probably should start by separating out images into two categories; (1) decorative images (2) content-based images (1) A decorative image is one that is purely superficial -

Re: [WSG] applying style to the 3rd column of a table?

2004-08-12 Thread russ - maxdesign
Hi Justin, Not well supported by IE but you can do with adjacent sibling selectors: td+td+td { background: red;} Only the third column would display a red background Sample: http://www.maxdesign.com.au/jobs/css/adjacent.htm Russ Hi Folks, Is there any way (without ids or classes) to

Re: [WSG] Table-Free Design

2004-08-16 Thread russ - maxdesign
Hi John, Some step-by-step tutorials that may be of help to you: 3 column layout with fixed edge columns: http://css.maxdesign.com.au/selectutorial/tutorial_intro.htm 3 column liquid layout: http://www.maxdesign.com.au/presentation/liquid/ 3 column semi-liquid layout:

Re: [WSG] Techniques for Styling Columns in Tables?

2004-08-16 Thread russ - maxdesign
Geoff, This was sort-of answered a few days ago, but it depends on the degree of styling needed. Ideally you could use descendant selectors - depending on your specific need. With the use of correct table elements like th, thead, tbody, tfoot etc you can style individual slabs of tables to look

Re: [WSG] list item markers disappear behind floated image

2004-08-17 Thread russ - maxdesign
Pete, This may sound insane but the problem is fixable by floating the ul element. ul { float: left; } 0r if more specific version is needed: ul#wrapped-list { float: left; } This will have a major impact on content that comes after the list (will appear up beside the list), but this could be

Re: [WSG] list item markers disappear behind floated image

2004-08-17 Thread russ - maxdesign
I tried that too, Hugh, but in Safari the background images on the list items went all the way under the floated image. Each browser seems to have their own reading on where the background of a list should stop. Here is a sample page with both options:

Re: [WSG] Unaccessible - NY Attorney General busts two big name sites

2004-08-20 Thread russ - maxdesign
And of course, Bruce Maguire (the guy who sued SOCOG) will be speaking about accessibility and legal implications for Australian Developers at the upcoming September WE04 conference. :) Russ Have you forgotten Sydney Olympics web site, it was 4 years ago the Human Rights Commission awarded

Re: [WSG] Re: Xhtmlandcss.co.uk Email

2004-08-23 Thread russ - maxdesign
Please reply to Mark directly offlist as this is offtopic Thanks Russ Hi All, I've just bought the Domain XhtmlandCss.co.uk and wanted to offer email forwarders to anyone intrested in one? I know its not what i should really use the list for but i just wanted to offer it out to y'all

Re: [WSG] Unaccessible - NY Attorney General busts two big name sites

2004-08-23 Thread russ - maxdesign
PROTECTED] On Behalf Of russ - maxdesign Sent: Friday, August 20, 2004 2:49 AM To: Web Standards Group Subject: Re: [WSG] Unaccessible - NY Attorney General busts two big name sites And of course, Bruce Maguire (the guy who sued SOCOG) will be speaking about accessibility and legal implications

[WSG] Some light reading...

2004-08-23 Thread russ - maxdesign
BrowseHappy - a Web Standards Project initiative http://browsehappy.com/ The future of accesskeys http://www.wats.ca/articles/thefutureofaccesskeys/66 Fitts¹ Law and Text Links: http://www.dbenton.com/go/chronicles/2004/08/22/fitts-law-and-text-links/ Line length (yet again)

Re: [WSG] [OT] NZ vs Aust - THREAD CLOSED - ADMIN

2004-08-25 Thread russ - maxdesign
This thread is now completely off topic. THREAD CLOSED Thanks Russ WE ARE NOT AUSSIES WE ARE CLEARLY DIFFERENT/SUPERIOR TO THE AUSSIES KIWI'S RULE!!! ** The discussion list for http://webstandardsgroup.org/ Proud presenters of Web

[WSG] Some updates on WE04 and free briefing session

2004-08-26 Thread russ - maxdesign
Hi all, First of all, the Free Briefing for Education and Government next Thursday night is all but full. We have over 70 people coming to this event which is absolutely amazing. We're really pleased that interest in web standards and accessibility has spread throughout Australia over the last

[WSG] Next WSG meeting in Sydney - September 16

2004-09-02 Thread russ - maxdesign
Sydney WSG meeting Date: Thursday 16th September Time: 6.30pm informal start for 7pm start Where: Australian Museum Search Discover meeting room Level 2 6 College Street Sydney We have two exciting presentations lined up for the night. 1. Mark Stanton from Gruden will be talking about

Re: [WSG] Next WSG meeting in Sydney - September 16

2004-09-02 Thread russ - maxdesign
Yes please RSVP: [EMAIL PROTECTED] Keep in mind that we are keen to get other cities up and running with meetings so contact Peter and I offlist if you want to know about your city - [EMAIL PROTECTED] Thanks Russ on 3/9/04 3:24 PM, Neerav at wrote: RSVP like normal to [EMAIL PROTECTED] ?

Re: [WSG] A proper way to style images?

2004-09-03 Thread russ - maxdesign
Vaska, Without seeing your problem (to see if other css rules have affected it) it sounds like the 5 pixels you are talking about is space for characters that require acutes, umlauts etc. Some browsers allow space for the full height of these slightly taller characters within the paragraph box,

Re: [WSG] Interview markup?

2004-09-04 Thread russ - maxdesign
The WSG ten question interviews are marked up as Definition lists: http://webstandardsgroup.org/features/ More on definition lists here: http://www.maxdesign.com.au/presentation/definition/ Russ What is the most semantic way to markup an interview?

[WSG] Recap of free briefing for Education and Government

2004-09-05 Thread russ - maxdesign
Last Thursday night was our Adopting Web Standards - Free briefing for Education and Government. It was a highly successful night with almost 100 education and government developers in attendance. Roger Hudson presented Universal Accessibility - with some very interesting demonstrations. His

Re: [WSG] Web standards planet

2004-09-13 Thread russ - maxdesign
Thank you all for comments, its worthy really if you want to help I need 3) more web standards related bloggs,sites Here are a few... http://www.nypl.org/styleguide/ http://www.dezwozhere.com/links.html http://www.unmatchedstyle.com/ http://www.stylegala.com/ http://www.cssbeauty.com/

[WSG] WE04 and social gatherings...

2004-09-18 Thread russ - maxdesign
There have been a few comments on-list about meeting for drinks and such on and around WE04 later this month. To make things easy, we have added a WE04 blog entry that you can use to set up whatever social event you want. Plus it frees up the WSG for important discussions like... um... Anyway,

[WSG] Some links for light reading

2004-09-18 Thread russ - maxdesign
Standards Savings: http://www.meyerweb.com/eric/thoughts/2004/09/13/standards-savings/ Effect of z-index value to Releative Positioned and Absolute Positioned blocks: http://www.aplus.co.yu/CSSdesign/z-pos/ Spread Firefox: http://www.spreadfirefox.com/ min-height: fixed;

[WSG] 10 Questions for Jon Hicks

2004-09-18 Thread russ - maxdesign
Jon Hicks of Hicks Design talks about standards, his site, IE whitespace, logo designs and browser resources. Read more: Ten Questions for Jon Hicks. http://webstandardsgroup.org/features/jon-hicks.cfm Thanks Russ ** The discussion list for

  1   2   3   4   >