Quote:
What do you mean by "a version that only uses tables..." could you elaborate a bit?
|
- Most XHTML/CSS based websites only use tables for displaying data, not just plain text.
Why have a menu displayed like this:
Code:
<tbody><tr>
<td class="VertMenuTitle">[img]/demo/skin1/images/dingbats_categorie.gif[/img]
<font class="VertMenuBoxNewsTitle">Categories</font>
</td>
</tr>
<tr>
<td class="VertMenuBox">
<table border="0" cellpadding="5" cellspacing="0" width="100%">
When you can achive the same thing by:
Code:
<div class="menuItems">
Basically, take what you have, and go further with it.