Quoting Erik Peterson <[EMAIL PROTECTED]>:
>
>
>
> On 12/13/05 3:03 PM, "Paul Bryson" <[EMAIL PROTECTED]> wrote:
>
> > Category (eg "Alerts")
> >
> > <div>Alerts</div>
> > <div>Weather</div>
> >
> > My biggest problem is the Category/Topic. They are both descriptive of
> the
> > entire news article, but aren't stored as such. Their order/importance
> > isn't categorized either, so one could be above the other if desired
> >
> > Any ideas how the Category/Topic could be appropriately stored without
> using
> > a DIV?
> >
>
> Hi Paul,
>
> My first thought was that my answer jumped out from your text: "Their
> order/importance isn't categorized either, so one could be above the other
> if desired". And I thought "well, it's a list of categories that doesn't
> have an order".
>
> How about:
>
> <h2>Hurricane in LA</h2>
> <ul>
> <li>Alerts</li>
> <li>Weather</li>
> </ul>
> <dl>
> <dt>Posted by:</dt>
> <dd>Paul</dd>
> <dt>Posted date:</dt>
> <dd>December 15, 1940</dd>
> </dl>
> <div>Locals were shocked today when...</div>
>
> -Erik
Just wondering on this (as I'm dealing with what would be an appropriate
structure in a refactor for some CMS architecture myself)..
<ul>
<li class="category">Alerts</li>
<li class="category">Weather</li>
</ul>
<dl>
<dt>Posted by:</dt>
<dd cite="http://www.paulswebsiteurl">Paul</dd>
<dt>Posted date:</dt>
<dd><abbr class="dtstamp" title="1940-12-15">December 15, 1940</abbr></dd>
</dl>
Would this work?
Lawrence Meckan
*********************************************************
The CMS discussion list for http://webstandardsgroup.org/
*********************************************************