From fb54211f34dc4a35514c8c6b1cf71f91d949e25b Mon Sep 17 00:00:00 2001 From: Adolfo Reyna Date: Fri, 13 Mar 2026 00:30:07 -0400 Subject: [PATCH] Fix newsletter styling on the front page and update secondary button --- front-page.php | 22 ++++++++++------------ style.css | 17 ++++++++++++++++- 2 files changed, 26 insertions(+), 13 deletions(-) diff --git a/front-page.php b/front-page.php index cfdf29c..e2b48ed 100644 --- a/front-page.php +++ b/front-page.php @@ -84,18 +84,16 @@ $hero_bg = get_theme_mod('hero_background_image', get_template_directory_uri() . -
-
-

Receive weekly insights directly in your inbox.

-
-
- -
diff --git a/style.css b/style.css index 48a10df..9c463a7 100644 --- a/style.css +++ b/style.css @@ -75,10 +75,25 @@ h6, color: #fff; } -.btn-secondary, +.btn-secondary { + background-color: var(--brand-gold-leaf); + border-color: var(--brand-gold-leaf); + color: #fff; +} + +.btn-secondary:hover, +.btn-secondary:focus, +.btn-secondary:active { + background-color: #a88849; + /* Darker Gold Leaf */ + border-color: #a88849; + color: #fff; +} + .btn-outline-secondary { color: var(--brand-gold-leaf); border-color: var(--brand-gold-leaf); + background-color: transparent; } .btn-outline-secondary:hover {