diff --git a/install.md b/install.md new file mode 100644 index 00000000..eb04cb9d --- /dev/null +++ b/install.md @@ -0,0 +1,10 @@ +/* override cms */ +ALTER TABLE `ps_cms` ADD `matrices` LONGTEXT AFTER `indexation` + +ALTER TABLE `ps_category` ADD `home` TEXT NOT NULL AFTER `is_root_category`, + +ALTER TABLE `ps_category_lang` ADD `description_univers` TEXT NOT NULL AFTER `description`, + ADD `liste_icons_univers` VARCHAR(255) NOT NULL AFTER `description_univers`, + ADD `long_description` TEXT NOT NULL AFTER `liste_icons_univers`, + + diff --git a/www/modules/advsitereviews/advsitereviews.php b/www/modules/advsitereviews/advsitereviews.php index 2fecf04b..4b4b8ca5 100644 --- a/www/modules/advsitereviews/advsitereviews.php +++ b/www/modules/advsitereviews/advsitereviews.php @@ -103,7 +103,7 @@ class AdvSiteReviews extends Module return $this->display(__FILE__, 'advsitereviews.tpl', $this->getCacheId()); } - + public function hookHeader($params) { $jsFiles = $this->context->controller->js_files; diff --git a/www/modules/advsitereviews/classes/AdvSiteReview.php b/www/modules/advsitereviews/classes/AdvSiteReview.php index 90d99349..6c5ae26b 100644 --- a/www/modules/advsitereviews/classes/AdvSiteReview.php +++ b/www/modules/advsitereviews/classes/AdvSiteReview.php @@ -10,6 +10,9 @@ class AdvSiteReview extends ObjectModel { public $firstname; public $lastname; public $content; + public $title; + public $place; + public $date; public static $definition = array( 'table' => 'advsitereviews', @@ -24,6 +27,10 @@ class AdvSiteReview extends ObjectModel { // Lang fields 'firstname' => array('type' => self::TYPE_STRING, 'lang' => TRUE, 'validate' => 'isGenericName', 'size' => 255), 'lastname' => array('type' => self::TYPE_STRING, 'lang' => TRUE, 'validate' => 'isGenericName', 'size' => 255), + 'lastname' => array('type' => self::TYPE_STRING, 'lang' => TRUE, 'validate' => 'isGenericName', 'size' => 255), + 'date' => array('type' => self::TYPE_STRING, 'lang' => TRUE, 'validate' => 'isGenericName', 'size' => 255), + 'title' => array('type' => self::TYPE_STRING, 'lang' => TRUE, 'validate' => 'isGenericName', 'size' => 255), + 'place' => array('type' => self::TYPE_STRING, 'lang' => TRUE, 'validate' => 'isGenericName', 'size' => 255), 'content' => array('type' => self::TYPE_STRING, 'lang' => TRUE, 'validate' => 'isCleanHtml') ) ); diff --git a/www/modules/advsitereviews/controllers/admin/AdminAdvSiteReviews.php b/www/modules/advsitereviews/controllers/admin/AdminAdvSiteReviews.php index ccca899d..13b83cf9 100644 --- a/www/modules/advsitereviews/controllers/admin/AdminAdvSiteReviews.php +++ b/www/modules/advsitereviews/controllers/admin/AdminAdvSiteReviews.php @@ -90,6 +90,24 @@ class AdminAdvSiteReviewsController extends ModuleAdminController { 'label' => $this->l('Note'), 'name' => 'rank', ), + array( + 'type' => 'text', + 'label' => $this->module->l('Titre'), + 'name' => 'title', + 'lang' => TRUE, + ), + array( + 'type' => 'text', + 'label' => $this->module->l('Lieu'), + 'name' => 'place', + 'lang' => TRUE, + ), + array( + 'type' => 'text', + 'label' => $this->module->l('Date'), + 'name' => 'date', + 'lang' => TRUE, + ), array( 'type' => 'textarea', 'label' => $this->l('Contenu'), diff --git a/www/modules/advsitereviews/controllers/front/default.php b/www/modules/advsitereviews/controllers/front/default.php new file mode 100644 index 00000000..f781bdc9 --- /dev/null +++ b/www/modules/advsitereviews/controllers/front/default.php @@ -0,0 +1,39 @@ +auth = true; + parent::__construct(); + $this->context = Context::getContext(); + } + + /** + * @see FrontController::initContent() + */ + public function initContent() + { + parent::initContent(); + + + $reviews = AdvSiteReview::getReviews(); + + if (!$reviews) { + return false; + } + + $this->context->smarty->assign('reviews', $reviews); + + $this->setTemplate('advsitereviewspage.tpl'); + } + +} diff --git a/www/modules/advsitereviews/controllers/front/index.php b/www/modules/advsitereviews/controllers/front/index.php new file mode 100644 index 00000000..8761a003 --- /dev/null +++ b/www/modules/advsitereviews/controllers/front/index.php @@ -0,0 +1,35 @@ + +* @copyright 2007-2016 PrestaShop SA +* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; \ No newline at end of file diff --git a/www/modules/advsitereviews/controllers/index.php b/www/modules/advsitereviews/controllers/index.php new file mode 100644 index 00000000..8761a003 --- /dev/null +++ b/www/modules/advsitereviews/controllers/index.php @@ -0,0 +1,35 @@ + +* @copyright 2007-2016 PrestaShop SA +* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; \ No newline at end of file diff --git a/www/modules/advsitereviews/views/templates/front/advsitereviewspage.tpl b/www/modules/advsitereviews/views/templates/front/advsitereviewspage.tpl new file mode 100644 index 00000000..a6d1c773 --- /dev/null +++ b/www/modules/advsitereviews/views/templates/front/advsitereviewspage.tpl @@ -0,0 +1,23 @@ +{if isset($reviews)} +
+
+ +
+ + +
+{/if} diff --git a/www/modules/antadisconfigurator/classes/ConfiguratorStorage.php b/www/modules/antadisconfigurator/classes/ConfiguratorStorage.php index 8a245f2c..41793f46 100644 --- a/www/modules/antadisconfigurator/classes/ConfiguratorStorage.php +++ b/www/modules/antadisconfigurator/classes/ConfiguratorStorage.php @@ -55,7 +55,7 @@ class ConfiguratorStorage extends ObjectModel LEFT JOIN `'._DB_PREFIX_.'configurator_opt_lang` col ON (col.`id_configurator_opt` = pcoi.`id_configurator_opt` AND col.`id_lang` = '.(int)$context->language->id.') WHERE pcoi.`id_product` = '.(int)$id_product.' - ORDER BY co.`position` ASC'); + ORDER BY pcoi.`id_product_configurator_opt_group`, co.`position` ASC'); return $result; } diff --git a/www/themes/chocolatdemariage/ajax-order-carrier.tpl b/www/themes/chocolatdemariage/ajax-order-carrier.tpl index dc75a5f5..fae747be 100644 --- a/www/themes/chocolatdemariage/ajax-order-carrier.tpl +++ b/www/themes/chocolatdemariage/ajax-order-carrier.tpl @@ -12,11 +12,17 @@
{foreach $option_list as $key => $option}
-
+
- +
+ {foreach $option.carrier_list as $carrier} + {if $carrier.logo} + + {/if} + {/foreach} +
{foreach $option.carrier_list as $carrier} @@ -30,14 +36,6 @@ {/foreach}
-
- {foreach $option.carrier_list as $carrier} - {if $carrier.logo} - - {/if} - {/foreach} -
-
{if $option.total_price_with_tax && !$option.is_free && (!isset($free_shipping) || (isset($free_shipping) && !$free_shipping))} {if $use_taxes == 1} diff --git a/www/themes/chocolatdemariage/contact-form.tpl b/www/themes/chocolatdemariage/contact-form.tpl index cdad25c6..1399efdc 100644 --- a/www/themes/chocolatdemariage/contact-form.tpl +++ b/www/themes/chocolatdemariage/contact-form.tpl @@ -1,11 +1,10 @@ {capture name=path}{l s='Contact'}{/capture} {capture name=title}{l s='Customer service'}{/capture} -{capture name=subtitle}{l s='Toute notre équipe est à votre écoute.'}{/capture} +{capture name=subtitle}{l s='Notre équipe se tient à votre disposition pour répondre à toutes vos questions. N’hésitez pas à nous laisser un message si vous avez des questions sur nos produits, nos prestations ou notre site.'}{/capture}
- - {include file="$tpl_dir./page-heading.tpl" title=$smarty.capture.title subtitle=$smarty.capture.subtitle type=''} + {include file="$tpl_dir./page-heading.tpl" title=$smarty.capture.title subtitle=$smarty.capture.subtitle type='account'} {if isset($confirmation)}
@@ -28,99 +27,143 @@
{else} - - -
-
-
-
-
- - {if isset($customerThread.id_contact)} - {foreach from=$contacts item=contact} - {if $contact.id_contact == $customerThread.id_contact} - - - {/if} - {/foreach} -
- {else} - -
- {/if} -

- - {if isset($customerThread.email)} - - {else} - - {/if} -

- {if !$PS_CATALOG_MODE} - {if (!isset($customerThread.id_order) || $customerThread.id_order > 0)} +
+
+ +
+
+
+
+
+ +

{l s='Contactez-nous'} {l s='par mail'}

+
+
- - {if !isset($customerThread.id_order) && isset($is_logged) && $is_logged} - - {elseif !isset($customerThread.id_order) && empty($is_logged)} - - {elseif $customerThread.id_order|intval > 0} - + + {if isset($customerThread.id_contact)} + {foreach from=$contacts item=contact} + {if $contact.id_contact == $customerThread.id_contact} + + + {/if} + {/foreach} +
+ {else} + +
+ {/if} +
+ + {if isset($customerThread.email)} + + {else} + {/if}
- {/if} - {if isset($is_logged) && $is_logged} - {if !isset($customerThread.id_product)} - {foreach from=$orderedProductList key=id_order item=products name=products} -
- - + {if !$PS_CATALOG_MODE} + {if (!isset($customerThread.id_order) || $customerThread.id_order > 0)} +
+ + {if !isset($customerThread.id_order) && isset($is_logged) && $is_logged} + + {elseif !isset($customerThread.id_order) && empty($is_logged)} + + {elseif $customerThread.id_order|intval > 0} + + {/if}
- {/foreach} - {elseif $customerThread.id_product > 0} - + {/if} + {if isset($is_logged) && $is_logged} + {if !isset($customerThread.id_product)} + {foreach from=$orderedProductList key=id_order item=products name=products} +
+ + +
+ {/foreach} + {elseif $customerThread.id_product > 0} + + {/if} + {/if} {/if} - {/if} - {/if} - {if $fileupload == 1} -

- - - -

- {/if} + {if $fileupload == 1} +
+ + + +
+ {/if} +
+ + +
+
+ +
+
+
-
-
- - + + +
+
+
+
+
+ +

{l s='Contactez-nous'} {l s='par téléphone'}
{l s='ou'} {l s='adresse postale'}

+
+
+
+
+
+
    +
  • {l s='Chocolat de mariage'}
  • +
  • {l s='12 route de Saint Germain'}
  • +
  • {l s='78620 L\'ETANG LA VILLE'}
  • +
+
+
+
+
+
    +
  • {l s='01 42 42 39 97'}
  • +
  • {l s='du lundi au vendredi'}
  • +
  • {l s='de 10h00 à 19h00'}
  • +
+
+ +
+
+
+ {l s='Chocolat de Mariage livre principalement la France mais nous pouvons également faire d’autres destinations, contactez-nous pour en savoir plus.'} +
+
-
- -
- - {/if} -
+
+
+ {/if} +
{addJsDefL name='filePlaceHolder'}{l s='No file selected' js=1}{/addJsDefL} diff --git a/www/themes/chocolatdemariage/css/global.css b/www/themes/chocolatdemariage/css/global.css index 1ddbb6ae..3622f821 100644 --- a/www/themes/chocolatdemariage/css/global.css +++ b/www/themes/chocolatdemariage/css/global.css @@ -1,7 +1,7 @@ html { background: #fff; font-size: 100%; overflow-x: hidden; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100% } body { color: #908984; font-family: 'Lato'; font-size: 14px; line-height: 18px; margin: 0; padding: 0; } body.content_only { margin: 0 } -.content-main { padding-top: 8%; position: relative; } +.content-main { padding-top: 9%; position: relative; } /*************************************************************************************************************/ /**************************************** ++ GLOBAL ++ ***************************************/ @@ -79,12 +79,14 @@ body.content_only { margin: 0 } width: auto; letter-spacing: 0.04em; } - .header-main .header-top-right > .header-search { width: 103px; } + .header-main .header-top-right > .header-search { + width: 103px; + } .header-search .form-group { position: absolute; left: 15px; - right: 15px; + right: 5px; } .header-search .form-group .form-control { border: none; @@ -240,14 +242,17 @@ body.content_only { margin: 0 } .header-main .logo { width: 250px; } } + @media (max-width: 1319px) { .header-main .logo { width: 200px; } .header-user { padding-left: 20px } .header-main .header-top { padding-bottom: 10px; } .site-content { margin-top: 189px; } } + @media (max-width: 991px) { - .header-main .header-top { margin-top: 0; padding: 15px 0 0 0 } + .header-search .form-group .form-control { font-size: 13px; } + .header-main .header-top { margin-top: 0; } .header-main .header-top.search-open { margin-top: 57px; } .header-main .header-lang { display: none; } .header-main .header-top-left .menu-action { display: block; float: left; font-size: 18px; opacity: 1; padding-right: 20px; position: static; pointer-events: auto; margin-top: 0; } @@ -459,9 +464,12 @@ body.content_only { margin: 0 } } @media (max-width: 1399px) { - .mainmenu { background: rgba(0, 0, 0, 0); bottom: 0; left: 0; margin: 0; pointer-events: none; position: fixed; width: 100%; top: 0; transition: all 0.3s ease 0s; z-index: 300; } + .header-main .header-top-left > div { top: -20px; } + .header-main #menu-mobile a { height: 30px; display: block; } + .mainmenu { background: none; bottom: 0; left: 0; margin: 0; pointer-events: none; position: fixed; width: 100%; top: 0; transition: all 0.3s ease 0s; -webkit-transition: all 0.3s ease 0s; z-index: 300; } + .mainmenu .overlay { display: none; z-index: 0; background: rgba(0, 0, 0, 0.8); position: fixed; top: 0; left: 0; right: 0; bottom: 0; } .mainmenu.open { background: rgba(0, 0, 0, 0.5); left: 0; pointer-events: auto; z-index: 100; } - .mainmenu .menu-content { background: #f5f2f2; height: 100%; left: -101%; margin: 0; position: absolute; transition: all 0.3s ease 0s; width: 50% } + .mainmenu .menu-content { position: relative; background: #fdf3f8; height: 100%; left: -101%; margin: 0; transition: all 0.3s ease 0s; -webkit-transition: all 0.3s ease 0s; width: 50% } .mainmenu.open .menu-content { left: 0 } .mainmenu .close-tab { color: #666; width: 100% } .mainmenu .close-tab img { border: 2px solid #000; border-radius: 50%; display: block; height: 47px; margin: 15px 0 35px 45px; width: 47px; } @@ -611,7 +619,7 @@ body.content_only { margin: 0 } .header-main.stack .header-cart .overlay-cart { top: 97px } @media (max-width: 991px) { - .site-content { margin-top: 72px } + .site-content { margin-top: 0; } .header-main.stack .header-top { padding: 20px 0 0 0 } .header-main.stack .header-top-right, .header-main.stack .header-top-left { padding: 0 15px; } .header-main .logo-fig::before, .header-main .logo-fig::after { border-width: 3px; } @@ -725,8 +733,10 @@ body.content_only { margin: 0 } .cart-layout .block-layout .products dt::after { content: ''; display: block; - border-bottom: 1px solid #dcdcdc; + border-bottom: 1px solid #e5e5e5; padding-top: 17px; + margin-left: 20px; + margin-right: 20px; } .cart-layout .block-layout .products dt a.cart-images { display: inline-block; @@ -1098,7 +1108,11 @@ body.content_only { margin: 0 } display: block; } - +@media (max-width: 767px) { + .footer-middle .customize-block { width: 100%; } + .footer-middle .customize-block .title-level2 { padding-top: 0; } + .footer-middle .customize-block { padding-bottom: 25px; } +} /************************************* == FOOTER BOTTOM == *********************************/ .footer-bottom { color: #c7c7c7; @@ -1137,6 +1151,10 @@ body.content_only { margin: 0 } padding-top: 7px; } +@media (max-width: 767px) { + .footer-bottom .social-networks { padding-top: 20px; } +} + /************************************* == FOOTER MAIN == ***********************************/ @@ -1212,10 +1230,10 @@ body.content_only { margin: 0 } #gototop.active { right: 25px } #gototop:hover { opacity: 1 } - .footer-bottom .ctn .ctn { width: auto;} + .footer-bottom .ctn .ctn { width: auto; } @media (max-width: 1319px) { - .footer-main .footer-bottom span { display: none; } + .footer-main .social .newsletter, .footer-main .social .footer-block { padding: 0 15px 45px 15px; } .footer-main .reassurance li { padding: 50px 15px } @@ -1229,9 +1247,25 @@ body.content_only { margin: 0 } .footer-main .row-flex { display: block } .footer-main .social { margin-bottom: 0; } .footer-main .social .newsletter, .footer-main .social .footer-block { margin-bottom: 75px; padding: 0 20% 45px 20% } - .footer-main .reassurance { padding: 15px 0 } .footer-main .reassurance li { font-size: 18px; padding: 15px } + + .footer-main .footer-links { padding: 0; text-align: left; } + .footer-main .block-links { padding: 0 } + .footer-main .block-links .title { border-top: 1px solid #4f3528; cursor: pointer; font-size: 11px; margin-bottom: 0; padding: 19px 15px 17px 15px } + .footer-main .block-links:first-child .title { border: 0 } + .footer-main .block-links .title:before { color: #fff; content: "\e902"; font-family: "icomoon"; font-size: 8px; position: absolute; right: 15px; top: 22px; transition: all 0.3s ease 0s; -moz-transition: all 0.3s ease 0s; -webkit-transition: all 0.3s ease 0s; } + .footer-main .block-links .title.open:before { transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); } + .footer-main .block-links ul { display: none; padding-bottom: 18px; } + .footer-main .block-links li { margin: 0; padding: 5px 15px; } + + .footer-main .block-links.alt { background: #fff; } + .footer-main .block-links.alt .title { border: 0; float: left; } + .footer-main .block-links.alt .title:before { content: ""; display: none; } + .footer-main .block-links.alt ul { display: block; float: left; } + .footer-main .block-links.alt li { float: left; padding: 0 } + .footer-main .block-links.alt a{ margin: 16px 7px; } + .footer-bottom { padding-bottom: 35px; } } @media (max-width: 480px) { .footer-main .social .newsletter, .footer-main .social .footer-block { margin-bottom: 45px; padding: 0 0 45px 0 } @@ -1241,22 +1275,6 @@ body.content_only { margin: 0 } .footer-main .social .newsletter .btn, .footer-main .social .footer-block .btn { position: static; transform: translateX(0); moz-transform: translateX(0); -webkit-transform: translateX(0) } .footer-main .reassurance li { font-size: 14px } - - .footer-main .footer-links { background: #fff; padding: 0; text-align: left; } - .footer-main .block-links { background: #f5f2f2; padding: 0 } - .footer-main .block-links .title { border-top: 1px solid #cfcfcf; cursor: pointer; font-size: 11px; margin-bottom: 0; padding: 19px 15px 17px 15px } - .footer-main .block-links:first-child .title { border: 0 } - .footer-main .block-links .title:before { color: #333; content: "\e905"; font-family: "icomoon"; font-size: 8px; position: absolute; right: 15px; top: 22px; transition: all 0.3s ease 0s; -moz-transition: all 0.3s ease 0s; -webkit-transition: all 0.3s ease 0s; } - .footer-main .block-links .title.open:before { transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); } - .footer-main .block-links ul { display: none } - .footer-main .block-links li { margin: 0; padding: 5px 15px; } - - .footer-main .block-links.alt { background: #fff; } - .footer-main .block-links.alt .title { border: 0; float: left; } - .footer-main .block-links.alt .title:before { content: ""; display: none; } - .footer-main .block-links.alt ul { display: block; float: left; } - .footer-main .block-links.alt li { float: left; padding: 0 } - .footer-main .block-links.alt a{ margin: 16px 7px; } } @@ -1267,14 +1285,11 @@ body.content_only { margin: 0 } /************************************** == ADVSLIDER == ********************************/ .homeslider { overflow: hidden; + position: relative; } - .homeslider .homeslider-ctn { - position: relative; + .homeslider .slider-img { + background-size: cover; } - .homeslider .homeslider-img { - position: relative; - z-index: 1; - } .homeslider .homeslider-description { left: 490px; top: 50%; @@ -1475,8 +1490,15 @@ body.content_only { margin: 0 } @media (max-width: 1299px) { .subcategories-home .customize-block .title { font-size: 24px; line-height: 24px; } .subcategories-home .customize-block { height: 193px; } - .subcategories-home .customize-block .content { line-height: 17px; } + .subcategories-home .customize-block .content { line-height: 17px; font-size: 14px; } } +@media (max-width: 990px) { + .subcategories-home .customize-block .content { line-height: 13px; font-size: 12px; padding: 0; } + .subcategories-home .customize-block { height: 150px; } + .subcategories-home .customize-block .title { font-size: 21px; line-height: 20px; } +} + + /********************* guidebook ************/ .guidebook { margin-top: 9px; @@ -1577,7 +1599,7 @@ body.content_only { margin: 0 } .reassuranceconstructor:before { left: -20px; right: -20px; background-position: left 0 bottom -27%; } } @media (max-width: 990px) { - .reassuranceconstructor { margin-top: 90px; } + .reassuranceconstructor { margin-top: 90px; padding-bottom: 25px; } .reassuranceconstructor .ctn { width: 100%; } } @@ -1685,189 +1707,12 @@ body.content_only { margin: 0 } .aboutus-pictures .img { width: 187px; } } @media (max-width: 767px) { + .aboutus .flex-direction-nav a { display: none; } .aboutus-pictures .img { width: 25%; } .aboutus-pictures .img:nth-child(even) { top: 35px; } } -/********************* instagram *********************/ -.homereviews { - background-color: #fdf3f8; -} - .homereviews-block { - position: relative; - padding-bottom: 45px; - padding-left: 45px; - } - - .homereviews .customize-block { - width: 50%; - padding-top: 130px; - padding-right: 130px; - display: inline-block; - background-image: url('../img/ballon.png'); - background-attachment: fixed; - background-repeat: no-repeat; - background-position: 40px 10px; - padding-bottom: 55px; - } - .homereviews .customize-block .title-level2 { - line-height: 43px; - padding-bottom: 40px; - } - .homereviews .customize-block .content { - font-size: 16px; - line-height: 22px; - } - .homereviews .customize-block .content p { - margin-bottom: 30px; - } - .homereviews .intro .img { - padding-top: 50px; - width: 25%; - } - .homereviews .intro .img:nth-last-child(2) { - padding-right: 15px; - } - .homereviews .intro .img:last-child { - padding-left: 15px; - position: relative; - top: 50px; - } - - - -.homereviews-block { - background-color: #fff; - float: right; -} - .homereviews-slides { - overflow: hidden; - } - .homereviews-slides > div { - background-color: #fff; - } - .homereviews .homereviews-txt { - padding-right: 45px; - } - .homereviews .homereviews-title { - font-family: 'staat'; - font-size: 30px; - line-height: 35px; - color: #bd0132; - margin-bottom: 30px; - display: block; - max-width: 271px; - } - .homereviews .homereviews-content { - padding-bottom: 25px; - font-size: 16px; - line-height: 22px; - height: 360px; - font-size: 15px; - line-height: 21px; - } - .homereviews-number { - font-style: italic; - font-family: 'staat'; - font-size: 205px; - line-height: 163px; - color: #f6f5f4; - text-align: right; - display: block; - padding-right: 15px; - } - .homereviews-block .ctn-icon-heart { - font-size: 40px; - position: relative; - } - .homereviews-block .icon-heart-double { - color: #f5dee9; - font-size: 30px; - top: -60px; - position: absolute; - font-size: 35px; - } - -.homereviews-ctn .bg { - position: relative; - background-image: url(../img/reviews.jpg); - overflow: hidden; - background-repeat: no-repeat; - position: relative; -} - .homereviews-ctn .bg:after { - content: ''; - position: absolute; - top: 0; - bottom: 0; - right: 0; - left: 0; - } - .homereviews-ctn .pagination { - font-size: 16px; - color: #4f3528; - font-weight: bold; - } - .homereviews .owl-nav i { - font-size: 10px; - transition: 0.5s all; - -webkit-transition: 0.5s all; - padding: 0; - } - .homereviews .owl-nav { - position: absolute; - right: 45px; - bottom: 45px; - opacity: 1; - left: auto; - top: auto; - } - .homereviews .owl-nav .owl-next, - .homereviews .owl-nav .owl-prev { - position: static; - opacity: 1; - width: 55px; - display: inline-block; - cursor: pointer; - } - .homereviews .owl-nav .owl-next.disabled, - .homereviews .owl-nav .owl-prev.disabled { - opacity: 0.2; - cursor: default; - left: auto; - } - .homereviews .owl-nav .owl-prev i { - position: relative; - right: 0; - vertical-align: middle; - } - .homereviews .owl-nav .owl-prev.disabled i { right: 0!important; position: relative; } - .homereviews .owl-nav .owl-prev i:hover { - right: 5px; - } - .homereviews .owl-nav .owl-next i:hover { - padding-left: 5px; - } - .homereviews .owl-nav .owl-next i.disabled:hover { - padding-left: 0; - cursor: default; - } - - -@media (max-width: 1350px) { - .homereviews .customize-block .title-level2 { font-size: 37px; line-height: 42px; padding-bottom: 13px; } - .homereviews-ctn .bg { background-size: auto 100%; } - .homereviews .homereviews-content { height: auto; } -} -@media (max-width: 990px) { - .homereviews .customize-block { padding-top: 70px; padding-right: 15px; } - .homereviews .intro .img { padding-top: 77px; } - .homereviews-ctn .bg { padding-top: 400px; } - .homereviews-ctn .title-pivot { top: 163px; bottom: auto; } - .homereviews-number { height: 90px; } - .homereviews-block .icon-heart-double { top: -30px; } -} /************************ social *********************/ .social-networks { margin-bottom: 0; @@ -2017,8 +1862,9 @@ body.content_only { margin: 0 } } @media (max-width: 990px) { - .best-chocolate img { width: 60px; } + .best-chocolate .title img { width: 60px; } .best-chocolate li { display: none; } + } /********************* news *********************/ @@ -2120,6 +1966,14 @@ body.content_only { margin: 0 } border-color: #fff; color: #834b39; } + +@media(max-width: 990px) { + .news-block:nth-child(even) .content { padding-left: 25px; } +} +@media (max-width: 767px) { + .news-block .title { font-size: 35px; } +} + /********************* instagram *********************/ .instagram { } @@ -2244,7 +2098,6 @@ body.content_only { margin: 0 } .flex-direction-nav li.flex-nav-next { right: 20px; top: -30px; } .owl-nav { display: none; } - .instagram { padding: 35px 0 40px 0 } .instagram .slides a:before { background: #aaa; bottom: 0; content: ""; left: 0; opacity: 0.8; osition: absolute; top: 0; right: 0; z-index: 2; transition: all 1s ease 0s; -webkit-transition: all 1s ease 0s; -moz-transition: all 1s ease 0s } .instagram .slides .active a:before { opacity: 0; } .instagram h3 { font-size: 18px; margin-bottom: 5px } @@ -2280,10 +2133,254 @@ body.content_only { margin: 0 } .flex-direction-nav li a i { font-size: 30px } } +/*************************************************************************************************************/ +/*************************************** ++ PAGE SITE REVIEWS ++ **************************/ +/*************************************************************************************************************/ + + .sitereviews { + + } + .sitereviews-block { + position: relative; + padding-bottom: 45px; + padding-left: 45px; + } + + .sitereviews .customize-block { + width: 50%; + padding-top: 130px; + padding-right: 130px; + display: inline-block; + background-image: url('../img/ballon.png'); + background-attachment: fixed; + background-repeat: no-repeat; + background-position: 40px 10px; + padding-bottom: 55px; + } + .sitereviews .customize-block .title-level2 { + line-height: 43px; + padding-bottom: 40px; + } + .sitereviews .customize-block .content { + font-size: 16px; + line-height: 22px; + } + .sitereviews .customize-block .content p { + margin-bottom: 30px; + } + .sitereviews .intro .img { + padding-top: 50px; + width: 25%; + } + .sitereviews .intro .img:nth-last-child(2) { + padding-right: 15px; + } + .sitereviews .intro .img:last-child { + padding-left: 15px; + position: relative; + top: 50px; + } + + + +.sitereviews-block { + background-color: #fff; + float: right; +} + .sitereviews-slides { + overflow: hidden; + } + .sitereviews-slides > div { + background-color: #fff; + } + .sitereviews .sitereviews-txt { + padding-right: 45px; + } + .sitereviews .sitereviews-title { + font-family: 'staat'; + line-height: 35px; + color: #bd0132; + margin-bottom: 30px; + display: block; + } + .sitereviews .sitereviews-slider-ctn .sitereviews-title { font-size: 30px; max-width: 271px; } + .sitereviews .sitereviews-slider-ctn .sitereviews-content { + padding-bottom: 25px; + font-size: 16px; + line-height: 22px; + height: 360px; + font-size: 15px; + line-height: 21px; + } + .sitereviews-number { + font-style: italic; + font-family: 'staat'; + font-size: 205px; + line-height: 163px; + color: #f6f5f4; + text-align: right; + display: block; + padding-right: 15px; + } + .sitereviews-block .ctn-icon-heart { + font-size: 40px; + position: relative; + } + .sitereviews-block .icon-heart-double { + color: #f5dee9; + font-size: 30px; + top: -60px; + position: absolute; + font-size: 35px; + } + +.sitereviews-slider-ctn .bg { + position: relative; + background-image: url(../img/reviews.jpg); + overflow: hidden; + background-repeat: no-repeat; + position: relative; +} + .sitereviews-slider-ctn .bg:after { + content: ''; + position: absolute; + top: 0; + bottom: 0; + right: 0; + left: 0; + } + .sitereviews-slider-ctn .pagination { + font-size: 16px; + color: #4f3528; + font-weight: bold; + } + .sitereviews .owl-nav i { + font-size: 10px; + transition: 0.5s all; + -webkit-transition: 0.5s all; + padding: 0; + } + .sitereviews .owl-nav { + position: absolute; + right: 45px; + bottom: 45px; + opacity: 1; + left: auto; + top: auto; + } + .sitereviews .owl-nav .owl-next, + .sitereviews .owl-nav .owl-prev { + position: static; + opacity: 1; + width: 55px; + display: inline-block; + cursor: pointer; + } + .sitereviews .owl-nav .owl-next.disabled, + .sitereviews .owl-nav .owl-prev.disabled { + opacity: 0.2; + cursor: default; + left: auto; + } + .sitereviews .owl-nav .owl-prev i { + position: relative; + right: 0; + vertical-align: middle; + } + .sitereviews .owl-nav .owl-prev.disabled i { right: 0!important; position: relative; } + .sitereviews .owl-nav .owl-prev i:hover { + right: 5px; + } + .sitereviews .owl-nav .owl-next i:hover { + padding-left: 5px; + } + .sitereviews .owl-nav .owl-next i.disabled:hover { + padding-left: 0; + cursor: default; + } + + +.sitereviews .sitereviews-list-ctn .inner { + padding: 30px 27px; +} + .sitereviews .sitereviews-list-ctn .sitereviews-title { + font-size: 24px; + line-height: 29px; + } + .sitereviews .sitereviews-list-ctn .sitereviews-content { + line-height: 22px; + color: #908984; + } +/************* spécifications pages **************/ + +.index main .sitereviews { + background-color: #fdf3f8; +} + +.module-advsitereviews-default .page-heading.account { + padding-bottom: 170px; +} + .module-advsitereviews-default .title-arrow span { + padding: 0 30px; + max-width: none; + } + .module-advsitereviews-default .page-heading.account .ctn-btn { + display: block; + } +.module-advsitereviews-default .sitereviews { + position: relative; + top: -120px; +} + .module-advsitereviews-default .ctn-btn { + margin-top: 40px; + } + +.sitereviews-list-ctn { + display: flex; + flex-flow: column wrap; + max-height: 800px; +} + .sitereviews-list-ctn .sitereviews-list-block { + padding-top: 30px; + } + .sitereviews-signature { + color: #4f3528; + margin-top: 50px; + } + .sitereviews-signature .firstname, + .sitereviews-signature .date { + font-weight: bold; + } + .sitereviews-signature .place { + font-style: italic; + } + +@media (max-width: 1350px) { + .sitereviews .customize-block .title-level2 { font-size: 37px; line-height: 42px; padding-bottom: 13px; } + .sitereviews-slider-ctn .bg { background-size: auto 100%; } + .sitereviews .sitereviews-content { height: auto; } +} +@media (max-width: 990px) { + .module-advsitereviews-default .title-arrow span { max-width: 350px; } + .sitereviews-list-ctn { max-height: none; flex-flow: row wrap; } + .sitereviews .customize-block { padding-top: 70px; padding-right: 15px; } + .sitereviews .intro .img { padding-top: 77px; } + .sitereviews-slider-ctn .bg { padding-top: 400px; } + .sitereviews-slider-ctn .title-pivot { top: 163px; bottom: auto; } + .sitereviews-number { height: 90px; } + .sitereviews-block .icon-heart-double { top: -30px; } +} +@media (max-width: 550px) { + .sitereviews .intro .img:nth-last-child(2), .sitereviews .intro .img:last-child { display: none; } + .sitereviews .customize-block { width: 100%; } + .sitereviews .intro .img { width: 50%; } + .sitereviews .intro .img { padding-top: 0; } +} + /*************************************************************************************************************/ /*************************************** ++ PAGE CATEGORY ++ ******************************/ -/**************************************************************************************************************/ +/*************************************************************************************************************/ .category { } .category h1 { @@ -3385,7 +3482,9 @@ body.content_only { margin: 0 } .resume-cart { background-color: #f8f7f7; padding: 40px 30px; - min-height: 600px; + } + .shipping .resume-cart { + min-height: 0; } .resume-cart .title-drop { text-align: center; @@ -3411,6 +3510,7 @@ body.content_only { margin: 0 } .ctn-resume-cart { padding-left: 0; } } @media(max-width: 991px) { + .shipping .resume-cart { display: none; } .cart-content .product-row { margin-bottom: 30px; padding-top: 20px; padding-bottom: 20px; } .cart-content.table-div .table-row > .product-image { left: 15px; padding: 0; position: absolute; width: 20% } .cart-content.table-div .table-row > .product-image img { max-width: 100% } @@ -3696,7 +3796,7 @@ body.content_only { margin: 0 } padding-bottom: 50px; } .cart_navigation .btn:last-child { float: left; } - .cart_navigation .btn:first-child { float: right; } + .cart_navigation .btn:first-child { float: right; font-size: 16px; } @media (max-width: 1319px) { .cart_navigation { padding: 30px } @@ -3958,9 +4058,11 @@ body.content_only { margin: 0 } .shipping .address .address_update a:before { } - + .shipping .box:nth-child(2) .address-heading { + min-height: 79px; + } .shipping .addressesAreEquals { - margin-top: 36px; + margin-top: 54px; margin-bottom: 5px; } .order-box { @@ -4017,9 +4119,9 @@ body.content_only { margin: 0 } .shipping .addresses-list .box:first-child .box-content .inner { padding: 0 30px 0 0 } .shipping .addresses-list .box:last-child .box-content { margin: 0; padding: 30px 30px 30px 0 } .shipping .addresses-list .box:last-child .box-content .inner { padding: 0 0 0 30px } - - .shipping .order-carrier-list .box-content { padding: 0 30px } - .shipping .delivery-option .delivery-option-img { padding: 0 30px 0 15px; } + .shipping .delivery-option .delivery-option-radio { margin-right: 10px } + .shipping .order-carrier-list .box-content { padding: 0; } + .shipping .delivery-option .delivery-option-img { padding: 0 30px 0 15px } .shipping .cart_navigation { padding: 15px 30px } } @@ -4039,6 +4141,7 @@ body.content_only { margin: 0 } .shipping .delivery-option .delivery-option-radio { width: 12% } .shipping .delivery-option .delivery-option-img { display: none; } .shipping .delivery-option .delivery-option-desc { width: 70%; } + .shipping .delivery-option .delivery-option-price { } .shipping .gift-box .box-content { padding: 30px 15px; } } @@ -4049,18 +4152,16 @@ body.content_only { margin: 0 } .shipping .addressesAreEquals { margin-top: 0; } .shipping .address_invoice_form .address-heading { height: auto; margin-bottom: 10px; } - - .shipping .order-carrier-list { background: #f5f2f2; margin: 0 -15px 30px -15px } + .shipping .order-carrier-list { margin: 0 -15px 30px -15px } .shipping .delivery-option .delivery-option-name { margin-bottom: 5px; } .shipping .delivery-option .delivery-option-radio { width: 16% } .shipping .delivery-option .delivery-option-desc { width: 60%; } - .shipping .delivery-option .delivery-option-price { width: 24% } + .shipping .delivery-option .delivery-option-price { width: 24%; margin-left: 17%; margin-top: 5px; } .shipping .gift-box .box-content { padding: 30px 0 0 0; } .shipping .gift-box .custom-checkbox.inline label { max-width: 83% } - - .shipping .cart_navigation { padding: 0 } + .shipping .cart_navigation { padding-left: 0; padding-right: 0; } } @@ -4193,7 +4294,7 @@ body.content_only { margin: 0 } @media(max-width: 767px) { .order-payment .box { padding: 0 } .order-payment .box .title { text-align: center; } - .order-payment .resume-cart { margin-bottom: 60px; } + .order-payment .resume-cart { margin-bottom: 60px; display: none; } .order-payment .resume-cart .box-content, .order-payment .resume-cart .box-footer-resume { padding: 0 } .order-payment .resume-cart .product img { margin-right: 20px; max-width: 100px } .order-payment .resume-cart .product .product-name { margin-bottom: 10px; } @@ -4610,20 +4711,119 @@ body.content_only { margin: 0 } } /* Contact */ -#contact .contact-form-box { - background: #fff; +#contact .page-heading { + padding-bottom: 150px; } -#contact textarea { - height: 289px; +#contact .main { + position: relative; + top: -100px; } + #contact .contact-form-box { + background: #fff; + } + #contact .submit { margin-top: 0; } + +#contact { + +} + #contact main .inner { + padding: 50px 30px; + background-color: #fff; + } + + #contact main .title { + font-size: 22px; + line-height: 25px; + font-family: 'latolight'; + padding-bottom: 13px; + } + #contact .title strong { + text-transform: uppercase; + color: #bd0132; + font-family: 'staat'; + } + #contact .submit { + margin-right: 5px; + } + #contact .form-group .form-control-ctn { + max-width: 380px; + } + #contact .form-group .form-control-ctn.custom-select > span { + width: 99%; + } + #contact .form-msg { + margin-bottom: 10px; + } + #contact .form-msg .form-control-ctn { + max-width: none; + } + +#contact .bg { + background-image: url('../img/contact1.jpg'); + background-repeat: no-repeat; +} + #contact .bg .form-group { + margin-bottom: 11px; + } + #contact .bg > div { + padding-left: 0; + } + #contact .bg2 > div { + padding-right: 0; + } +#contact .title .icon { + font-size: 30px; + line-height: 30px; + margin-bottom: 15px; + color: #bd0132; +} + #contact .bg2 .title .icon { + font-size: 42px; + } + +#contact .bg2 { + background-image: url('../img/contact2.jpg'); + background-position: right top; + background-repeat: no-repeat; +} + #contact .bg2 header { + padding-bottom: 50px; + } + #contact .addresses .addresses-title { + text-transform: uppercase; + color: #4f3528; + padding-bottom: 10px; + } + #contact .addresses .ctn-address { + padding: 2px 1px; + background-image: url(../img/frame-btn.png); + background-size: 99% 99%; + background-repeat: no-repeat; + } + #contact .addresses ul { + padding: 25px 30px; + height: 171px; + } + #contact .bg2 footer > div { + max-width: 450px; + text-align: center; + margin: auto; + padding-top: 35px; + } + #contact .bg2 footer > div { + padding-bottom: 135px; + } + @media (max-width: 1349px) { #contact div.uploader span.filename { width: 250px } #contact div.uploader span.action { padding: 12px 15px 12px; width: 115px } } @media (max-width: 991px) { + #contact .bg2, #contact .bg { background: none; } + #contact .bg2 footer > div { padding-bottom: 0; } #contact div.uploader span.filename { width: 60% } #contact div.uploader span.action { margin-left: 5%; padding: 12px 10px 12px; width: 35% } #contact textarea { height: 200px; } @@ -4632,7 +4832,9 @@ body.content_only { margin: 0 } #contact div.uploader span.filename { width: 50% } #contact div.uploader span.action { margin-left: 5%; padding: 12px 0px 12px; width: 45% } } - +@media (max-width: 767px) { + #contact .addresses ul { height: auto; } +} /*************************************************************************************************************/ /********************************** ++ PLAN SITE ++ *************************************/ /**************************************************************************************************************/ diff --git a/www/themes/chocolatdemariage/css/k2000.css b/www/themes/chocolatdemariage/css/k2000.css index ae0f486c..4448053e 100644 --- a/www/themes/chocolatdemariage/css/k2000.css +++ b/www/themes/chocolatdemariage/css/k2000.css @@ -83,6 +83,9 @@ a { text-decoration: none; } .underline { text-decoration: underline; } .barre { text-decoration: line-through; } .price { font-family: 'staat'; } + + + sup { font-size: 80%; top: -3px; } a { color: inherit; } @@ -149,7 +152,21 @@ a { color: inherit; } .icon-big { font-size: 130% } .icon-right { padding-left: 10px; padding-right: 0 } - +.icon-404:before { + content: "\e926"; +} +.icon-bord-table:before { + content: "\e927"; +} +.icon-bord-table2:before { + content: "\e928"; +} +.icon-contact:before { + content: "\e929"; +} +.icon-envelop:before { + content: "\e92a"; +} .icon-aurore_chocolats:before { content: "\e90a"; } @@ -403,6 +420,13 @@ a { color: inherit; } @media (max-width: 1199px) { .title-drop:before, .title-drop:after { font-size: 18px; } } +@media (max-width: 990px) { + .title-drop { font-size: 22px; } +} +@media (max-width: 767px) { + .title-arrow { font-size: 20px; line-height: 22px; } + .title-arrow:before, .title-arrow:after { display: none; } +} /*************************************************************************************************************/ /*********************************** == ANIMATIONS CSS == **************************************/ /**************************************************************************************************************/ @@ -430,6 +454,7 @@ a { color: inherit; } -webkit-transition: all 0.3s ease 0s; -moz-transition: all 0.3s ease 0s } +.btn.btn-large { min-width: 230px; } .account-container .btn, .auth .btn, .btn.btn2 { background-color: transparent; @@ -445,6 +470,14 @@ a { color: inherit; } font-size: 14px; line-height: 16px; } +.btn.btn4 { + background-color: transparent; + border: 2px solid #fff; + color: #fff; + font-size: 14px; + line-height: 16px; +} +.btn.btn4:hover { background-color: #fff; color: #bd0132; } .account-container .btn:hover, .auth .btn:hover, .btn.btn2:hover { background-color: #bd0132; border-color: #bd0132; } button.btn { padding-top: 7px; padding-bottom: 7px; } .btn:hover { background-color: #9e062d; border-color: #9e062d; color: #fff; } @@ -493,11 +526,10 @@ input[disabled].btn { background: #fff; border-color: #fff; color: #363842; curs border-radius: 0; height: 36px; padding: 0 10px; - width: 100%; + width: 99%; border: 0; position: relative; color: #bd0132; - } .form-group .form-control::-webkit-input-placeholder { color: #908984; } .form-group .form-control::-moz-placeholder { color: #908984; } @@ -535,10 +567,17 @@ header.page-heading.category { background: none; padding: 0; } header.page-heading .short-desc { color: #fff; } - header.page-heading.category .short-desc { color: inherit; } + header.page-heading.category .short-desc { + color: inherit; + font-size: 14px; + } + header.page-heading.account .short-desc { + max-width: 850px; + margin: auto; + font-size: 16px + } header.page-heading .short-desc h2 { display: block; - font-size: 14px; } @media (max-width: 991px) { @@ -969,7 +1008,7 @@ body .fancybox-overlay { .lg-sub-html { font-family: 'dosis' } .lg-outer .lg-thumb-outer { background-color: #363842 } .lg-outer .lg-thumb-item { background: #fff; border-radius: 0; } -.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover { border-color: #008da9 } +.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover { border-color: #008da9; } .lg-outer .lg-thumb-item img { max-width: 100%; } /*************************************************************************************************************/ @@ -1274,8 +1313,8 @@ body .fancybox-overlay { display: block; } .custom-file .filename { - background: #f1f1f1; - border: 2px solid #cdced4; + background: #f8e7f0; + border: none; float: left; font-size: 14px; height: 48px; @@ -1286,10 +1325,13 @@ body .fancybox-overlay { white-space: nowrap; width: 65%; } + .custom-file .action { - background: #1c1d22; - border: 2px solid #1c1d22; - color: #fff; + background-color: transparent; + border: 2px solid #f3cfe1; + color: #f3b3d3; + font-size: 14px; + line-height: 16px; float: right; height: 48px; line-height: 46px; @@ -1298,6 +1340,12 @@ body .fancybox-overlay { width: 30%; text-transform: uppercase; } + .custom-file input.form-control { + position: absolute; + } + #contact .form-file .form-control-ctn { + background-image: none; + } @media(max-width: 480px) { .custom-checkbox.inline label { max-width: 75% } @@ -1553,7 +1601,6 @@ padding-left: 5px; padding-right: 5px; } list-style-type: none; } .blockToAppear { - list-style-type: none; margin-bottom: 15px; opacity: 0; diff --git a/www/themes/chocolatdemariage/fonts/icomoon.eot b/www/themes/chocolatdemariage/fonts/icomoon.eot index 0ceb7433..a22ccf9b 100644 Binary files a/www/themes/chocolatdemariage/fonts/icomoon.eot and b/www/themes/chocolatdemariage/fonts/icomoon.eot differ diff --git a/www/themes/chocolatdemariage/fonts/icomoon.svg b/www/themes/chocolatdemariage/fonts/icomoon.svg index a4dedccd..69967b77 100644 --- a/www/themes/chocolatdemariage/fonts/icomoon.svg +++ b/www/themes/chocolatdemariage/fonts/icomoon.svg @@ -45,4 +45,10 @@ + + + + + + \ No newline at end of file diff --git a/www/themes/chocolatdemariage/fonts/icomoon.ttf b/www/themes/chocolatdemariage/fonts/icomoon.ttf index be7b5fdb..f575ac46 100644 Binary files a/www/themes/chocolatdemariage/fonts/icomoon.ttf and b/www/themes/chocolatdemariage/fonts/icomoon.ttf differ diff --git a/www/themes/chocolatdemariage/fonts/icomoon.woff b/www/themes/chocolatdemariage/fonts/icomoon.woff index bc5215d8..51815958 100644 Binary files a/www/themes/chocolatdemariage/fonts/icomoon.woff and b/www/themes/chocolatdemariage/fonts/icomoon.woff differ diff --git a/www/themes/chocolatdemariage/fonts/icomoon.woff2 b/www/themes/chocolatdemariage/fonts/icomoon.woff2 index 7fbbc591..7cda3308 100644 Binary files a/www/themes/chocolatdemariage/fonts/icomoon.woff2 and b/www/themes/chocolatdemariage/fonts/icomoon.woff2 differ diff --git a/www/themes/chocolatdemariage/header.tpl b/www/themes/chocolatdemariage/header.tpl index 81577015..e9042f37 100644 --- a/www/themes/chocolatdemariage/header.tpl +++ b/www/themes/chocolatdemariage/header.tpl @@ -34,6 +34,11 @@ {/foreach} {/if} + {if $page_name == 'index'} + + + + {/if} {$HOOK_HEADER}
diff --git a/www/themes/chocolatdemariage/modules/advslider/advslider.tpl b/www/themes/chocolatdemariage/modules/advslider/advslider.tpl index c814437c..62039a03 100644 --- a/www/themes/chocolatdemariage/modules/advslider/advslider.tpl +++ b/www/themes/chocolatdemariage/modules/advslider/advslider.tpl @@ -5,13 +5,10 @@ {if $slide.active}
  • {if !empty($slide.url) && empty($slide.label)} - + {/if} - - - {$slide.title|escape:'htmlall':'UTF-8'} - + + {if !empty($slide.url) && empty($slide.label)} {/if} @@ -22,6 +19,13 @@