I put this code in my carbon theme album.tpl for not showing the image name. Now it also removed the name of my albums. Is there any possibilty that it shows the album title but not the image title
best Phil
{if $theme.params.showItemTitle}
{if !empty($child.title)}
{if $child.canContainChildren}
<table cellpadding="0" cellspacing="0">
<tr>
<td class="giTitleIcon">
<div class="iconAlbum"></div>
</td>
<td>
<p class="giTitle">{$child.title|markup}</p>
</td>
</tr>
</table>
{else}
<p class="giTitle">{$child.title|markup}</p>
{/if}
{/if}
{/if}
Posts: 25961
this is the bit of code you want to remove from album.tpl just the bold:
{if $child.canContainChildren} <table cellpadding="0" cellspacing="0"> <tr> <td class="giTitleIcon"> <img src="{g->url href="themes/carbon/images/album.gif"}" alt=""/> </td> <td> <p class="giTitle">{$child.title|markup}</p> </td> </tr> </table> {else} <p class="giTitle">{$child.title|markup}</p> {/if} {/if}Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 3
sweet you are the best dave !
best phil