diff --git a/sb-admin-v2.php b/sb-admin-v2.php
index d34913a5..9b5e4d13 100644
--- a/sb-admin-v2.php
+++ b/sb-admin-v2.php
@@ -60,6 +60,7 @@
- SB Admin 2 is an updated version of the original SB Admin free Bootstrap admin template.
- We recommend customizing the admin template beyond the default Bootstrap theme.
+ - If you want to have the menu bar display as static, simply change from
navbar-fixed-top
to navbar-static-top
and remove the padding-top: 50px
and padding-top: 100px
from both of the body
elemends in the sb-admin.css
stylesheet.
diff --git a/templates/sb-admin-v2/css/sb-admin.css b/templates/sb-admin-v2/css/sb-admin.css
index f4b1131a..d2db2d44 100644
--- a/templates/sb-admin-v2/css/sb-admin.css
+++ b/templates/sb-admin-v2/css/sb-admin.css
@@ -4,7 +4,13 @@
body {
background-color: #f8f8f8;
- padding-top: 50px;
+ padding-top: 100px;
+}
+
+@media(min-width:768px) {
+ body {
+ padding-top: 50px;
+ }
}
/* Wrappers */