login | register
Tue 18 of Nov, 2008 (09:25 UTC)

bitweaver - Web Application Framework and CMS

Web Application Framework and CMS

Refresh cache

redesigning menus

by xing
Tuesday 20 of July, 2004
Posted to BWDesigner's Blog
i think we should move to a list method of menus rather than using the current method of link with with the class definition:
display: block;

this is to avoid rendering difficulties browsers that don't support display: block;

if we use something like:

<dl>
<dt>menuhead1</dt>
<dd>menuoption1</dd>
<dd>menuoption2</dd>
<dt>menuhead2</dt>
<dd>menuoption3</dd>
<dd>menuoption4</dd>
</dl>


this would render ok even with no css settings.

styling would be specific and easy as well by setting:
.module dt {}
.module dd {}

Comments