From 8628da7e9a368de5e7299de73c1a3cd5fe052cff Mon Sep 17 00:00:00 2001 From: Evgeniy Musikhin Date: Fri, 13 Mar 2026 15:54:34 +0500 Subject: [PATCH 1/5] removed tw icon --- _includes/footer.html | 3 --- _includes/icons/soc-tw.svg | 1 - 2 files changed, 4 deletions(-) delete mode 100644 _includes/icons/soc-tw.svg diff --git a/_includes/footer.html b/_includes/footer.html index 98e1a1bfd..a21540a83 100755 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -12,9 +12,6 @@
  • {% include /icons/soc-vk.svg %}
  • -
  • - {% include /icons/soc-tw.svg %} -
  • {% include /icons/soc-git.svg %}
  • diff --git a/_includes/icons/soc-tw.svg b/_includes/icons/soc-tw.svg deleted file mode 100644 index 9eaeebd68..000000000 --- a/_includes/icons/soc-tw.svg +++ /dev/null @@ -1 +0,0 @@ -Twitter \ No newline at end of file From e7ae059bed988d0314aa7aa8a06bfc0099f7590e Mon Sep 17 00:00:00 2001 From: Evgeniy Musikhin Date: Fri, 13 Mar 2026 17:03:52 +0500 Subject: [PATCH 2/5] draft changes --- _layouts/default.html | 2 +- css/modern-business.css | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index bd374cae1..73e9f0021 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -130,6 +130,7 @@ + {% if site.google_analytics %} {% include google_analytics.html %} {% endif %} {{site.data.alerts.hr_shaded}} {% include footer.html %} @@ -145,6 +146,5 @@ }); -{% if site.google_analytics %} {% include google_analytics.html %} {% endif %} {{site.data.alerts.hr_shaded}} {% include footer.html %} diff --git a/css/modern-business.css b/css/modern-business.css index 57ca7c6f3..f81258e66 100755 --- a/css/modern-business.css +++ b/css/modern-business.css @@ -13,9 +13,9 @@ body { } html > body > .wrapper { - height: 100%; + height: 85%; position: relative; - overflow: auto; + overflow: auto; } body { @@ -78,6 +78,9 @@ header.carousel .fill { footer { margin: 50px 0; + position: fixed; + width: 100%; + text-align: center; } /* Responsive Styles */ From e0f009f63d7bd3527ab26bbf4aa31ec8d0b44748 Mon Sep 17 00:00:00 2001 From: Evgeniy Musikhin Date: Tue, 24 Mar 2026 11:07:15 +0500 Subject: [PATCH 3/5] fix --- _layouts/default.html | 2 +- css/modern-business.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index 73e9f0021..bd374cae1 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -130,7 +130,6 @@ - {% if site.google_analytics %} {% include google_analytics.html %} {% endif %} {{site.data.alerts.hr_shaded}} {% include footer.html %} @@ -146,5 +145,6 @@ }); +{% if site.google_analytics %} {% include google_analytics.html %} {% endif %} {{site.data.alerts.hr_shaded}} {% include footer.html %} diff --git a/css/modern-business.css b/css/modern-business.css index f81258e66..b679b5f10 100755 --- a/css/modern-business.css +++ b/css/modern-business.css @@ -15,7 +15,7 @@ body { html > body > .wrapper { height: 85%; position: relative; - overflow: auto; + overflow: auto; } body { From 7f880624601530696b5e3d6d16d6fcb9c78eae7b Mon Sep 17 00:00:00 2001 From: Evgeniy Musikhin Date: Tue, 24 Mar 2026 11:13:14 +0500 Subject: [PATCH 4/5] fix --- css/modern-business.css | 3 --- 1 file changed, 3 deletions(-) diff --git a/css/modern-business.css b/css/modern-business.css index b679b5f10..fb409ea67 100755 --- a/css/modern-business.css +++ b/css/modern-business.css @@ -78,9 +78,6 @@ header.carousel .fill { footer { margin: 50px 0; - position: fixed; - width: 100%; - text-align: center; } /* Responsive Styles */ From 8dd9d1a30d77a36110a74f91d65c8290d2f68179 Mon Sep 17 00:00:00 2001 From: Evgeniy Musikhin Date: Tue, 24 Mar 2026 11:41:13 +0500 Subject: [PATCH 5/5] removed fix height --- css/modern-business.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/css/modern-business.css b/css/modern-business.css index fb409ea67..0929e64b9 100755 --- a/css/modern-business.css +++ b/css/modern-business.css @@ -13,12 +13,15 @@ body { } html > body > .wrapper { - height: 85%; + flex: 1 1 auto; + min-height: 0; position: relative; overflow: auto; } body { + display: flex; + flex-direction: column; padding-top: 50px; /* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */ }