PDA

View Full Version : Getting rid of brackets around artist name



zombie0
02-25-2005, 02:55 AM
When using the Crisp theme, if the song artist name is different then the CD artist name (for example, with various artists) the name is shown in brackets ( ). Does anyone know what to delete using daxedit so that those brackets aren't there?

Thanks ...

rcarljohnson
02-25-2005, 08:45 AM
Open the Crisp.dax file in DaxEdit. Go to the Album Page and then scroll down towards the end of the page until you find the following code:

<h3 class="topper">TRACK LISTING</h3>
<hr>
<div class="tracklist">
<!--[volume]-->
<!---->
<div style="margin-bottom: 8px"><!--[volumename/]--> [<!--[volumetime/]-->]</div>
<!---->
<!-- <table class="list"> --->
<table class="tracklisttable" cellpadding="0" cellspacing="0" border="0">
<!---->
<tr>
<td class="tracklisttd"><!--[tracknum/]-->.&amp;nbsp;</td>
<td class="tracklisttd"><!----><!--[tracktitle/]--><!----> <!--[tracktime/]-->

<!---->
<br><i>(<!--[trackartist/]-->)</i>
<!---->

<!---->
<br><i>(<!--[trackcomposer/]--><!----> / <!--[trackauthor/]--><!---->)</i>
<!--[else]-->
<!---->
<br><i>(<!--[trackauthor/]-->)</i>
<!---->
<!---->

<!---->
<br><!----><font color=$x2_color>play</font><!---->
<!---->
</td>
</tr>
<!---->

Now within that code find this code:

<!--[trackauthor/]--><!--[/if]-->)</i>
<!--[else]-->
<!--[if(trackauthor)]-->
<br><i>(<!--[trackauthor/]-->)</i>

Change this:

<br><i>(<!--[trackauthor/]-->)</i>

To this:

<br><i><!--[trackauthor/]--></i>

That should do it.

Bob

zombie0
02-25-2005, 02:17 PM
Thanks alot Bob,

It's actually the code a few lines up, that say:

<!---->
<br><i>(<!--[trackartist/]-->)</i>
<!---->

that you change to:


<br><i><!--[trackartist/]--></i>

but you helped me figue it out.

Thanks again.