This is a very simple question but it has irritated me. I would like to comment the following for example:
<!--  
        {if $scenes}
            <!-- Scenes -->
            {include file="$tpl_dir./scenes.tpl" scenes=$scenes}
        {else}
            <!-- Category image -->
            {if $category->id_image}
            <div class="align_center">
                <img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category')}" alt="{$category->name|escape:'htmlall':'UTF-8'}" title="{$category->name|escape:'htmlall':'UTF-8'}" id="categoryImage" width="{$categorySize.width}" height="{$categorySize.height}" />
            </div>
            {/if}
        {/if}
    -->
I would like to comment out all this text, so the browser won;t display this code. The problem is that I have already comments and it seems that the browser confuses the end tag. Therefore in this case the first opening comment tag only would affect {if $scenes} when I would wish it affects the entire text. Could you let me know how can this be done?!?!
Thanks,
Dani
 
     
    