9689c08a by Jeff Balicki

fixed menu

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent f67f9647
...@@ -14313,7 +14313,8 @@ body { ...@@ -14313,7 +14313,8 @@ body {
14313 position: relative; 14313 position: relative;
14314 display: inline-block; 14314 display: inline-block;
14315 vertical-align: top; 14315 vertical-align: top;
14316 width: calc(100% - 280px); 14316 width: 100%;
14317 padding-left: 280px;
14317 padding-top: 0px; 14318 padding-top: 0px;
14318 } 14319 }
14319 @media only screen and (max-width: 1260px) { 14320 @media only screen and (max-width: 1260px) {
...@@ -14323,6 +14324,7 @@ body { ...@@ -14323,6 +14324,7 @@ body {
14323 #page-wrapper { 14324 #page-wrapper {
14324 width: 100%; 14325 width: 100%;
14325 min-height: 90vh; 14326 min-height: 90vh;
14327 padding-left: 0px;
14326 } 14328 }
14327 } 14329 }
14328 #error-404-wrapper #content, 14330 #error-404-wrapper #content,
...@@ -14331,6 +14333,16 @@ body { ...@@ -14331,6 +14333,16 @@ body {
14331 #page-wrapper #content { 14333 #page-wrapper #content {
14332 position: relative; 14334 position: relative;
14333 width: 100%; 14335 width: 100%;
14336 padding-left: 0px;
14337 min-height: 80vh;
14338 }
14339 @media only screen and (max-width: 1260px) {
14340 #error-404-wrapper #content,
14341 #content #content,
14342 #full-width-page-wrapper #content,
14343 #page-wrapper #content {
14344 padding-left: 15px;
14345 }
14334 } 14346 }
14335 14347
14336 .wrapper .container { 14348 .wrapper .container {
...@@ -14487,7 +14499,7 @@ h1 + p, .h1 + p { ...@@ -14487,7 +14499,7 @@ h1 + p, .h1 + p {
14487 } 14499 }
14488 14500
14489 #wrapper-navbar { 14501 #wrapper-navbar {
14490 position: relative; 14502 position: fixed;
14491 z-index: 999; 14503 z-index: 999;
14492 display: inline-block; 14504 display: inline-block;
14493 width: 275px; 14505 width: 275px;
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
...@@ -25,15 +25,23 @@ html, body { ...@@ -25,15 +25,23 @@ html, body {
25 position: relative; 25 position: relative;
26 display: inline-block; 26 display: inline-block;
27 vertical-align: top; 27 vertical-align: top;
28 width: calc(100% - 280px); 28 //width: calc(100% - 280px);
29 width: 100%;
30 padding-left:280px;
29 padding-top: 0px; 31 padding-top: 0px;
30 @media only screen and (max-width: 1260px) { 32 @media only screen and (max-width: 1260px) {
31 width: 100%; 33 width: 100%;
32 min-height: 90vh; 34 min-height: 90vh;
35 padding-left:0px;
33 } 36 }
34 #content { 37 #content {
35 position: relative; 38 position: relative;
36 width: 100%; 39 width: 100%;
40 padding-left:0px;
41 min-height: 80vh;
42 @media only screen and (max-width: 1260px) {
43 padding-left:15px;
44 }
37 } 45 }
38 } 46 }
39 47
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
3 } 3 }
4 4
5 #wrapper-navbar{ 5 #wrapper-navbar{
6 position: relative; 6 position: fixed;
7 z-index: 999; 7 z-index: 999;
8 display: inline-block; 8 display: inline-block;
9 width: 275px; 9 width: 275px;
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
5 Author: the Understrap Contributors 5 Author: the Understrap Contributors
6 Author URI: https://github.com/understrap/understrap-child/graphs/contributors 6 Author URI: https://github.com/understrap/understrap-child/graphs/contributors
7 Template: understrap 7 Template: understrap
8 Version: 1.2.0015 8 Version: 1.2.0016
9 License: GNU General Public License v2 or later 9 License: GNU General Public License v2 or later
10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html
11 Text Domain: understrap-child 11 Text Domain: understrap-child
......