diff --git a/app/Resources/public/css/base.css b/app/Resources/public/css/base.css index b63362a628..132da8c9b6 100644 --- a/app/Resources/public/css/base.css +++ b/app/Resources/public/css/base.css @@ -5899,6 +5899,9 @@ footer{ border: 1px solid #CCC !important; border-top: none !important; } +.page-blank{ + padding: 20px 30px; +} /* CSS NEW TOP ******************************************************************************/ /* CSS Responsive */ @media (min-width: 1025px) and (max-width: 1200px) { diff --git a/main/lp/lp_final_item.php b/main/lp/lp_final_item.php index e0316194fb..9ad716645b 100644 --- a/main/lp/lp_final_item.php +++ b/main/lp/lp_final_item.php @@ -118,7 +118,7 @@ if ($accessGranted == false) { // Instance a new template : No page tittle, No header, No footer $tpl = new Template(null, false, false); $tpl->assign('content', $finalItemTemplate); -$tpl->display_one_col_template(); +$tpl->display_blank_template(); // A few functions used only here... diff --git a/main/template/default/layout/blank.tpl b/main/template/default/layout/blank.tpl index 176c8a0640..7fa686a13c 100755 --- a/main/template/default/layout/blank.tpl +++ b/main/template/default/layout/blank.tpl @@ -1,3 +1,16 @@ -{% block content %} -{{ content }} -{% endblock %} + + + + + + +{% include template ~ "/layout/head.tpl" %} + + +
+ {% block content %} + {{ content }} + {% endblock %} +
+ + \ No newline at end of file