Здравствуйте. Установил кнопку скачать на главной странице (для каждого материала, под картинкой) http://vsthouse.ru/
Как сделать, чтобы кнопка отображалась в результатах поиска по тегам, также под картинкой материала? Куда нужно установить код кнопки?
Коды кнопки:
КАТАЛОГ ФАЙЛОВ
ВИД МАТЕРИАЛОВ
ПОСЛЕ:
4 <?if($MESSAGE$)?><div class="eMessage" style="text-align:left;clear:both;padding-top:2px;padding-bottom:2px;">$MESSAGE$</div><?endif?><div class="eDetails" style="clear:both;">
поставил код кнопи:
<!-- Скачать торрент на главной странице НАЧАЛО --> <?if($FILE_URL$)?><div class="button-wrapper"> <a href="$FILE_URL$" class="a-btn"> <span class="a-btn-text"><small>Скачать</small></span> </a> </div><?endif?>  <!-- Скачать торрент на главной странице --> <!-- Скачать торрент СО СТОРОННЕГО СЕРВЕРА на главной странице НАЧАЛО --> <?if($RFILE_URL$)?><div class="button-wrapper"> <a href="$RFILE_URL$" class="a-btn"> <span class="a-btn-text"><small>Скачать удаленно</small></span> </a> </div><?endif?>  <!-- Скачать торрент СО СТОРОННЕГО СЕРВЕРА на главной странице - конец -->
В CSS ВСТАВИЛ:
/* ДЛЯ КНОПКИ СКАЧАТЬ НА ГЛАВНОЙ СТРАНИЦЕ ------------------------------------------*/ .a-btn{ color: #fff!important; text-decoration: none!important; } .a-btn{ background:#80a9da; background:-webkit-gradient(linear,left top,left bottom,color-stop(#80a9da,0),color-stop(#6f97c5,1)); background:-webkit-linear-gradient(top, #80a9da 0%, #6f97c5 100%); background:-moz-linear-gradient(top, #80a9da 0%, #6f97c5 100%); background:-o-linear-gradient(top, #80a9da 0%, #6f97c5 100%); background:linear-gradient(top, #80a9da 0%, #6f97c5 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#80a9da', endColorstr='#6f97c5',GradientType=0 ); padding-left:24px; padding-right:12px; height:17px; display:inline-block; position:relative; border:1px solid #a1abb7; -webkit-box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 3px rgba(0,0,0,0.2); -moz-box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 3px rgba(0,0,0,0.2); box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 3px rgba(0,0,0,0.2); -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px; float:left; clear:both; margin:5px 0px; overflow:hidden; -webkit-transition:box-shadow 0.3s ease-in-out; -moz-transition:box-shadow 0.3s ease-in-out; -o-transition:box-shadow 0.3s ease-in-out; transition:box-shadow 0.3s ease-in-out; } .a-btn-text small{ display:block; font-size:11px; margin:-3px 0px 0px -12px; letter-spacing:1px; } .a-btn:hover{ -webkit-box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 5px rgba(0,0,0,0.4); -moz-box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 5px rgba(0,0,0,0.4); box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 5px rgba(0,0,0,0.4); } .a-btn:hover img{ opacity:0; } .a-btn:active{ position:relative; top:1px; background:#5d81ab; -webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.4) inset; -moz-box-shadow:1px 1px 2px rgba(0,0,0,0.4) inset; box-shadow:1px 1px 2px rgba(0,0,0,0.4) inset; border-color:#80a9da; } /* -------------------------------------- */