Increase hero logo size and make background transparent

- Doubled logo max-width from 200px to 400px
- Created logo-transparent.webp with transparent background
- Used flood fill to preserve internal black elements

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Hanson.xyz Dev
2025-11-30 20:06:44 -06:00
parent 38dd0c4866
commit ff25ffcceb
4 changed files with 3 additions and 3 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -60,7 +60,7 @@ $featured_commercial = new WP_Query(array(
<?php
// Hero Section with Location Search
get_template_part('template-parts/components/hero-section', null, array(
'logo' => get_template_directory_uri() . '/assets/images/logo.webp',
'logo' => get_template_directory_uri() . '/assets/images/logo-transparent.webp',
'title' => 'Find Your Dream Home Today',
'subtitle' => 'Expert real estate services for buyers and sellers in Albert Lea and the surrounding Minnesota communities.',
'show_location_search' => true,
@@ -68,7 +68,7 @@
.hero-section-logo {
display: block;
max-width: 200px;
max-width: 400px;
height: auto;
margin: 0 auto 2rem;
}