Merge branch 'ticket/r11769-traffic-boutique_suite' of gitlab.antadis.net:dev-antadis/toutpratique into ticket/r11769-traffic-boutique_suite

This commit is contained in:
Romu 2016-12-16 02:06:41 -08:00
commit 95ac37bcbc
3 changed files with 8 additions and 4 deletions

View File

@ -2520,6 +2520,9 @@ main#categorycms { margin-bottom: 30px }
#postedito .pack_content .image {
padding: 25px 0;
}
#postedito .pack_content .image img {
margin: 0 auto;
}
#postedito .pack_content .content_product .link_name {
font-family: 'pt_sansbold';
font-weight: normal;

View File

@ -10,9 +10,10 @@
$(document).ready(function() {
$('#owl').owlCarousel({
autoplay : 20000,
loop: true,
slidespeed : 20000,
paginationspeed : 20000,
loop: 20000,
navigation : true,
paginationSpeed : 200,
margin:10,
navText:'',
nav:true,

View File

@ -146,8 +146,8 @@
<div class="last_edito">
<div class="title">{l s='Les derniers éditos'}</div>
<ul>
{foreach from=$last_editos item=edito}
<li><a href="{$link->getPostEditoLink($edito->id)}" title="{$edito->title}">- {$edito->title}</a></li>
{foreach from=$last_editos item=last_edito}
<li><a href="{$link->getPostEditoLink($last_edito->id)}" title="{$last_edito->title}">- {$last_edito->title}</a></li>
{/foreach}
</ul>
</div>