feat: Enhance footer branding with company logo and name display
This commit is contained in:
@@ -3416,6 +3416,22 @@ p:last-child { margin-bottom: 0; }
|
|||||||
.footer-inner { grid-template-columns: 1fr; }
|
.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-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-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); }
|
.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"] .site-footer { background: #0D0D0D; }
|
||||||
|
[data-theme="dark"] .company-name { color: #fff; }
|
||||||
|
|
||||||
[data-theme="dark"] .site-nav.open { background: #111111; }
|
[data-theme="dark"] .site-nav.open { background: #111111; }
|
||||||
|
|
||||||
|
|||||||
@@ -723,11 +723,14 @@ 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="logo-with-company">
|
||||||
<?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="company-name">Oribi Technology Services</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 Oribi Technology Services Company</p>
|
<p class="footer-location">An Oribi Technology Services Company</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user