Hi Charles

For the time being, here's a simple way to get a single column display:

1. Make a copy of your Default V6.dax file. You could name it Default V6OneCol.dax, for instance.

2. Start the [fixed]Theme Editor[/fixed] (DAXEDIT.EXE)

3. Open the new theme you just created
(Default V6OneCol.dax)

4. Select the [fixed]Album Page[/fixed] tab

5. Search for [fixed]<td class="right">[/fixed], which should be on line 242 (You can try hitting [fixed]CTRL+G[/fixed], and then entering 242)

6. Comment out the mentioned code line and the one preceeding it. The result should look like this:

[fixed]</div>
<!--/td>
<td class="right"-->

<div class="section" id="tracks">[/fixed]

7. Now save the theme ([fixed]CTRL+S[/fixed]).

8. Start [fixed]OCD[/fixed] and select the new theme ([fixed]View &#124; Preferences &#124; Theme tab[/fixed])

You should now have a single-column Album display. The sections are still not in the order you wanted. But that's fairly easy to fix, now that they are all in one column.

If you go back to the [fixed]Theme Editor[/fixed], and the [fixed]Album Page[/fixed] tab, you will see that each of the five sections:

- Line-up (starts on line 149)
- Notes
- Web Links
- Track listing
- Credits

are enclosed in [fixed]DIV[/fixed] tags.

So if you want to reorganize the sections, all you have to do is move (cut &amp; paste) a complete [fixed]DIV[/fixed] tag section

[fixed]<div class="section" id="lineup">
............

</div>
[/fixed]

to the desired location.

Just make sure that you don't mess with the first 149 lines (which is everything above the Line-up section). And don't mess with the last 6 lines. They should read:

[fixed]</td>
</tr>
</table>
</div>
</body>
</html>
[/fixed]

That's it. Good luck!