I'm trying to represent the path as an unordered list, e.g.

Home > Level One > Level Two > Level Three > etc.

<ul>
  <li>Home</li>
  <li>Level One</li>
  <li>Level Two</li>
  <li>Level Three</li>
  <li>etc.</li>
</ul>


I just looked at your sample page; looks like you've gotten it to wrap now, right? (Checked Safari and Firefox, Mac OSX)

What I wanted to offer is that this looks more like an ordered list, since this (alphabetical) ordering of the content loses its meaning:

<ul>
  <li>etc.</li>
  <li>Home</li>
  <li>Level One</li>
  <li>Level Three</li>
  <li>Level Two</li>
</ul>

Even though browsers won't re-order an unordered list it's conceivable that some scripting monkey would make some code to allow resorting of any unordered list on a page by date, alphabetical, etc. Or some other such magic might come along. Ordered lists should be untouched, since the order is the meaning.

Hardly worth $0.02, but there you go.

--

   Ben Curtis : webwright
   bivia : a personal web studio
   http://www.bivia.com/
   v : 818 507 6613




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

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



Reply via email to