From 2bf9e941129bef1b252fac86b65b8809c24e87cf Mon Sep 17 00:00:00 2001 From: Matt Batchelder Date: Sun, 22 Feb 2026 12:20:30 -0500 Subject: [PATCH] feat: Enhance footer layout with logo section and company name display --- theme/assets/css/main.css | 8 ++++++++ theme/blocks/index.php | 15 ++++++++++----- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/theme/assets/css/main.css b/theme/assets/css/main.css index d6611b5..9d62e09 100644 --- a/theme/assets/css/main.css +++ b/theme/assets/css/main.css @@ -3417,6 +3417,14 @@ p:last-child { margin-bottom: 0; } } .footer-brand .logo-text { font-size: 1.5rem; color: #fff; } +.footer-logo-section { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; } +.footer-logo-section .custom-logo-link img, +.footer-logo-section .custom-logo { + max-height: 60px !important; + width: auto !important; +} +.footer-company-name { display: flex; align-items: center; } +.footer-company-name .company-brand { font-size: 1.5rem; color: #fff; white-space: nowrap; } .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,.8); } .footer-location a { color: var(--color-primary); font-weight: 600; } diff --git a/theme/blocks/index.php b/theme/blocks/index.php index 650c6e8..b015298 100644 --- a/theme/blocks/index.php +++ b/theme/blocks/index.php @@ -723,11 +723,16 @@ function oribi_render_site_footer() {