borovel1 0 Posted February 22, 2019 Report Share Posted February 22, 2019 Попробовали но что то не получается! Есть ли какие то другие варианты? Link to post Share on other sites
support 447 Posted February 22, 2019 Report Share Posted February 22, 2019 49 минут назад, borovel1 сказал: Попробовали но что то не получается! Есть ли какие то другие варианты? Есть. В /app/webroot/css/vamshop.css задать фон, тогда текст будет виден, как в demo2.vamshop.ru Для стиля: .featured-categories .thumbnail .title Укажите backgrounr-color: #fff; Тогда Ваша надпись категории будет на белом фоне и будет читаемый текст. А вообще, надо ж хоть немного основы знать html + css, тогда всё было бы намного проще. Без основ Вы ж ничего не сможете сделать. Link to post Share on other sites
support 447 Posted February 22, 2019 Report Share Posted February 22, 2019 вот например шаблон subcategory-listing: {if $content_list} <div class="row featured-categories"> <ul class="thumbnails"> {foreach from=$content_list item=node} <li class="item col-sm-4 col-md-3"> <div class="thumbnail text-center"> <a href="{$node.url}" class="image"> <img src="{$node.image}" alt="{$node.name}"{if {$node.image_width} > 0} width="{$node.image_width}"{/if}{if {$node.image_height} > 0} height="{$node.image_height}"{/if} /> </a> <div class="inner notop text-left"> <a href="{$node.url}"><h4 class="title"><i class="fa fa-folder-open"></i> {$node.name}</h4></a> </div> </div> </li> {/foreach} </ul> </div> {else} <div>{lang}No Items Found{/lang}</div> {/if} Можно ведь даже методом тыка всё поменять, даже если не знаете html. Link to post Share on other sites
Recommended Posts