btw, every time I get new version of OCD, I must to edit main template to highlight by color songs w/lyrics (or instrumental).
May be it possible to include couple of my suggestions in "Default V6.dax"? Or some advice to automate this process?
I think album properties has better look when tracktitle and tracktime placed in separate cells. Also I select color of "tracktime" field depending' of lyric presence.
It looks like that:
----------
<tr>
<td><dax:tracknum/>.&amp;nbsp;</td>

<td width="100%" <dax:if($show_track_list_ratings)><dax:if(!trackra ting)>colspan="2"</dax:if></dax:if>>

<dax:tracklink><dax:tracktitle/></dax:tracklink> &amp;nbsp;
--------cut-----------

</td>
<!-- Show track time in color if track lyrics are included -->
<td class="tracklisttd" align="right">
<dax:if(lyrics)>
<font color="$ly_color"><dax:tracktime/>&amp;nbsp;</font>
<dax:else>
<dax:if(trackinstrumental)>
<font color="$ly_color"><dax:tracktime/>&amp;nbsp;</font>
<dax:else>
<dax:tracktime/>&amp;nbsp;
</dax:if>
</dax:if>
</td>
<dax:if($show_track_list_ratings)>
<dax:if(trackrating)>
<td>&amp;nbsp;&amp;nbsp;<dax:trackratingcombo($bg_ color)/></td>
</dax:if>
</dax:if>
</tr>
-----------
I'm only move "tracktime" behind the new <td> tag and add couple other string and one variable color section.