feat: Enhance footer layout with logo section and company name display
This commit is contained in:
@@ -3417,6 +3417,14 @@ p:last-child { margin-bottom: 0; }
|
|||||||
}
|
}
|
||||||
|
|
||||||
.footer-brand .logo-text { font-size: 1.5rem; color: #fff; }
|
.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-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 { font-size: .8rem; color: rgba(255,255,255,.8); }
|
||||||
.footer-location a { color: var(--color-primary); font-weight: 600; }
|
.footer-location a { color: var(--color-primary); font-weight: 600; }
|
||||||
|
|||||||
@@ -723,11 +723,16 @@ function oribi_render_site_footer() {
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="footer-inner">
|
<div class="footer-inner">
|
||||||
<div class="footer-brand">
|
<div class="footer-brand">
|
||||||
<?php if ( has_custom_logo() ) : ?>
|
<div class="footer-logo-section">
|
||||||
<?php the_custom_logo(); ?>
|
<?php if ( has_custom_logo() ) : ?>
|
||||||
<?php else : ?>
|
<?php the_custom_logo(); ?>
|
||||||
<div class="logo-text"><strong>Oribi</strong> Tech</div>
|
<?php else : ?>
|
||||||
<?php endif; ?>
|
<div class="logo-text"><strong>Oribi</strong> Tech</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
<div class="footer-company-name">
|
||||||
|
<div class="company-brand"><strong>Oribi</strong> Tech</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<p class="footer-tagline">Digital signage solutions that communicate, engage, and grow your business.</p>
|
<p class="footer-tagline">Digital signage solutions that communicate, engage, and grow your business.</p>
|
||||||
<p class="footer-location">An <a href="https://oribi-tech.com">Oribi Technology Services</a> Company</p>
|
<p class="footer-location">An <a href="https://oribi-tech.com">Oribi Technology Services</a> Company</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user