ty-product-list__item-name CS-Cart中的H2标签

时间:2016-09-02 10:04:50

标签: css cs-cart

我正在尝试在模板文件中专门修改div课程ty-product-list__item-name,因此它会显示为h2个标签。

该类出现在我的模板文件中

<div class="ty-product-list__info">
<div class="ty-product-list__item-name">
    {assign var="name" value="name_$obj_id"}
    {$smarty.capture.$name nofilter}
</div>

1 个答案:

答案 0 :(得分:0)

使用以下声明似乎正常工作

<h2 class="ty-product-list__item-name"> {assign var="name" value="name_$obj_id"} {$smarty.capture.$name nofilter} </h2>

完美