im assuming you are after having the list directly below and not padded to the right like normal?Illusionist wrote:Unipus, i jsut got around to testing the code you showed me. Although, it procudes something like:
blah blah blah
- menu item
- menu item
Is there any way, other than using a table, to get the centered-content div, beside the menu items?? Thanks.
edit: nvm forgot about CSS positioning! hehe
ok, i found this out by accideny many years ago but it still works
Code: Select all
<!-- usually you would use -->
<ul>
<li>item1</li>
<li>item2</li>
<li>item3</li>
<li>item4</li>
</ul>Code: Select all
<li>item1</li>
<li>item2</li>
<li>item3</li>
<li>item4</li>i know for a fact this works in IE5.5 and 6, not sure about the other OS's
Hope this is what you were talking about
Mal