KPACHODAP
DELETED
- Регистрация
- 21 Дек 2009
- Сообщения
- 683
- Реакции
- 312
- Автор темы
- #1
Народ помогите у только второго дива поставить значение style="margin-left:10px; margin-right:0px;"
пытался {if $smarty.foreach.item.iteration is div by 2}style="margin-left:10px; margin-right:0px;"{/if}
она ставит на каждом втором элементе стиль, пробывал index естественно он делает все наоборот!!
помогите плиз!!! если что не понятно говорите!
Есть список товаров:
пытался {if $smarty.foreach.item.iteration is div by 2}style="margin-left:10px; margin-right:0px;"{/if}
она ставит на каждом втором элементе стиль, пробывал index естественно он делает все наоборот!!
помогите плиз!!! если что не понятно говорите!
Есть список товаров:
Код:
<div class="centerBoxWrapper" id="featuredProducts">
<h2 class="centerBoxHeading">Спец предложения</h2>
{foreach from=$__products item=_product name=item}
{if $_product.slug}
{assign var=_product_url value="?productID=`$_product.productID`&product_slug=`$_product.slug`"|set_query_html}
{else}
{assign var=_product_url value="?productID=`$_product.productID`"|set_query_html}
{/if}
<div class="centerBoxContentsFeatured centeredContent back" style="width:33%;"><div class="product-col"
{if $smarty.foreach.item.iteration is div by 5}style="margin-left:10px; margin-right:0px;"{/if}
{if $smarty.foreach.item.iteration is div by 3}style="margin-left:20px;"{/if}
>
<div class="img">
<a href="{$_product_url}" title="{$_product.name|escape:'html'}"><img id="img_{$_product.productID}" src="{$smarty.const.URL_PRODUCTS_PICTURES}/{$_product.thumbnail|escape:'url'}" title="{$_product.name|escape:'html'}" alt="{$_product.name|escape:'html'}" style="max-width:181px;max-height:181px;" /></a>
</div>
<div class="prod-info">
<a class="name" href="{$_product_url}" >{$_product.name|escape:'html'}</a>
<div class="wrapper">
{if $_product.Price}
<div class="price">
<strong>{$_product.price_str}</strong>
</div>
{/if}
<div class="button"><a href="{$_product_url}" ><img src="/published/SC/html/scripts/repo_themes/vsvkus_v2/all/buttons/english/button_goto_prod_details.png" alt="{$_product.name|escape:'html'}" title="{$_product.name|escape:'html'}" width="56" height="26"/></a></div>
</div>
</div>
</div></div>
{if $smarty.foreach.item.iteration is div by 3}<br class="clearBoth"/>{/if}
{/foreach}
</div>