Re: [WSG] Footer stuff

2004-09-20 Thread Paul Novitski
At 06:22 PM 9/19/2004, Amit Karmakar wrote: What is better in terms of semantics and accessibility? div id=footer pstuff | more stuffbr / stuff too | more stuff again/p /div or div id=footer ullistuff/li | limore stuff/li listuff too/li | limore stuff again/li/ul /div Amit, I suppose you need to

[WSG] Footer stuff

2004-09-19 Thread Amit Karmakar
Apologies if this has been discussed before. What is better in terms of semantics and accessibility? div id=footer pstuff | more stuffbr / stuff too | more stuff again/p /div or div id=footer ullistuff/li | limore stuff/li listuff too/li | limore stuff again/li/ul /div Obviously the first one

RE: [WSG] Footer stuff

2004-09-19 Thread Hill, Tim
: +612 9937 0546 [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Amit Karmakar Sent: Monday, 20 September 2004 11:22 AM To: [EMAIL PROTECTED] Subject: [WSG] Footer stuff Apologies if this has been discussed before. What is better in terms

Re: [WSG] Footer stuff

2004-09-19 Thread adam reitsma
Hi Amit, Ben Bishop's presentation at the sydney WSG meeting outlined that he used a list for his footer: http://www.nzsteel.co.nz/nz/ He also used css for the divider, instead of pipes: #footermenu li a { height:1em; padding:0 0.75em; border-left:1px solid #999;

Re: [WSG] Footer stuff

2004-09-19 Thread Patrick H. Lauke
The semantics obviously depend on what stuff | more stuff and stuff too | more stuff again actually are... Patrick Amit Karmakar wrote: Apologies if this has been discussed before. What is better in terms of semantics and accessibility? div id=footer pstuff | more stuffbr / stuff too | more

Re: [WSG] Footer stuff

2004-09-19 Thread Joshua Street
If you were going to use the second example, I'd recommend using border:whatever; instead of pipe characters... My $AU0.03 On Mon, 2004-09-20 at 11:22, Amit Karmakar wrote: Apologies if this has been discussed before. What is better in terms of semantics and accessibility? div id=footer

Re: [WSG] Footer stuff

2004-09-19 Thread Patrick H. Lauke
adam reitsma wrote: div id=footer ullistuff/li | limore stuff/li/ul ullistuff too/li | limore stuff again/li/ul /div Drop those | in between list items, as it's not valid markup (probably just an oversight, but it's best to clarify nonetheless) Patrick

Re: [WSG] Footer stuff

2004-09-19 Thread James Ellis
Amit It's a list of information for the user. You can use floats to turn on/off horizontal/vertical display of the list. You'll have much more control over the list display than with a br Also, you should move the pipes within an li tag or use the li or a border to act as the delimiter so a

Re: [WSG] Footer stuff

2004-09-19 Thread Amit Karmakar
Thanks All, I think lists is the way to go in this case, a paragraph is more appropriate(some would say only ever appropriate) where it is truly a paragraph of text/content Well, time to rework my own footers :) On Mon, 20 Sep 2004 01:50:21 +, James Ellis [EMAIL PROTECTED] wrote: Amit