From 71d63b67f2537af6cdfd16c96f6ce9838d1049dd Mon Sep 17 00:00:00 2001 From: Matt Batchelder Date: Sun, 22 Feb 2026 11:54:55 -0500 Subject: [PATCH] feat: Enhance footer branding with company logo and name display --- theme/assets/css/main.css | 17 +++++++++++++++++ theme/blocks/index.php | 13 ++++++++----- 2 files changed, 25 insertions(+), 5 deletions(-) diff --git a/theme/assets/css/main.css b/theme/assets/css/main.css index d87a104..4ca9091 100644 --- a/theme/assets/css/main.css +++ b/theme/assets/css/main.css @@ -3416,6 +3416,22 @@ p:last-child { margin-bottom: 0; } .footer-inner { grid-template-columns: 1fr; } } +.logo-with-company { + display: flex; + align-items: center; + gap: 1rem; + margin-bottom: 1rem; +} +.logo-with-company img { + height: auto; + max-width: 60px; +} +.company-name { + font-size: 1.2rem; + font-weight: 600; + color: #fff; + line-height: 1.2; +} .footer-brand .logo-text { font-size: 1.5rem; color: #fff; } .footer-tagline { font-size: .9rem; color: rgba(255,255,255,.5); margin-top: .75rem; margin-bottom: .5rem; } .footer-location { font-size: .8rem; color: rgba(255,255,255,.4); } @@ -3712,6 +3728,7 @@ p:last-child { margin-bottom: 0; } } [data-theme="dark"] .site-footer { background: #0D0D0D; } +[data-theme="dark"] .company-name { color: #fff; } [data-theme="dark"] .site-nav.open { background: #111111; } diff --git a/theme/blocks/index.php b/theme/blocks/index.php index cf382cb..3f610f1 100644 --- a/theme/blocks/index.php +++ b/theme/blocks/index.php @@ -723,11 +723,14 @@ function oribi_render_site_footer() {