This commit is contained in:
AlxMedia 2022-08-25 12:54:51 +02:00
parent 69fd8e7d88
commit 90ba422101
3 changed files with 26 additions and 25 deletions

View file

@ -46,6 +46,20 @@
<div class="container group"> <div class="container group">
<div class="group pad"> <div class="group pad">
<?php echo featureon_site_title(); ?>
<?php if ( display_header_text() == true ): ?>
<p class="site-description"><?php bloginfo( 'description' ); ?></p>
<?php endif; ?>
</div><!--/.pad-->
<?php if ( get_header_image() ) : ?>
<div class="site-header">
<a href="<?php echo esc_url( home_url('/') ); ?>" rel="home">
<img class="site-image" src="<?php header_image(); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
</a>
</div>
<?php endif; ?>
<?php if ( get_theme_mod( 'header-social', 'on' ) == 'on' ): ?> <?php if ( get_theme_mod( 'header-social', 'on' ) == 'on' ): ?>
<?php featureon_social_links() ; ?> <?php featureon_social_links() ; ?>
<?php endif; ?> <?php endif; ?>
@ -62,24 +76,6 @@
</div> </div>
</div> </div>
<?php endif; ?> <?php endif; ?>
</div><!--/.pad-->
</div><!--/.container-->
<div class="container group">
<div class="group pad">
<?php echo featureon_site_title(); ?>
<?php if ( display_header_text() == true ): ?>
<p class="site-description"><?php bloginfo( 'description' ); ?></p>
<?php endif; ?>
</div><!--/.pad-->
<?php if ( get_header_image() ) : ?>
<div class="site-header">
<a href="<?php echo esc_url( home_url('/') ); ?>" rel="home">
<img class="site-image" src="<?php header_image(); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
</a>
</div>
<?php endif; ?>
</div><!--/.container--> </div><!--/.container-->

View file

@ -89,6 +89,10 @@ Subheader images
== Changelog == == Changelog ==
= 2.5.1 - 2022-08-25 =
* Fixed underline links
* Fixed header focus priority
= 2.5.0 - 2022-08-25 = = 2.5.0 - 2022-08-25 =
* Changed theme from premium to free * Changed theme from premium to free

View file

@ -1,7 +1,7 @@
/* /*
Theme Name: Featureon Theme Name: Featureon
Theme URI: http://alx.media/themes/featureon/ Theme URI: http://alx.media/themes/featureon/
Version: 2.5.0 Version: 2.5.1
Requires at least: 5.0 Requires at least: 5.0
Requires PHP: 5.6 Requires PHP: 5.6
Tested up to: 6.0 Tested up to: 6.0
@ -234,6 +234,7 @@ input, textarea, button, select, label { font-family: inherit; }
/* ------------------------------------ */ /* ------------------------------------ */
.entry { font-size: 17px; line-height: 1.6em; } .entry { font-size: 17px; line-height: 1.6em; }
.entry.excerpt { font-size: 16px; color: #777; } .entry.excerpt { font-size: 16px; color: #777; }
.entry a { text-decoration: underline; }
.entry p, .entry p,
.entry dd { margin-bottom: 1em; } .entry dd { margin-bottom: 1em; }
.entry dt { color: #333; } .entry dt { color: #333; }
@ -593,9 +594,9 @@ box-shadow: 0 1px 0 rgba(255,255,255,0.1); }
.toggle-search .svg-icon { fill: #333; margin: 0 auto; } .toggle-search .svg-icon { fill: #333; margin: 0 auto; }
.toggle-search #svg-close { display: none; } .toggle-search #svg-close { display: none; }
.toggle-search.active #svg-search { display: none; } .toggle-search.active #svg-search { display: none; }
.toggle-search.active #svg-close { display: block; fill: rgba(0,0,0,0.4); } .toggle-search.active #svg-close { display: block; fill: rgba(0,0,0,0.6); }
.toggle-search:focus #svg-search, .toggle-search:focus #svg-search,
.toggle-search:focus #svg-close { fill: rgba(0,0,0,0.6); } .toggle-search:focus #svg-close { fill: rgba(0,0,0,0.4); }
/* ------------------------------------------------------------------------- * /* ------------------------------------------------------------------------- *