fix(header): adjust hero section display logic for non-front pages
Deploy to Dreamhost (dev) / build (push) Successful in 35s
Sync TODOs with Issues / sync_todos (push) Successful in 6s

fix(nav-aux): update padding for auxiliary navigation container
This commit is contained in:
Keith Solomon
2026-07-05 12:15:26 -05:00
parent 19d4dfd89c
commit 36cf891659
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ $showHero = isServicesDescendant() && get_field( 'hero_style' ) === 'default';
<?php
if ( $showHero ) :
get_template_part( 'views/partials/page-hero-services' );
else :
elseif ( ! is_front_page() ) :
get_template_part( 'views/partials/page-hero' );
endif;
?>
+1 -1
View File
@@ -22,7 +22,7 @@ $currentPageURL = home_url( $wp->request ) . '/';
$profile = getFieldValue( 'social_media.profile_name' ) ? getFieldValue( 'social_media.profile_name' ) : ''
?>
<div class="nav-aux__container hidden lg:block w-full py-0">
<div class="nav-aux__container hidden lg:block w-full py-1">
<div class="header__nav-aux container flex items-center justify-end gap-x-4 gap-y-0 flex-wrap text-white py-0">
<nav class="nav-aux py-0" role="navigation" aria-label="Auxiliary navigation">
<?php