From 37fe15026a0d1bffe4ce647ac8523e44a1af459c Mon Sep 17 00:00:00 2001 From: ThemeGrill Date: Tue, 21 Apr 2020 12:27:34 +0545 Subject: [PATCH 01/10] Tweak - Remove right vertical line beside currency in top header bar #64 --- sass/theme/header/_top-header.scss | 4 +++- style.css | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/sass/theme/header/_top-header.scss b/sass/theme/header/_top-header.scss index da3a2d7..cd06510 100644 --- a/sass/theme/header/_top-header.scss +++ b/sass/theme/header/_top-header.scss @@ -65,8 +65,10 @@ font-size: 12px; padding: 0 10px; font-weight: 600; - border-right: 1px solid #c0bfbf; @include transition(all 0.5s ease); + &:first-of-type { + border-right: 1px solid #c0bfbf; + } &:hover { background: #00a9e0; color: #ffffff; diff --git a/style.css b/style.css index 2b510a3..5af2a98 100644 --- a/style.css +++ b/style.css @@ -1423,10 +1423,13 @@ body { font-size: 12px; padding: 0 10px; font-weight: 600; - border-right: 1px solid #c0bfbf; transition: all 0.5s ease; } +.right-header-block a:first-of-type { + border-right: 1px solid #c0bfbf; +} + .right-header-block a:hover { background: #00a9e0; color: #ffffff; From d7b3e5efd7b701e083b2714085696c27c8e8696b Mon Sep 17 00:00:00 2001 From: ThemeGrill Date: Tue, 21 Apr 2020 12:28:57 +0545 Subject: [PATCH 02/10] Add changelog fixes #64 --- readme.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/readme.txt b/readme.txt index aa6df54..34b0fcc 100644 --- a/readme.txt +++ b/readme.txt @@ -94,6 +94,9 @@ If you want the theme to be translated into your language, feel free to contribu /**********************************************************/ == Changelog == += Version 1.4.8 - TBD = +* Tweak = Remove right vertical line beside currency in top header bar. + = Version 1.4.7 - 2020-04-18 = * Enhancement - Removed angle down fav icon from login link. * Fix - Customizer not loading due to header top bar activate callback. From 29b2f9c6245f2475fd35264fc2df0e8af3033632 Mon Sep 17 00:00:00 2001 From: ThemeGrill Date: Tue, 21 Apr 2020 15:05:38 +0545 Subject: [PATCH 03/10] Enhancement - Restructure navigation menu on mobile view #65 --- css/responsive.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/css/responsive.css b/css/responsive.css index 7711192..e55667c 100644 --- a/css/responsive.css +++ b/css/responsive.css @@ -642,6 +642,14 @@ vertical-align: top; } + .category-menu { + width: 100%; + } + + #site-navigation { + float: left; + } + .error-404.not-found .search-field { width: 70%; } From 30238c06e2c698099c3d32b3b22035893961b051 Mon Sep 17 00:00:00 2001 From: ThemeGrill Date: Tue, 21 Apr 2020 15:06:42 +0545 Subject: [PATCH 04/10] Add changelog fixes #65 --- readme.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index 34b0fcc..564d17a 100644 --- a/readme.txt +++ b/readme.txt @@ -95,7 +95,8 @@ If you want the theme to be translated into your language, feel free to contribu == Changelog == = Version 1.4.8 - TBD = -* Tweak = Remove right vertical line beside currency in top header bar. +* Tweak - Remove right vertical line beside currency in top header bar. +* Enhancement - Restructure navigation menu on mobile view. = Version 1.4.7 - 2020-04-18 = * Enhancement - Removed angle down fav icon from login link. From aacc971236eed1a63477198123408bb384410451 Mon Sep 17 00:00:00 2001 From: ThemeGrill Date: Wed, 22 Apr 2020 11:17:16 +0545 Subject: [PATCH 05/10] Remove right vertical line while logged in as well in top header bar --- sass/theme/header/_top-header.scss | 7 ++++--- style.css | 8 ++++---- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/sass/theme/header/_top-header.scss b/sass/theme/header/_top-header.scss index cd06510..b16f930 100644 --- a/sass/theme/header/_top-header.scss +++ b/sass/theme/header/_top-header.scss @@ -66,9 +66,6 @@ padding: 0 10px; font-weight: 600; @include transition(all 0.5s ease); - &:first-of-type { - border-right: 1px solid #c0bfbf; - } &:hover { background: #00a9e0; color: #ffffff; @@ -80,6 +77,10 @@ } +.login-register-wrap { + border-right: 1px solid #c0bfbf; +} + #lang_sel_click a.lang_sel_sel { background: rgba(0, 0, 0, 0) none repeat scroll 0 0; border: medium none; diff --git a/style.css b/style.css index 5af2a98..4eb058a 100644 --- a/style.css +++ b/style.css @@ -1426,10 +1426,6 @@ body { transition: all 0.5s ease; } -.right-header-block a:first-of-type { - border-right: 1px solid #c0bfbf; -} - .right-header-block a:hover { background: #00a9e0; color: #ffffff; @@ -1439,6 +1435,10 @@ body { margin-left: 3px; } +.login-register-wrap { + border-right: 1px solid #c0bfbf; +} + #lang_sel_click a.lang_sel_sel { background: rgba(0, 0, 0, 0) none repeat scroll 0 0; border: medium none; From 3c0d427ef5883a6b7a66d0701ee7843f7c5f8774 Mon Sep 17 00:00:00 2001 From: ThemeGrill Date: Fri, 24 Apr 2020 13:11:36 +0545 Subject: [PATCH 06/10] Enhancement - Header top bar responsive design #71 --- css/responsive.css | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/css/responsive.css b/css/responsive.css index e55667c..52525db 100644 --- a/css/responsive.css +++ b/css/responsive.css @@ -189,6 +189,32 @@ } } +@media (min-width: 769px) and (max-width: 817px) { + + .left-top-header { + float: none; + } + + .left-header-block { + border-right: medium none; + color: #6d6c6c; + display: block; + float: none; + margin: 10px auto; + padding: 0; + text-align: center; + line-height: 26px; + font-size: 12px; + } + + .right-top-header { + clear: both; + display: table; + float: none; + margin: 0 auto; + } +} + @media (max-width: 768px) { #masthead .widget_shopping_cart { display: none; @@ -436,7 +462,7 @@ .right-header-block a, .right-top-header .top-header-menu-wrapper ul li a { - font-size: 10px; + font-size: 12px; } .slider-caption-wrapper .slider-btn i { @@ -592,7 +618,7 @@ .right-header-block a, .right-top-header .top-header-menu-wrapper ul li a { - font-size: 13px; + font-size: 12px; } .logo-wrapper { From d78af60cde8969446bdee0074e5fea16476ca31f Mon Sep 17 00:00:00 2001 From: ThemeGrill Date: Fri, 24 Apr 2020 13:13:49 +0545 Subject: [PATCH 07/10] Add changelog fixes #71 --- readme.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.txt b/readme.txt index 564d17a..f86873a 100644 --- a/readme.txt +++ b/readme.txt @@ -97,6 +97,7 @@ If you want the theme to be translated into your language, feel free to contribu = Version 1.4.8 - TBD = * Tweak - Remove right vertical line beside currency in top header bar. * Enhancement - Restructure navigation menu on mobile view. +* Enhancement - Header top bar responsive design. = Version 1.4.7 - 2020-04-18 = * Enhancement - Removed angle down fav icon from login link. From 44979168706e730be67a5614e3349d20aab0d23d Mon Sep 17 00:00:00 2001 From: ThemeGrill Date: Fri, 24 Apr 2020 13:29:06 +0545 Subject: [PATCH 08/10] Remove header top bar unwanted CSS declaration --- css/responsive.css | 28 +++++----------------------- 1 file changed, 5 insertions(+), 23 deletions(-) diff --git a/css/responsive.css b/css/responsive.css index 52525db..c2b9c9e 100644 --- a/css/responsive.css +++ b/css/responsive.css @@ -189,7 +189,11 @@ } } -@media (min-width: 769px) and (max-width: 817px) { +@media (max-width: 817px) { + + #header-ticker { + line-height: 26px; + } .left-top-header { float: none; @@ -203,7 +207,6 @@ margin: 10px auto; padding: 0; text-align: center; - line-height: 26px; font-size: 12px; } @@ -220,10 +223,6 @@ display: none; } - #header-ticker { - line-height: 26px; - } - #site-navigation { float: right; margin-right: 15px; @@ -342,23 +341,6 @@ right: 0; } - .left-header-block { - border-right: medium none; - color: #6d6c6c; - display: block; - float: none; - margin: 10px auto; - padding: 0; - text-align: center; - } - - .right-top-header { - clear: both; - display: table; - float: none; - margin: 0 auto; - } - .tg-container { width: 96%; padding: 0 2%; From 16f4364cd308ac36a46ce4436c69083606a0d29f Mon Sep 17 00:00:00 2001 From: ThemeGrill Date: Fri, 24 Apr 2020 14:03:39 +0545 Subject: [PATCH 09/10] Fix - Navigation menu in mobile landscape orientation and responsive design #72 --- css/responsive.css | 76 ++++++++++++++++++++++++++++------------------ 1 file changed, 46 insertions(+), 30 deletions(-) diff --git a/css/responsive.css b/css/responsive.css index c2b9c9e..bc3fe19 100644 --- a/css/responsive.css +++ b/css/responsive.css @@ -4,6 +4,19 @@ } @media (max-width: 1200px) { + #site-navigation { + float: right; + margin-right: 20px; + } + + #site-navigation ul li { + margin-left: 17px; + } + + #site-navigation ul li a { + font-size: 13px; + } + .tg-container { padding: 0 2%; width: 96%; @@ -189,36 +202,7 @@ } } -@media (max-width: 817px) { - - #header-ticker { - line-height: 26px; - } - - .left-top-header { - float: none; - } - - .left-header-block { - border-right: medium none; - color: #6d6c6c; - display: block; - float: none; - margin: 10px auto; - padding: 0; - text-align: center; - font-size: 12px; - } - - .right-top-header { - clear: both; - display: table; - float: none; - margin: 0 auto; - } -} - -@media (max-width: 768px) { +@media (max-width: 936px) { #masthead .widget_shopping_cart { display: none; } @@ -340,6 +324,38 @@ .sub-menu .sub-toggle { right: 0; } +} + +@media (max-width: 817px) { + + #header-ticker { + line-height: 26px; + } + + .left-top-header { + float: none; + } + + .left-header-block { + border-right: medium none; + color: #6d6c6c; + display: block; + float: none; + margin: 10px auto; + padding: 0; + text-align: center; + font-size: 12px; + } + + .right-top-header { + clear: both; + display: table; + float: none; + margin: 0 auto; + } +} + +@media (max-width: 768px) { .tg-container { width: 96%; From 4dd06eae5fe4e8eef450ae65815b1c0721cb289e Mon Sep 17 00:00:00 2001 From: ThemeGrill Date: Fri, 24 Apr 2020 14:04:28 +0545 Subject: [PATCH 10/10] Add changelog fixes #72 --- readme.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.txt b/readme.txt index f86873a..6153ade 100644 --- a/readme.txt +++ b/readme.txt @@ -98,6 +98,7 @@ If you want the theme to be translated into your language, feel free to contribu * Tweak - Remove right vertical line beside currency in top header bar. * Enhancement - Restructure navigation menu on mobile view. * Enhancement - Header top bar responsive design. +* Enhancement - Navigation menu in mobile landscape orientation and responsive design = Version 1.4.7 - 2020-04-18 = * Enhancement - Removed angle down fav icon from login link.