Fix content obscured by navbar sometimes

master 1.0beta
Skylar Ittner 7 years ago
parent 937f44eb11
commit 4fbaeb475e

@ -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
}
?>

@ -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

Loading…
Cancel
Save