Fix content obscured by navbar sometimes

This commit is contained in:
Skylar Ittner 2017-05-28 23:29:56 -06:00
parent 937f44eb11
commit 4fbaeb475e
2 changed files with 12 additions and 1 deletions

View File

@ -121,7 +121,7 @@ if (!is_empty($_GET['page'])) {
<?php
if (MENU_BAR_STYLE == "fixed") {
?>
<div style="height: 75px;"></div>
<div id="push-down-box"></div>
<?php
}
?>

View File

@ -14,6 +14,17 @@
text-align: center;
}
#push-down-box {
height: 75px;
}
/* Make sure all the content is visible when the navbar wraps to two lines */
@media (min-width: 768px) and (max-width: 879px) {
#push-down-box {
height: 140px;
}
}
/*
==============================
THEMING