From bda38025a212f22bb0dd82bb3508eeb56c2046f3 Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Thu, 14 Dec 2017 11:57:06 -0500 Subject: [PATCH] Removed(commented) the header Reservation widget at client request --- css/app.css | 11 +++++++---- index.php | 8 ++++---- scss/_main.scss | 11 +++++++---- 3 files changed, 18 insertions(+), 12 deletions(-) diff --git a/css/app.css b/css/app.css index d517399..f24b8b2 100644 --- a/css/app.css +++ b/css/app.css @@ -6943,7 +6943,9 @@ ul#sec-nav { #reservation { background: rgba(105, 4, 51, 0.9); position: relative; - top: -57px; } + /* top: -57px; keeping this commented in case we ever want to return the reservation widget*/ + top: 0; + height: 20px; } @media (max-width: 1024px) { #reservation { top: 0; @@ -7031,7 +7033,8 @@ ul#sec-nav { img.orb-shadow { position: relative; - top: -57px; + /* top: -57px; keeping this commented in case we ever want to return the reservation widget*/ + top: 0; text-align: center; } @media (max-width: 1024px) { img.orb-shadow { @@ -7071,7 +7074,7 @@ main p a { font-family: "Times New Roman"*/ font-weight: bold; } main.page-front { - margin-top: -25px; } + /* margin-top: -25px; keeping this commented in case we ever want to return the reservation widget*/ } @media (max-width: 1024px) { main.page-front { margin: 0 auto; } } @@ -7180,7 +7183,7 @@ main.page-front { color: #ffc742; font-size: 14px; } main.page-inside #content-wrapper { - top: -57px; + /* top: -57px; keeping this commented in case we ever want to return the reservation widget*/ position: relative; } @media (max-width: 1024px) { main.page-inside #content-wrapper { diff --git a/index.php b/index.php index 31f2dd7..a2bee7f 100644 --- a/index.php +++ b/index.php @@ -84,8 +84,8 @@
-
- +
diff --git a/scss/_main.scss b/scss/_main.scss index 98dbe66..2694505 100644 --- a/scss/_main.scss +++ b/scss/_main.scss @@ -1,7 +1,9 @@ #reservation { background: rgba($maroon, 0.9); position: relative; - top: -57px; +/* top: -57px; keeping this commented in case we ever want to return the reservation widget*/ + top: 0; + height: 20px; @media (max-width: 1024px) { top: 0; margin-bottom: 10px; @@ -112,7 +114,8 @@ } img.orb-shadow { position: relative; - top: -57px; +/* top: -57px; keeping this commented in case we ever want to return the reservation widget*/ + top: 0; text-align: center; @media (max-width: 1024px) { top: -10px; @@ -156,7 +159,7 @@ main { font-weight: bold; } &.page-front { - margin-top: -25px; +/* margin-top: -25px; keeping this commented in case we ever want to return the reservation widget*/ @media (max-width: 1024px) { margin: 0 auto; } @@ -298,7 +301,7 @@ main { } &.page-inside { #content-wrapper { - top: -57px; + /* top: -57px; keeping this commented in case we ever want to return the reservation widget*/ position: relative; @media (max-width: 1024px) { top: -10px; -- 2.17.1