From ba9f5c7b726e97d61503897ac51866417c056751 Mon Sep 17 00:00:00 2001 From: reliberate Date: Fri, 25 Mar 2016 19:49:52 -0600 Subject: [PATCH] Fixed: Default Theme - Adjust top body margin when menu position is bottom. --- themes/default/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/default/template.php b/themes/default/template.php index 9fc30a0d00..7d92308098 100644 --- a/themes/default/template.php +++ b/themes/default/template.php @@ -1703,7 +1703,7 @@ show_menu($menu_array, $menu_style, $menu_position); echo $open_container; switch ($menu_position) { - case 'bottom': $body_top_style = "style='padding-top: 30px;'"; break; + case 'bottom': $body_top_style = "style='margin-top: 30px;'"; break; case 'top': $body_top_style = "style='margin-top: 65px;'"; break; } }